@datatr-ux/ovhcloud-types 1.0.31 → 1.0.32
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/cloud/project/ai/app/AutomaticScalingStrategyCustomMetrics.d.ts +13 -0
- package/dist/cloud/project/ai/app/AutomaticScalingStrategyCustomMetrics.d.ts.map +1 -0
- package/dist/cloud/project/ai/app/AutomaticScalingStrategyCustomMetrics.js +1 -0
- package/dist/cloud/project/ai/app/AutomaticScalingStrategyCustomMetricsInput.d.ts +13 -0
- package/dist/cloud/project/ai/app/AutomaticScalingStrategyCustomMetricsInput.d.ts.map +1 -0
- package/dist/cloud/project/ai/app/AutomaticScalingStrategyCustomMetricsInput.js +1 -0
- package/dist/cloud/project/ai/app/CustomMetricsFormatEnum.d.ts +8 -0
- package/dist/cloud/project/ai/app/CustomMetricsFormatEnum.d.ts.map +1 -0
- package/dist/cloud/project/ai/app/CustomMetricsFormatEnum.js +8 -0
- package/dist/cloud/project/ai/app/ScalingAutomaticStrategy.d.ts +3 -0
- package/dist/cloud/project/ai/app/ScalingAutomaticStrategy.d.ts.map +1 -1
- package/dist/cloud/project/ai/app/ScalingAutomaticStrategyInput.d.ts +3 -0
- package/dist/cloud/project/ai/app/ScalingAutomaticStrategyInput.d.ts.map +1 -1
- package/dist/cloud/project/ai/app/ScalingStrategy.d.ts +1 -1
- package/dist/cloud/project/ai/app/ScalingStrategy.d.ts.map +1 -1
- package/dist/cloud/project/ai/app/ScalingStrategyInput.d.ts +1 -1
- package/dist/cloud/project/ai/app/ScalingStrategyInput.d.ts.map +1 -1
- package/dist/cloud/project/ai/app/index.d.ts +3 -0
- package/dist/cloud/project/ai/app/index.d.ts.map +1 -1
- package/dist/cloud/project/ai/app/index.js +3 -0
- package/dist/complexType/UnitAndValueString.d.ts +1 -1
- package/dist/complexType/UnitAndValueString.d.ts.map +1 -1
- package/dist/dedicatedCloud/disasterRecovery/LocalSiteDetails.d.ts +3 -0
- package/dist/dedicatedCloud/disasterRecovery/LocalSiteDetails.d.ts.map +1 -1
- package/dist/dedicatedCloud/disasterRecovery/Profile.d.ts +3 -1
- package/dist/dedicatedCloud/disasterRecovery/Profile.d.ts.map +1 -1
- package/dist/dedicatedCloud/disasterRecovery/RemoteSiteDetails.d.ts +3 -0
- package/dist/dedicatedCloud/disasterRecovery/RemoteSiteDetails.d.ts.map +1 -1
- package/dist/dedicatedCloud/disasterRecovery/ZertoRemoteVra.d.ts +3 -0
- package/dist/dedicatedCloud/disasterRecovery/ZertoRemoteVra.d.ts.map +1 -1
- package/dist/domain/zone/RecordTypeEnum.d.ts +1 -0
- package/dist/domain/zone/RecordTypeEnum.d.ts.map +1 -1
- package/dist/domain/zone/RecordTypeEnum.js +1 -0
- package/dist/ovhcloud-types.js +4364 -4363
- package/dist/vps/order/rule/Datacenter.d.ts +2 -0
- package/dist/vps/order/rule/Datacenter.d.ts.map +1 -1
- package/dist/vps/order/rule/DatacenterStatusEnum.d.ts +2 -1
- package/dist/vps/order/rule/DatacenterStatusEnum.d.ts.map +1 -1
- package/dist/vps/order/rule/DatacenterStatusEnum.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CustomMetricsFormatEnum } from './CustomMetricsFormatEnum';
|
|
2
|
+
/** Scale an AI Deploy App based on a custom metric provided by a customer-exposed API */
|
|
3
|
+
export interface AutomaticScalingStrategyCustomMetrics {
|
|
4
|
+
/** Full URL of the API operation to call to get the metric value. Specific <SELF> placeholder can be given whenever metrics API is served by the deployed app itself. e.g : "http://<SELF>:6000/metrics" */
|
|
5
|
+
apiUrl: string;
|
|
6
|
+
/** format of the custom metric used to scaled an AI Deploy App */
|
|
7
|
+
format: CustomMetricsFormatEnum;
|
|
8
|
+
/** Target value to scale on */
|
|
9
|
+
targetValue: number;
|
|
10
|
+
/** The location of the metric value in the response payload. The value is format specific, see https://keda.sh/docs/2.16/scalers/metrics-api/#trigger-specification for details */
|
|
11
|
+
valueLocation: string;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AutomaticScalingStrategyCustomMetrics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutomaticScalingStrategyCustomMetrics.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/AutomaticScalingStrategyCustomMetrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,sDAAsD,CAAC;AAE/F,yFAAyF;AACzF,MAAM,WAAW,qCAAqC;IACpD,4MAA4M;IAC5M,MAAM,EAAE,MAAM,CAAC;IACf,kEAAkE;IAClE,MAAM,EAAE,uBAAuB,CAAC;IAChC,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,mLAAmL;IACnL,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CustomMetricsFormatEnum } from './CustomMetricsFormatEnum';
|
|
2
|
+
/** Scale an AI Deploy App based on a custom metric provided by a customer-exposed API */
|
|
3
|
+
export interface AutomaticScalingStrategyCustomMetricsInput {
|
|
4
|
+
/** Full URL of the API operation to call to get the metric value. Specific <SELF> placeholder can be given whenever metrics API is served by the deployed app itself. e.g : "http://<SELF>:6000/metrics" */
|
|
5
|
+
apiUrl: string;
|
|
6
|
+
/** format of the custom metric used to scaled an AI Deploy App */
|
|
7
|
+
format: CustomMetricsFormatEnum;
|
|
8
|
+
/** Target value to scale on */
|
|
9
|
+
targetValue: number;
|
|
10
|
+
/** The location of the metric value in the response payload. The value is format specific, see https://keda.sh/docs/2.16/scalers/metrics-api/#trigger-specification for details */
|
|
11
|
+
valueLocation: string;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AutomaticScalingStrategyCustomMetricsInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutomaticScalingStrategyCustomMetricsInput.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/AutomaticScalingStrategyCustomMetricsInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,sDAAsD,CAAC;AAE/F,yFAAyF;AACzF,MAAM,WAAW,0CAA0C;IACzD,4MAA4M;IAC5M,MAAM,EAAE,MAAM,CAAC;IACf,kEAAkE;IAClE,MAAM,EAAE,uBAAuB,CAAC;IAChC,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,mLAAmL;IACnL,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomMetricsFormatEnum.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/CustomMetricsFormatEnum.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,oBAAY,uBAAuB;IACjC,MAAM,SAAS;IACf,YAAY,eAAe;IAC3B,KAAK,QAAQ;IACb,MAAM,SAAS;CAChB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** format of the custom metric used to scaled an AI Deploy App */
|
|
2
|
+
export var CustomMetricsFormatEnum;
|
|
3
|
+
(function (CustomMetricsFormatEnum) {
|
|
4
|
+
CustomMetricsFormatEnum["json"] = "json";
|
|
5
|
+
CustomMetricsFormatEnum["prometheus"] = "prometheus";
|
|
6
|
+
CustomMetricsFormatEnum["xml"] = "xml";
|
|
7
|
+
CustomMetricsFormatEnum["yaml"] = "yaml";
|
|
8
|
+
})(CustomMetricsFormatEnum || (CustomMetricsFormatEnum = {}));
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { AutomaticScalingStrategyCustomMetrics } from './AutomaticScalingStrategyCustomMetrics';
|
|
1
2
|
import { ScalingAutomaticStrategyResourceTypeEnum } from './ScalingAutomaticStrategyResourceTypeEnum';
|
|
2
3
|
/** AI Solutions App automatic scaling strategy object */
|
|
3
4
|
export interface ScalingAutomaticStrategy {
|
|
4
5
|
/** The average resource usage threshold that the app upscale or downscale will be triggered from, in percent */
|
|
5
6
|
averageUsageTarget: number;
|
|
7
|
+
/** parameters to scale the AI Deploy App based on a custom metric provided by a customer-exposed API */
|
|
8
|
+
customMetrics?: AutomaticScalingStrategyCustomMetrics;
|
|
6
9
|
/** Maximum number of replicas */
|
|
7
10
|
replicasMax: number;
|
|
8
11
|
/** Minimum number of replicas */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalingAutomaticStrategy.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingAutomaticStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wCAAwC,EAAE,MAAM,uEAAuE,CAAC;AAEjI,yDAAyD;AACzD,MAAM,WAAW,wBAAwB;IACvC,gHAAgH;IAChH,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,4DAA4D;IAC5D,YAAY,EAAE,wCAAwC,CAAC;CACxD"}
|
|
1
|
+
{"version":3,"file":"ScalingAutomaticStrategy.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingAutomaticStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qCAAqC,EAAE,MAAM,oEAAoE,CAAC;AAC3H,OAAO,EAAE,wCAAwC,EAAE,MAAM,uEAAuE,CAAC;AAEjI,yDAAyD;AACzD,MAAM,WAAW,wBAAwB;IACvC,gHAAgH;IAChH,kBAAkB,EAAE,MAAM,CAAC;IAC3B,wGAAwG;IACxG,aAAa,CAAC,EAAE,qCAAqC,CAAC;IACtD,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,4DAA4D;IAC5D,YAAY,EAAE,wCAAwC,CAAC;CACxD"}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { AutomaticScalingStrategyCustomMetricsInput } from './AutomaticScalingStrategyCustomMetricsInput';
|
|
1
2
|
import { ScalingAutomaticStrategyResourceTypeEnum } from './ScalingAutomaticStrategyResourceTypeEnum';
|
|
2
3
|
/** AI Solutions App automatic scaling strategy object */
|
|
3
4
|
export interface ScalingAutomaticStrategyInput {
|
|
4
5
|
/** The average resource usage threshold that the app upscale or downscale will be triggered from, in percent */
|
|
5
6
|
averageUsageTarget: number;
|
|
7
|
+
/** parameters to scale the AI Deploy App based on a custom metric provided by a customer-exposed API */
|
|
8
|
+
customMetrics?: AutomaticScalingStrategyCustomMetricsInput;
|
|
6
9
|
/** Maximum number of replicas */
|
|
7
10
|
replicasMax: number;
|
|
8
11
|
/** Minimum number of replicas */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalingAutomaticStrategyInput.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingAutomaticStrategyInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wCAAwC,EAAE,MAAM,uEAAuE,CAAC;AAEjI,yDAAyD;AACzD,MAAM,WAAW,6BAA6B;IAC5C,gHAAgH;IAChH,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,4DAA4D;IAC5D,YAAY,EAAE,wCAAwC,CAAC;CACxD"}
|
|
1
|
+
{"version":3,"file":"ScalingAutomaticStrategyInput.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingAutomaticStrategyInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0CAA0C,EAAE,MAAM,yEAAyE,CAAC;AACrI,OAAO,EAAE,wCAAwC,EAAE,MAAM,uEAAuE,CAAC;AAEjI,yDAAyD;AACzD,MAAM,WAAW,6BAA6B;IAC5C,gHAAgH;IAChH,kBAAkB,EAAE,MAAM,CAAC;IAC3B,wGAAwG;IACxG,aAAa,CAAC,EAAE,0CAA0C,CAAC;IAC3D,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,4DAA4D;IAC5D,YAAY,EAAE,wCAAwC,CAAC;CACxD"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ScalingAutomaticStrategy } from './ScalingAutomaticStrategy';
|
|
2
2
|
import { ScalingFixedStrategy } from './ScalingFixedStrategy';
|
|
3
|
-
/** AI Solutions App
|
|
3
|
+
/** AI Solutions App Scaling Strategy Object */
|
|
4
4
|
export interface ScalingStrategy {
|
|
5
5
|
/** Strategy setting a variable number of replicas, based on an average resource usage threshold */
|
|
6
6
|
automatic?: ScalingAutomaticStrategy;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalingStrategy.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,uDAAuD,CAAC;AACjG,OAAO,EAAE,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AAEzF
|
|
1
|
+
{"version":3,"file":"ScalingStrategy.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,uDAAuD,CAAC;AACjG,OAAO,EAAE,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AAEzF,+CAA+C;AAC/C,MAAM,WAAW,eAAe;IAC9B,mGAAmG;IACnG,SAAS,CAAC,EAAE,wBAAwB,CAAC;IACrC,gDAAgD;IAChD,KAAK,CAAC,EAAE,oBAAoB,CAAC;CAC9B"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ScalingAutomaticStrategyInput } from './ScalingAutomaticStrategyInput';
|
|
2
2
|
import { ScalingFixedStrategyInput } from './ScalingFixedStrategyInput';
|
|
3
|
-
/** AI Solutions App
|
|
3
|
+
/** AI Solutions App Scaling Strategy Object */
|
|
4
4
|
export interface ScalingStrategyInput {
|
|
5
5
|
/** Strategy setting a variable number of replicas, based on an average resource usage threshold (conflicts with 'fixed' property when both are not null) */
|
|
6
6
|
automatic?: ScalingAutomaticStrategyInput;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalingStrategyInput.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingStrategyInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,4DAA4D,CAAC;AAC3G,OAAO,EAAE,yBAAyB,EAAE,MAAM,wDAAwD,CAAC;AAEnG
|
|
1
|
+
{"version":3,"file":"ScalingStrategyInput.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/ScalingStrategyInput.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,4DAA4D,CAAC;AAC3G,OAAO,EAAE,yBAAyB,EAAE,MAAM,wDAAwD,CAAC;AAEnG,+CAA+C;AAC/C,MAAM,WAAW,oBAAoB;IACnC,4JAA4J;IAC5J,SAAS,CAAC,EAAE,6BAA6B,CAAC;IAC1C,6GAA6G;IAC7G,KAAK,CAAC,EAAE,yBAAyB,CAAC;CACnC"}
|
|
@@ -5,6 +5,9 @@ export * from './AppSpecInput';
|
|
|
5
5
|
export * from './AppStateEnum';
|
|
6
6
|
export * from './AppStateHistory';
|
|
7
7
|
export * from './AppStatus';
|
|
8
|
+
export * from './AutomaticScalingStrategyCustomMetrics';
|
|
9
|
+
export * from './AutomaticScalingStrategyCustomMetricsInput';
|
|
10
|
+
export * from './CustomMetricsFormatEnum';
|
|
8
11
|
export * from './DeploymentStrategy';
|
|
9
12
|
export * from './Probe';
|
|
10
13
|
export * from './ProbeInput';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/index.ts"],"names":[],"mappings":"AACA,cAAc,OAAO,CAAC;AACtB,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../generated/types/cloud/project/ai/app/index.ts"],"names":[],"mappings":"AACA,cAAc,OAAO,CAAC;AACtB,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,yCAAyC,CAAC;AACxD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC"}
|
|
@@ -5,6 +5,9 @@ export * from './AppSpecInput.js';
|
|
|
5
5
|
export * from './AppStateEnum.js';
|
|
6
6
|
export * from './AppStateHistory.js';
|
|
7
7
|
export * from './AppStatus.js';
|
|
8
|
+
export * from './AutomaticScalingStrategyCustomMetrics.js';
|
|
9
|
+
export * from './AutomaticScalingStrategyCustomMetricsInput.js';
|
|
10
|
+
export * from './CustomMetricsFormatEnum.js';
|
|
8
11
|
export * from './DeploymentStrategy.js';
|
|
9
12
|
export * from './Probe.js';
|
|
10
13
|
export * from './ProbeInput.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnitAndValueString.d.ts","sourceRoot":"","sources":["../../generated/types/complexType/UnitAndValueString.ts"],"names":[],"mappings":"AAAA,2CAA2C;AAC3C,MAAM,WAAW,kBAAkB;IACjC,
|
|
1
|
+
{"version":3,"file":"UnitAndValueString.d.ts","sourceRoot":"","sources":["../../generated/types/complexType/UnitAndValueString.ts"],"names":[],"mappings":"AAAA,2CAA2C;AAC3C,MAAM,WAAW,kBAAkB;IACjC,OAAO;IACP,IAAI,EAAE,MAAM,CAAC;IACb,OAAO;IACP,KAAK,EAAE,MAAM,CAAC;CACf"}
|
|
@@ -2,6 +2,7 @@ import { SiteRoleEnum } from './SiteRoleEnum';
|
|
|
2
2
|
import { SiteTypeEnum } from './SiteTypeEnum';
|
|
3
3
|
import { StateEnum } from '../StateEnum';
|
|
4
4
|
import { Ip } from '../../Ip';
|
|
5
|
+
import { Ipv4Block } from '../../Ipv4Block';
|
|
5
6
|
/** Information on the local datacenter */
|
|
6
7
|
export interface LocalSiteDetails {
|
|
7
8
|
/** Local tunnel endpoint public Ip */
|
|
@@ -12,6 +13,8 @@ export interface LocalSiteDetails {
|
|
|
12
13
|
state?: StateEnum;
|
|
13
14
|
/** Type of hosting for the local datacenter */
|
|
14
15
|
type: SiteTypeEnum;
|
|
16
|
+
/** Internal zerto subnet of this infrastructure (ip/cidr) */
|
|
17
|
+
vraNetwork?: Ipv4Block;
|
|
15
18
|
/** Installed version of Zerto */
|
|
16
19
|
zertoVersion: string;
|
|
17
20
|
/** Local Network Ip of the Zerto virtual manager */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LocalSiteDetails.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/LocalSiteDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,EAAE,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"LocalSiteDetails.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/LocalSiteDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,EAAE,EAAE,MAAM,YAAY,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,0CAA0C;AAC1C,MAAM,WAAW,gBAAgB;IAC/B,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,EAAE,CAAC;IACtB,0BAA0B;IAC1B,IAAI,EAAE,YAAY,CAAC;IACnB,6BAA6B;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,+CAA+C;IAC/C,IAAI,EAAE,YAAY,CAAC;IACnB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,iCAAiC;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,oDAAoD;IACpD,KAAK,CAAC,EAAE,EAAE,CAAC;CACZ"}
|
|
@@ -8,8 +8,10 @@ export interface Profile {
|
|
|
8
8
|
drpType?: DrpTypeEnum;
|
|
9
9
|
/** Information about the site installed on this Dedicated Cloud */
|
|
10
10
|
localSiteInformation?: LocalSiteDetails;
|
|
11
|
-
/** Information about the remote paired site */
|
|
11
|
+
/** @deprecated Deprecated - Information about the first remote paired site */
|
|
12
12
|
remoteSiteInformation?: RemoteSiteDetails;
|
|
13
|
+
/** Information about the remote paired sites */
|
|
14
|
+
remoteSitesInformation?: RemoteSiteDetails[];
|
|
13
15
|
/** State of the disaster recovery service */
|
|
14
16
|
state: StateEnum;
|
|
15
17
|
/** Technical solution used */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Profile.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/Profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,qDAAqD,CAAC;AAClF,OAAO,EAAE,gBAAgB,EAAE,MAAM,0DAA0D,CAAC;AAC5F,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAE7D,4CAA4C;AAC5C,MAAM,WAAW,OAAO;IACtB,kCAAkC;IAClC,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,mEAAmE;IACnE,oBAAoB,CAAC,EAAE,gBAAgB,CAAC;IACxC
|
|
1
|
+
{"version":3,"file":"Profile.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/Profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,qDAAqD,CAAC;AAClF,OAAO,EAAE,gBAAgB,EAAE,MAAM,0DAA0D,CAAC;AAC5F,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAE7D,4CAA4C;AAC5C,MAAM,WAAW,OAAO;IACtB,kCAAkC;IAClC,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,mEAAmE;IACnE,oBAAoB,CAAC,EAAE,gBAAgB,CAAC;IACxC,8EAA8E;IAC9E,qBAAqB,CAAC,EAAE,iBAAiB,CAAC;IAC1C,gDAAgD;IAChD,sBAAsB,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC7C,6CAA6C;IAC7C,KAAK,EAAE,SAAS,CAAC;IACjB,8BAA8B;IAC9B,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -3,6 +3,7 @@ import { SiteTypeEnum } from './SiteTypeEnum';
|
|
|
3
3
|
import { VpnConfigStateEnum } from './VpnConfigStateEnum';
|
|
4
4
|
import { StateEnum } from '../StateEnum';
|
|
5
5
|
import { Ipv4 } from '../../Ipv4';
|
|
6
|
+
import { Ipv4Block } from '../../Ipv4Block';
|
|
6
7
|
/** Information on the remote datacenter linked to the local one */
|
|
7
8
|
export interface RemoteSiteDetails {
|
|
8
9
|
/** Datacenter Id (if hosted by OVH) */
|
|
@@ -27,6 +28,8 @@ export interface RemoteSiteDetails {
|
|
|
27
28
|
type: SiteTypeEnum;
|
|
28
29
|
/** VPN configuration state (if type is onPremise) */
|
|
29
30
|
vpnConfigState?: VpnConfigStateEnum;
|
|
31
|
+
/** Internal zerto subnet of your infrastructure (ip/cidr) */
|
|
32
|
+
vraNetwork?: Ipv4Block;
|
|
30
33
|
/** Installed version of Zerto */
|
|
31
34
|
zertoVersion?: string;
|
|
32
35
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RemoteSiteDetails.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/RemoteSiteDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,kBAAkB,EAAE,MAAM,4DAA4D,CAAC;AAChG,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"RemoteSiteDetails.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/RemoteSiteDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,sDAAsD,CAAC;AACpF,OAAO,EAAE,kBAAkB,EAAE,MAAM,4DAA4D,CAAC;AAChG,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,mEAAmE;AACnE,MAAM,WAAW,iBAAiB;IAChC,uCAAuC;IACvC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yCAAyC;IACzC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,yDAAyD;IACzD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,0DAA0D;IAC1D,wBAAwB,CAAC,EAAE,IAAI,CAAC;IAChC,wDAAwD;IACxD,sBAAsB,CAAC,EAAE,IAAI,CAAC;IAC9B,2CAA2C;IAC3C,mBAAmB,CAAC,EAAE,IAAI,CAAC;IAC3B,0BAA0B;IAC1B,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,sCAAsC;IACtC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,8BAA8B;IAC9B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,gDAAgD;IAChD,IAAI,EAAE,YAAY,CAAC;IACnB,qDAAqD;IACrD,cAAc,CAAC,EAAE,kBAAkB,CAAC;IACpC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,iCAAiC;IACjC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { StateEnum } from '../optionAccessNetwork/StateEnum';
|
|
1
2
|
import { Ip } from '../../Ip';
|
|
2
3
|
import { IpBlock } from '../../IpBlock';
|
|
3
4
|
/** Zerto disaster recovery remote site */
|
|
@@ -12,5 +13,7 @@ export interface ZertoRemoteVra {
|
|
|
12
13
|
remoteVraNetwork: IpBlock;
|
|
13
14
|
/** Internal ZVM ip on your onsite infrastructure local network */
|
|
14
15
|
remoteZvmInternalIp: Ip;
|
|
16
|
+
/** Current state of your current Zerto remote site */
|
|
17
|
+
state: StateEnum;
|
|
15
18
|
}
|
|
16
19
|
//# sourceMappingURL=ZertoRemoteVra.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZertoRemoteVra.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/ZertoRemoteVra.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,YAAY,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAE1C,0CAA0C;AAC1C,MAAM,WAAW,cAAc;IAC7B,mCAAmC;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,iCAAiC;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,6EAA6E;IAC7E,sBAAsB,EAAE,EAAE,CAAC;IAC3B,oEAAoE;IACpE,gBAAgB,EAAE,OAAO,CAAC;IAC1B,kEAAkE;IAClE,mBAAmB,EAAE,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"ZertoRemoteVra.d.ts","sourceRoot":"","sources":["../../../generated/types/dedicatedCloud/disasterRecovery/ZertoRemoteVra.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,sDAAsD,CAAC;AACjF,OAAO,EAAE,EAAE,EAAE,MAAM,YAAY,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAE1C,0CAA0C;AAC1C,MAAM,WAAW,cAAc;IAC7B,mCAAmC;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,iCAAiC;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,6EAA6E;IAC7E,sBAAsB,EAAE,EAAE,CAAC;IAC3B,oEAAoE;IACpE,gBAAgB,EAAE,OAAO,CAAC;IAC1B,kEAAkE;IAClE,mBAAmB,EAAE,EAAE,CAAC;IACxB,sDAAsD;IACtD,KAAK,EAAE,SAAS,CAAC;CAClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordTypeEnum.d.ts","sourceRoot":"","sources":["../../../generated/types/domain/zone/RecordTypeEnum.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,oBAAY,cAAc;IACxB,GAAG,MAAM;IACT,MAAM,SAAS;IACf,KAAK,QAAQ;IACb,OAAO,UAAU;IACjB,MAAM,SAAS;IACf,OAAO,UAAU;IACjB,OAAO,UAAU;IACjB,KAAK,QAAQ;IACb,IAAI,OAAO;IACX,OAAO,UAAU;IACjB,IAAI,OAAO;IACX,KAAK,QAAQ;IACb,IAAI,OAAO;IACX,KAAK,QAAQ;IACb,KAAK,QAAQ;IACb,OAAO,UAAU;IACjB,MAAM,SAAS;IACf,KAAK,QAAQ;CACd"}
|
|
1
|
+
{"version":3,"file":"RecordTypeEnum.d.ts","sourceRoot":"","sources":["../../../generated/types/domain/zone/RecordTypeEnum.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,oBAAY,cAAc;IACxB,GAAG,MAAM;IACT,MAAM,SAAS;IACf,KAAK,QAAQ;IACb,OAAO,UAAU;IACjB,MAAM,SAAS;IACf,OAAO,UAAU;IACjB,OAAO,UAAU;IACjB,KAAK,QAAQ;IACb,IAAI,OAAO;IACX,OAAO,UAAU;IACjB,IAAI,OAAO;IACX,KAAK,QAAQ;IACb,IAAI,OAAO;IACX,KAAK,QAAQ;IACb,KAAK,QAAQ;IACb,OAAO,UAAU;IACjB,MAAM,SAAS;IACf,MAAM,SAAS;IACf,KAAK,QAAQ;CACd"}
|
|
@@ -17,6 +17,7 @@ export var RecordTypeEnum;
|
|
|
17
17
|
RecordTypeEnum["SPF"] = "SPF";
|
|
18
18
|
RecordTypeEnum["SRV"] = "SRV";
|
|
19
19
|
RecordTypeEnum["SSHFP"] = "SSHFP";
|
|
20
|
+
RecordTypeEnum["SVCB"] = "SVCB";
|
|
20
21
|
RecordTypeEnum["TLSA"] = "TLSA";
|
|
21
22
|
RecordTypeEnum["TXT"] = "TXT";
|
|
22
23
|
})(RecordTypeEnum || (RecordTypeEnum = {}));
|