oci-desktops 2.95.1 → 2.95.2
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/lib/client.js +3 -1
- package/lib/client.js.map +1 -1
- package/lib/model/create-desktop-pool-desktop-session-lifecycle-actions.d.ts +25 -0
- package/lib/model/create-desktop-pool-desktop-session-lifecycle-actions.js +62 -0
- package/lib/model/create-desktop-pool-desktop-session-lifecycle-actions.js.map +1 -0
- package/lib/model/create-desktop-pool-details.d.ts +13 -1
- package/lib/model/create-desktop-pool-details.js +24 -0
- package/lib/model/create-desktop-pool-details.js.map +1 -1
- package/lib/model/create-desktop-pool-private-access-details.d.ts +39 -0
- package/lib/model/create-desktop-pool-private-access-details.js +30 -0
- package/lib/model/create-desktop-pool-private-access-details.js.map +1 -0
- package/lib/model/create-desktop-pool-shape-config-details.d.ts +50 -0
- package/lib/model/create-desktop-pool-shape-config-details.js +36 -0
- package/lib/model/create-desktop-pool-shape-config-details.js.map +1 -0
- package/lib/model/desktop-image.d.ts +4 -0
- package/lib/model/desktop-image.js.map +1 -1
- package/lib/model/desktop-network-configuration.d.ts +5 -2
- package/lib/model/desktop-network-configuration.js.map +1 -1
- package/lib/model/desktop-pool-private-access-details.d.ts +51 -0
- package/lib/model/desktop-pool-private-access-details.js +30 -0
- package/lib/model/desktop-pool-private-access-details.js.map +1 -0
- package/lib/model/desktop-pool-shape-config.d.ts +56 -0
- package/lib/model/desktop-pool-shape-config.js +41 -0
- package/lib/model/desktop-pool-shape-config.js.map +1 -0
- package/lib/model/desktop-pool.d.ts +18 -1
- package/lib/model/desktop-pool.js +29 -0
- package/lib/model/desktop-pool.js.map +1 -1
- package/lib/model/desktop-session-lifecycle-actions.d.ts +25 -0
- package/lib/model/desktop-session-lifecycle-actions.js +62 -0
- package/lib/model/desktop-session-lifecycle-actions.js.map +1 -0
- package/lib/model/disconnect-config.d.ts +41 -0
- package/lib/model/disconnect-config.js +40 -0
- package/lib/model/disconnect-config.js.map +1 -0
- package/lib/model/inactivity-config.d.ts +41 -0
- package/lib/model/inactivity-config.js +40 -0
- package/lib/model/inactivity-config.js.map +1 -0
- package/lib/model/index.d.ts +18 -0
- package/lib/model/index.js +19 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/update-desktop-pool-desktop-session-lifecycle-actions.d.ts +25 -0
- package/lib/model/update-desktop-pool-desktop-session-lifecycle-actions.js +62 -0
- package/lib/model/update-desktop-pool-desktop-session-lifecycle-actions.js.map +1 -0
- package/lib/model/update-desktop-pool-details.d.ts +1 -0
- package/lib/model/update-desktop-pool-details.js +6 -0
- package/lib/model/update-desktop-pool-details.js.map +1 -1
- package/lib/request/stop-desktop-request.d.ts +4 -0
- package/package.json +3 -3
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Secure Desktops API
|
|
3
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20220618
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The details of the desktop's private access network connectivity that were used to create the pool.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
export interface DesktopPoolPrivateAccessDetails {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the customer VCN.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
"vcnId": string;
|
|
24
|
+
/**
|
|
25
|
+
* The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are
|
|
26
|
+
* updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's
|
|
27
|
+
* private IP address to access the service (for example,\u00A0xyz.oraclecloud.com).
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
"endpointFqdn"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the
|
|
33
|
+
* connectivity will be established.
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
"subnetId": string;
|
|
37
|
+
/**
|
|
38
|
+
* A list of network security groups for the private access.
|
|
39
|
+
*/
|
|
40
|
+
"nsgIds"?: Array<string>;
|
|
41
|
+
/**
|
|
42
|
+
* The IPv4 address from the provided OCI subnet which needs to be assigned to the VNIC. If not provided, it will
|
|
43
|
+
* be auto-assigned with an available IPv4 address from the subnet.
|
|
44
|
+
*
|
|
45
|
+
*/
|
|
46
|
+
"privateIp"?: string;
|
|
47
|
+
}
|
|
48
|
+
export declare namespace DesktopPoolPrivateAccessDetails {
|
|
49
|
+
function getJsonObj(obj: DesktopPoolPrivateAccessDetails): object;
|
|
50
|
+
function getDeserializedJsonObj(obj: DesktopPoolPrivateAccessDetails): object;
|
|
51
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Secure Desktops API
|
|
4
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20220618
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.DesktopPoolPrivateAccessDetails = void 0;
|
|
17
|
+
var DesktopPoolPrivateAccessDetails;
|
|
18
|
+
(function (DesktopPoolPrivateAccessDetails) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
DesktopPoolPrivateAccessDetails.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
DesktopPoolPrivateAccessDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(DesktopPoolPrivateAccessDetails = exports.DesktopPoolPrivateAccessDetails || (exports.DesktopPoolPrivateAccessDetails = {}));
|
|
30
|
+
//# sourceMappingURL=desktop-pool-private-access-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"desktop-pool-private-access-details.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/desktop-pool-private-access-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAwCH,IAAiB,+BAA+B,CAW/C;AAXD,WAAiB,+BAA+B;IAC9C,SAAgB,UAAU,CAAC,GAAoC;QAC7D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoC;QACzE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAW/C"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Secure Desktops API
|
|
3
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20220618
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The shape configuration used for each desktop compute instance in the desktop pool.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
export interface DesktopPoolShapeConfig {
|
|
19
|
+
/**
|
|
20
|
+
* The total number of OCPUs available for each desktop compute instance in the desktop pool.
|
|
21
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
22
|
+
*/
|
|
23
|
+
"ocpus"?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
|
|
26
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
27
|
+
*/
|
|
28
|
+
"memoryInGBs"?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The baseline OCPU utilization for a subcore burstable VM instance used for each desktop compute instance in
|
|
31
|
+
* the desktop pool.
|
|
32
|
+
* Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
|
|
33
|
+
* {@code BASELINE_1_1}.
|
|
34
|
+
*
|
|
35
|
+
* The following values are supported:
|
|
36
|
+
* - {@code BASELINE_1_8} - baseline usage is 1/8 of an OCPU.
|
|
37
|
+
* - {@code BASELINE_1_2} - baseline usage is 1/2 of an OCPU.
|
|
38
|
+
* - {@code BASELINE_1_1} - baseline usage is the entire OCPU. This represents a non-burstable instance.
|
|
39
|
+
*
|
|
40
|
+
*/
|
|
41
|
+
"baselineOcpuUtilization"?: DesktopPoolShapeConfig.BaselineOcpuUtilization;
|
|
42
|
+
}
|
|
43
|
+
export declare namespace DesktopPoolShapeConfig {
|
|
44
|
+
enum BaselineOcpuUtilization {
|
|
45
|
+
Baseline18 = "BASELINE_1_8",
|
|
46
|
+
Baseline12 = "BASELINE_1_2",
|
|
47
|
+
Baseline11 = "BASELINE_1_1",
|
|
48
|
+
/**
|
|
49
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
50
|
+
* version of the SDK.
|
|
51
|
+
*/
|
|
52
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
53
|
+
}
|
|
54
|
+
function getJsonObj(obj: DesktopPoolShapeConfig): object;
|
|
55
|
+
function getDeserializedJsonObj(obj: DesktopPoolShapeConfig): object;
|
|
56
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Secure Desktops API
|
|
4
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20220618
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.DesktopPoolShapeConfig = void 0;
|
|
17
|
+
var DesktopPoolShapeConfig;
|
|
18
|
+
(function (DesktopPoolShapeConfig) {
|
|
19
|
+
let BaselineOcpuUtilization;
|
|
20
|
+
(function (BaselineOcpuUtilization) {
|
|
21
|
+
BaselineOcpuUtilization["Baseline18"] = "BASELINE_1_8";
|
|
22
|
+
BaselineOcpuUtilization["Baseline12"] = "BASELINE_1_2";
|
|
23
|
+
BaselineOcpuUtilization["Baseline11"] = "BASELINE_1_1";
|
|
24
|
+
/**
|
|
25
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
26
|
+
* version of the SDK.
|
|
27
|
+
*/
|
|
28
|
+
BaselineOcpuUtilization["UnknownValue"] = "UNKNOWN_VALUE";
|
|
29
|
+
})(BaselineOcpuUtilization = DesktopPoolShapeConfig.BaselineOcpuUtilization || (DesktopPoolShapeConfig.BaselineOcpuUtilization = {}));
|
|
30
|
+
function getJsonObj(obj) {
|
|
31
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
32
|
+
return jsonObj;
|
|
33
|
+
}
|
|
34
|
+
DesktopPoolShapeConfig.getJsonObj = getJsonObj;
|
|
35
|
+
function getDeserializedJsonObj(obj) {
|
|
36
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
37
|
+
return jsonObj;
|
|
38
|
+
}
|
|
39
|
+
DesktopPoolShapeConfig.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
40
|
+
})(DesktopPoolShapeConfig = exports.DesktopPoolShapeConfig || (exports.DesktopPoolShapeConfig = {}));
|
|
41
|
+
//# sourceMappingURL=desktop-pool-shape-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"desktop-pool-shape-config.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/desktop-pool-shape-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAmCH,IAAiB,sBAAsB,CAsBtC;AAtBD,WAAiB,sBAAsB;IACrC,IAAY,uBASX;IATD,WAAY,uBAAuB;QACjC,sDAA2B,CAAA;QAC3B,sDAA2B,CAAA;QAC3B,sDAA2B,CAAA;QAC3B;;;WAGG;QACH,yDAA8B,CAAA;IAChC,CAAC,EATW,uBAAuB,GAAvB,8CAAuB,KAAvB,8CAAuB,QASlC;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EAtBgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAsBtC"}
|
|
@@ -54,6 +54,11 @@ export interface DesktopPool {
|
|
|
54
54
|
* The shape of the desktop pool.
|
|
55
55
|
*/
|
|
56
56
|
"shapeName": string;
|
|
57
|
+
"shapeConfig"?: model.DesktopPoolShapeConfig;
|
|
58
|
+
/**
|
|
59
|
+
* Indicates whether the desktop pool uses dedicated virtual machine hosts.
|
|
60
|
+
*/
|
|
61
|
+
"useDedicatedVmHost"?: DesktopPool.UseDedicatedVmHost;
|
|
57
62
|
/**
|
|
58
63
|
* Indicates whether storage is enabled for the desktop pool.
|
|
59
64
|
*/
|
|
@@ -70,6 +75,7 @@ export interface DesktopPool {
|
|
|
70
75
|
"availabilityPolicy": model.DesktopAvailabilityPolicy;
|
|
71
76
|
"image": model.DesktopImage;
|
|
72
77
|
"networkConfiguration": model.DesktopNetworkConfiguration;
|
|
78
|
+
"sessionLifecycleActions"?: model.DesktopSessionLifecycleActions;
|
|
73
79
|
/**
|
|
74
80
|
* The start time of the desktop pool.
|
|
75
81
|
*/
|
|
@@ -112,11 +118,22 @@ export interface DesktopPool {
|
|
|
112
118
|
};
|
|
113
119
|
};
|
|
114
120
|
/**
|
|
115
|
-
* A list of network security groups for the
|
|
121
|
+
* A list of network security groups for the network.
|
|
116
122
|
*/
|
|
117
123
|
"nsgIds"?: Array<string>;
|
|
124
|
+
"privateAccessDetails"?: model.DesktopPoolPrivateAccessDetails;
|
|
118
125
|
}
|
|
119
126
|
export declare namespace DesktopPool {
|
|
127
|
+
enum UseDedicatedVmHost {
|
|
128
|
+
True = "TRUE",
|
|
129
|
+
False = "FALSE",
|
|
130
|
+
Auto = "AUTO",
|
|
131
|
+
/**
|
|
132
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
133
|
+
* version of the SDK.
|
|
134
|
+
*/
|
|
135
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
136
|
+
}
|
|
120
137
|
function getJsonObj(obj: DesktopPool): object;
|
|
121
138
|
function getDeserializedJsonObj(obj: DesktopPool): object;
|
|
122
139
|
}
|
|
@@ -36,8 +36,22 @@ exports.DesktopPool = void 0;
|
|
|
36
36
|
const model = __importStar(require("../model"));
|
|
37
37
|
var DesktopPool;
|
|
38
38
|
(function (DesktopPool) {
|
|
39
|
+
let UseDedicatedVmHost;
|
|
40
|
+
(function (UseDedicatedVmHost) {
|
|
41
|
+
UseDedicatedVmHost["True"] = "TRUE";
|
|
42
|
+
UseDedicatedVmHost["False"] = "FALSE";
|
|
43
|
+
UseDedicatedVmHost["Auto"] = "AUTO";
|
|
44
|
+
/**
|
|
45
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
46
|
+
* version of the SDK.
|
|
47
|
+
*/
|
|
48
|
+
UseDedicatedVmHost["UnknownValue"] = "UNKNOWN_VALUE";
|
|
49
|
+
})(UseDedicatedVmHost = DesktopPool.UseDedicatedVmHost || (DesktopPool.UseDedicatedVmHost = {}));
|
|
39
50
|
function getJsonObj(obj) {
|
|
40
51
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
52
|
+
"shapeConfig": obj.shapeConfig
|
|
53
|
+
? model.DesktopPoolShapeConfig.getJsonObj(obj.shapeConfig)
|
|
54
|
+
: undefined,
|
|
41
55
|
"devicePolicy": obj.devicePolicy
|
|
42
56
|
? model.DesktopDevicePolicy.getJsonObj(obj.devicePolicy)
|
|
43
57
|
: undefined,
|
|
@@ -47,6 +61,12 @@ var DesktopPool;
|
|
|
47
61
|
"image": obj.image ? model.DesktopImage.getJsonObj(obj.image) : undefined,
|
|
48
62
|
"networkConfiguration": obj.networkConfiguration
|
|
49
63
|
? model.DesktopNetworkConfiguration.getJsonObj(obj.networkConfiguration)
|
|
64
|
+
: undefined,
|
|
65
|
+
"sessionLifecycleActions": obj.sessionLifecycleActions
|
|
66
|
+
? model.DesktopSessionLifecycleActions.getJsonObj(obj.sessionLifecycleActions)
|
|
67
|
+
: undefined,
|
|
68
|
+
"privateAccessDetails": obj.privateAccessDetails
|
|
69
|
+
? model.DesktopPoolPrivateAccessDetails.getJsonObj(obj.privateAccessDetails)
|
|
50
70
|
: undefined
|
|
51
71
|
});
|
|
52
72
|
return jsonObj;
|
|
@@ -54,6 +74,9 @@ var DesktopPool;
|
|
|
54
74
|
DesktopPool.getJsonObj = getJsonObj;
|
|
55
75
|
function getDeserializedJsonObj(obj) {
|
|
56
76
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
77
|
+
"shapeConfig": obj.shapeConfig
|
|
78
|
+
? model.DesktopPoolShapeConfig.getDeserializedJsonObj(obj.shapeConfig)
|
|
79
|
+
: undefined,
|
|
57
80
|
"devicePolicy": obj.devicePolicy
|
|
58
81
|
? model.DesktopDevicePolicy.getDeserializedJsonObj(obj.devicePolicy)
|
|
59
82
|
: undefined,
|
|
@@ -63,6 +86,12 @@ var DesktopPool;
|
|
|
63
86
|
"image": obj.image ? model.DesktopImage.getDeserializedJsonObj(obj.image) : undefined,
|
|
64
87
|
"networkConfiguration": obj.networkConfiguration
|
|
65
88
|
? model.DesktopNetworkConfiguration.getDeserializedJsonObj(obj.networkConfiguration)
|
|
89
|
+
: undefined,
|
|
90
|
+
"sessionLifecycleActions": obj.sessionLifecycleActions
|
|
91
|
+
? model.DesktopSessionLifecycleActions.getDeserializedJsonObj(obj.sessionLifecycleActions)
|
|
92
|
+
: undefined,
|
|
93
|
+
"privateAccessDetails": obj.privateAccessDetails
|
|
94
|
+
? model.DesktopPoolPrivateAccessDetails.getDeserializedJsonObj(obj.privateAccessDetails)
|
|
66
95
|
: undefined
|
|
67
96
|
});
|
|
68
97
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"desktop-pool.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/desktop-pool.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"desktop-pool.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/desktop-pool.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Secure Desktops API
|
|
3
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20220618
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
import * as model from "../model";
|
|
15
|
+
/**
|
|
16
|
+
* Action to be triggered on inactivity or disconnect
|
|
17
|
+
*/
|
|
18
|
+
export interface DesktopSessionLifecycleActions {
|
|
19
|
+
"inactivity"?: model.InactivityConfig;
|
|
20
|
+
"disconnect"?: model.DisconnectConfig;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace DesktopSessionLifecycleActions {
|
|
23
|
+
function getJsonObj(obj: DesktopSessionLifecycleActions): object;
|
|
24
|
+
function getDeserializedJsonObj(obj: DesktopSessionLifecycleActions): object;
|
|
25
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Secure Desktops API
|
|
4
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20220618
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
23
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
24
|
+
}) : function(o, v) {
|
|
25
|
+
o["default"] = v;
|
|
26
|
+
});
|
|
27
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
+
exports.DesktopSessionLifecycleActions = void 0;
|
|
36
|
+
const model = __importStar(require("../model"));
|
|
37
|
+
var DesktopSessionLifecycleActions;
|
|
38
|
+
(function (DesktopSessionLifecycleActions) {
|
|
39
|
+
function getJsonObj(obj) {
|
|
40
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
41
|
+
"inactivity": obj.inactivity
|
|
42
|
+
? model.InactivityConfig.getJsonObj(obj.inactivity)
|
|
43
|
+
: undefined,
|
|
44
|
+
"disconnect": obj.disconnect ? model.DisconnectConfig.getJsonObj(obj.disconnect) : undefined
|
|
45
|
+
});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
DesktopSessionLifecycleActions.getJsonObj = getJsonObj;
|
|
49
|
+
function getDeserializedJsonObj(obj) {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"inactivity": obj.inactivity
|
|
52
|
+
? model.InactivityConfig.getDeserializedJsonObj(obj.inactivity)
|
|
53
|
+
: undefined,
|
|
54
|
+
"disconnect": obj.disconnect
|
|
55
|
+
? model.DisconnectConfig.getDeserializedJsonObj(obj.disconnect)
|
|
56
|
+
: undefined
|
|
57
|
+
});
|
|
58
|
+
return jsonObj;
|
|
59
|
+
}
|
|
60
|
+
DesktopSessionLifecycleActions.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
61
|
+
})(DesktopSessionLifecycleActions = exports.DesktopSessionLifecycleActions || (exports.DesktopSessionLifecycleActions = {}));
|
|
62
|
+
//# sourceMappingURL=desktop-session-lifecycle-actions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"desktop-session-lifecycle-actions.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/desktop-session-lifecycle-actions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAWlC,IAAiB,8BAA8B,CA6B9C;AA7BD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC;gBACnD,CAAC,CAAC,SAAS;YACb,YAAY,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS;SAC7F,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,yCAAU,aAYzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC;gBAC/D,CAAC,CAAC,SAAS;YACb,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC;gBAC/D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,qDAAsB,yBAcrC,CAAA;AACH,CAAC,EA7BgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QA6B9C"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Secure Desktops API
|
|
3
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20220618
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Action and grace period for disconnect
|
|
16
|
+
*/
|
|
17
|
+
export interface DisconnectConfig {
|
|
18
|
+
/**
|
|
19
|
+
* a disconnect action to be triggered
|
|
20
|
+
*/
|
|
21
|
+
"action": DisconnectConfig.Action;
|
|
22
|
+
/**
|
|
23
|
+
* The period of time (in minutes) after disconnect before any action occurs.
|
|
24
|
+
* If the value is not provided, a default value is used.
|
|
25
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
26
|
+
*/
|
|
27
|
+
"gracePeriodInMinutes"?: number;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace DisconnectConfig {
|
|
30
|
+
enum Action {
|
|
31
|
+
None = "NONE",
|
|
32
|
+
Stop = "STOP",
|
|
33
|
+
/**
|
|
34
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
35
|
+
* version of the SDK.
|
|
36
|
+
*/
|
|
37
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
38
|
+
}
|
|
39
|
+
function getJsonObj(obj: DisconnectConfig): object;
|
|
40
|
+
function getDeserializedJsonObj(obj: DisconnectConfig): object;
|
|
41
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Secure Desktops API
|
|
4
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20220618
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.DisconnectConfig = void 0;
|
|
17
|
+
var DisconnectConfig;
|
|
18
|
+
(function (DisconnectConfig) {
|
|
19
|
+
let Action;
|
|
20
|
+
(function (Action) {
|
|
21
|
+
Action["None"] = "NONE";
|
|
22
|
+
Action["Stop"] = "STOP";
|
|
23
|
+
/**
|
|
24
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
25
|
+
* version of the SDK.
|
|
26
|
+
*/
|
|
27
|
+
Action["UnknownValue"] = "UNKNOWN_VALUE";
|
|
28
|
+
})(Action = DisconnectConfig.Action || (DisconnectConfig.Action = {}));
|
|
29
|
+
function getJsonObj(obj) {
|
|
30
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
31
|
+
return jsonObj;
|
|
32
|
+
}
|
|
33
|
+
DisconnectConfig.getJsonObj = getJsonObj;
|
|
34
|
+
function getDeserializedJsonObj(obj) {
|
|
35
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
36
|
+
return jsonObj;
|
|
37
|
+
}
|
|
38
|
+
DisconnectConfig.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
39
|
+
})(DisconnectConfig = exports.DisconnectConfig || (exports.DisconnectConfig = {}));
|
|
40
|
+
//# sourceMappingURL=disconnect-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"disconnect-config.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/disconnect-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAqBH,IAAiB,gBAAgB,CAqBhC;AArBD,WAAiB,gBAAgB;IAC/B,IAAY,MAQX;IARD,WAAY,MAAM;QAChB,uBAAa,CAAA;QACb,uBAAa,CAAA;QACb;;;WAGG;QACH,wCAA8B,CAAA;IAChC,CAAC,EARW,MAAM,GAAN,uBAAM,KAAN,uBAAM,QAQjB;IAED,SAAgB,UAAU,CAAC,GAAqB;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqB;QAC1D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uCAAsB,yBAIrC,CAAA;AACH,CAAC,EArBgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAqBhC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Secure Desktops API
|
|
3
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20220618
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Action and grace period for inactivity
|
|
16
|
+
*/
|
|
17
|
+
export interface InactivityConfig {
|
|
18
|
+
/**
|
|
19
|
+
* an inactivity action to be triggered
|
|
20
|
+
*/
|
|
21
|
+
"action": InactivityConfig.Action;
|
|
22
|
+
/**
|
|
23
|
+
* The period of time (in minutes) during which the session must remain inactive before any action occurs.
|
|
24
|
+
* If the value is not provided, a default value is used.
|
|
25
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
26
|
+
*/
|
|
27
|
+
"gracePeriodInMinutes"?: number;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace InactivityConfig {
|
|
30
|
+
enum Action {
|
|
31
|
+
None = "NONE",
|
|
32
|
+
Disconnect = "DISCONNECT",
|
|
33
|
+
/**
|
|
34
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
35
|
+
* version of the SDK.
|
|
36
|
+
*/
|
|
37
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
38
|
+
}
|
|
39
|
+
function getJsonObj(obj: InactivityConfig): object;
|
|
40
|
+
function getDeserializedJsonObj(obj: InactivityConfig): object;
|
|
41
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Secure Desktops API
|
|
4
|
+
* Create and manage cloud-hosted desktops which can be accessed from a web browser or installed client.
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20220618
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.InactivityConfig = void 0;
|
|
17
|
+
var InactivityConfig;
|
|
18
|
+
(function (InactivityConfig) {
|
|
19
|
+
let Action;
|
|
20
|
+
(function (Action) {
|
|
21
|
+
Action["None"] = "NONE";
|
|
22
|
+
Action["Disconnect"] = "DISCONNECT";
|
|
23
|
+
/**
|
|
24
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
25
|
+
* version of the SDK.
|
|
26
|
+
*/
|
|
27
|
+
Action["UnknownValue"] = "UNKNOWN_VALUE";
|
|
28
|
+
})(Action = InactivityConfig.Action || (InactivityConfig.Action = {}));
|
|
29
|
+
function getJsonObj(obj) {
|
|
30
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
31
|
+
return jsonObj;
|
|
32
|
+
}
|
|
33
|
+
InactivityConfig.getJsonObj = getJsonObj;
|
|
34
|
+
function getDeserializedJsonObj(obj) {
|
|
35
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
36
|
+
return jsonObj;
|
|
37
|
+
}
|
|
38
|
+
InactivityConfig.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
39
|
+
})(InactivityConfig = exports.InactivityConfig || (exports.InactivityConfig = {}));
|
|
40
|
+
//# sourceMappingURL=inactivity-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inactivity-config.js","sourceRoot":"","sources":["../../../../../lib/desktops/lib/model/inactivity-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAqBH,IAAiB,gBAAgB,CAqBhC;AArBD,WAAiB,gBAAgB;IAC/B,IAAY,MAQX;IARD,WAAY,MAAM;QAChB,uBAAa,CAAA;QACb,mCAAyB,CAAA;QACzB;;;WAGG;QACH,wCAA8B,CAAA;IAChC,CAAC,EARW,MAAM,GAAN,uBAAM,KAAN,uBAAM,QAQjB;IAED,SAAgB,UAAU,CAAC,GAAqB;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqB;QAC1D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uCAAsB,yBAIrC,CAAA;AACH,CAAC,EArBgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAqBhC"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -15,8 +15,14 @@ import * as ActionType from "./action-type";
|
|
|
15
15
|
export import ActionType = ActionType.ActionType;
|
|
16
16
|
import * as ChangeDesktopPoolCompartmentDetails from "./change-desktop-pool-compartment-details";
|
|
17
17
|
export import ChangeDesktopPoolCompartmentDetails = ChangeDesktopPoolCompartmentDetails.ChangeDesktopPoolCompartmentDetails;
|
|
18
|
+
import * as CreateDesktopPoolDesktopSessionLifecycleActions from "./create-desktop-pool-desktop-session-lifecycle-actions";
|
|
19
|
+
export import CreateDesktopPoolDesktopSessionLifecycleActions = CreateDesktopPoolDesktopSessionLifecycleActions.CreateDesktopPoolDesktopSessionLifecycleActions;
|
|
18
20
|
import * as CreateDesktopPoolDetails from "./create-desktop-pool-details";
|
|
19
21
|
export import CreateDesktopPoolDetails = CreateDesktopPoolDetails.CreateDesktopPoolDetails;
|
|
22
|
+
import * as CreateDesktopPoolPrivateAccessDetails from "./create-desktop-pool-private-access-details";
|
|
23
|
+
export import CreateDesktopPoolPrivateAccessDetails = CreateDesktopPoolPrivateAccessDetails.CreateDesktopPoolPrivateAccessDetails;
|
|
24
|
+
import * as CreateDesktopPoolShapeConfigDetails from "./create-desktop-pool-shape-config-details";
|
|
25
|
+
export import CreateDesktopPoolShapeConfigDetails = CreateDesktopPoolShapeConfigDetails.CreateDesktopPoolShapeConfigDetails;
|
|
20
26
|
import * as Desktop from "./desktop";
|
|
21
27
|
export import Desktop = Desktop.Desktop;
|
|
22
28
|
import * as DesktopAvailabilityPolicy from "./desktop-availability-policy";
|
|
@@ -37,6 +43,10 @@ import * as DesktopPoolDesktopCollection from "./desktop-pool-desktop-collection
|
|
|
37
43
|
export import DesktopPoolDesktopCollection = DesktopPoolDesktopCollection.DesktopPoolDesktopCollection;
|
|
38
44
|
import * as DesktopPoolDesktopSummary from "./desktop-pool-desktop-summary";
|
|
39
45
|
export import DesktopPoolDesktopSummary = DesktopPoolDesktopSummary.DesktopPoolDesktopSummary;
|
|
46
|
+
import * as DesktopPoolPrivateAccessDetails from "./desktop-pool-private-access-details";
|
|
47
|
+
export import DesktopPoolPrivateAccessDetails = DesktopPoolPrivateAccessDetails.DesktopPoolPrivateAccessDetails;
|
|
48
|
+
import * as DesktopPoolShapeConfig from "./desktop-pool-shape-config";
|
|
49
|
+
export import DesktopPoolShapeConfig = DesktopPoolShapeConfig.DesktopPoolShapeConfig;
|
|
40
50
|
import * as DesktopPoolSummary from "./desktop-pool-summary";
|
|
41
51
|
export import DesktopPoolSummary = DesktopPoolSummary.DesktopPoolSummary;
|
|
42
52
|
import * as DesktopPoolVolumeCollection from "./desktop-pool-volume-collection";
|
|
@@ -45,10 +55,16 @@ import * as DesktopPoolVolumeSummary from "./desktop-pool-volume-summary";
|
|
|
45
55
|
export import DesktopPoolVolumeSummary = DesktopPoolVolumeSummary.DesktopPoolVolumeSummary;
|
|
46
56
|
import * as DesktopSchedule from "./desktop-schedule";
|
|
47
57
|
export import DesktopSchedule = DesktopSchedule.DesktopSchedule;
|
|
58
|
+
import * as DesktopSessionLifecycleActions from "./desktop-session-lifecycle-actions";
|
|
59
|
+
export import DesktopSessionLifecycleActions = DesktopSessionLifecycleActions.DesktopSessionLifecycleActions;
|
|
48
60
|
import * as DesktopSummary from "./desktop-summary";
|
|
49
61
|
export import DesktopSummary = DesktopSummary.DesktopSummary;
|
|
62
|
+
import * as DisconnectConfig from "./disconnect-config";
|
|
63
|
+
export import DisconnectConfig = DisconnectConfig.DisconnectConfig;
|
|
50
64
|
import * as HostingOptions from "./hosting-options";
|
|
51
65
|
export import HostingOptions = HostingOptions.HostingOptions;
|
|
66
|
+
import * as InactivityConfig from "./inactivity-config";
|
|
67
|
+
export import InactivityConfig = InactivityConfig.InactivityConfig;
|
|
52
68
|
import * as LifecycleState from "./lifecycle-state";
|
|
53
69
|
export import LifecycleState = LifecycleState.LifecycleState;
|
|
54
70
|
import * as OperationStatus from "./operation-status";
|
|
@@ -57,6 +73,8 @@ import * as OperationType from "./operation-type";
|
|
|
57
73
|
export import OperationType = OperationType.OperationType;
|
|
58
74
|
import * as UpdateDesktopDetails from "./update-desktop-details";
|
|
59
75
|
export import UpdateDesktopDetails = UpdateDesktopDetails.UpdateDesktopDetails;
|
|
76
|
+
import * as UpdateDesktopPoolDesktopSessionLifecycleActions from "./update-desktop-pool-desktop-session-lifecycle-actions";
|
|
77
|
+
export import UpdateDesktopPoolDesktopSessionLifecycleActions = UpdateDesktopPoolDesktopSessionLifecycleActions.UpdateDesktopPoolDesktopSessionLifecycleActions;
|
|
60
78
|
import * as UpdateDesktopPoolDetails from "./update-desktop-pool-details";
|
|
61
79
|
export import UpdateDesktopPoolDetails = UpdateDesktopPoolDetails.UpdateDesktopPoolDetails;
|
|
62
80
|
import * as WorkRequest from "./work-request";
|