oci-core 2.119.1 → 2.120.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.
Files changed (54) hide show
  1. package/lib/client.d.ts +36 -0
  2. package/lib/client.js +197 -1
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/add-ipv4-subnet-cidr-details.d.ts +38 -0
  5. package/lib/model/add-ipv4-subnet-cidr-details.js +36 -0
  6. package/lib/model/add-ipv4-subnet-cidr-details.js.map +1 -0
  7. package/lib/model/create-private-ip-details.d.ts +16 -0
  8. package/lib/model/create-private-ip-details.js.map +1 -1
  9. package/lib/model/create-subnet-details.d.ts +9 -1
  10. package/lib/model/create-subnet-details.js.map +1 -1
  11. package/lib/model/create-vnic-details.d.ts +10 -0
  12. package/lib/model/create-vnic-details.js.map +1 -1
  13. package/lib/model/index.d.ts +6 -0
  14. package/lib/model/index.js +20 -14
  15. package/lib/model/index.js.map +1 -1
  16. package/lib/model/instance-configuration-create-vnic-details.d.ts +11 -0
  17. package/lib/model/instance-configuration-create-vnic-details.js.map +1 -1
  18. package/lib/model/modify-ipv4-subnet-cidr-details.d.ts +38 -0
  19. package/lib/model/modify-ipv4-subnet-cidr-details.js +36 -0
  20. package/lib/model/modify-ipv4-subnet-cidr-details.js.map +1 -0
  21. package/lib/model/private-ip.d.ts +9 -0
  22. package/lib/model/private-ip.js.map +1 -1
  23. package/lib/model/remove-ipv4-subnet-cidr-details.d.ts +40 -0
  24. package/lib/model/remove-ipv4-subnet-cidr-details.js +36 -0
  25. package/lib/model/remove-ipv4-subnet-cidr-details.js.map +1 -0
  26. package/lib/model/subnet.d.ts +8 -0
  27. package/lib/model/subnet.js.map +1 -1
  28. package/lib/request/add-ipv4-subnet-cidr-request.d.ts +49 -0
  29. package/lib/request/add-ipv4-subnet-cidr-request.js +15 -0
  30. package/lib/request/add-ipv4-subnet-cidr-request.js.map +1 -0
  31. package/lib/request/index.d.ts +6 -0
  32. package/lib/request/index.js.map +1 -1
  33. package/lib/request/list-compute-hosts-request.d.ts +7 -0
  34. package/lib/request/list-compute-hosts-request.js.map +1 -1
  35. package/lib/request/modify-ipv4-subnet-cidr-request.d.ts +49 -0
  36. package/lib/request/modify-ipv4-subnet-cidr-request.js +15 -0
  37. package/lib/request/modify-ipv4-subnet-cidr-request.js.map +1 -0
  38. package/lib/request/remove-ipv4-subnet-cidr-request.d.ts +49 -0
  39. package/lib/request/remove-ipv4-subnet-cidr-request.js +15 -0
  40. package/lib/request/remove-ipv4-subnet-cidr-request.js.map +1 -0
  41. package/lib/response/add-ipv4-subnet-cidr-response.d.ts +27 -0
  42. package/lib/response/add-ipv4-subnet-cidr-response.js +15 -0
  43. package/lib/response/add-ipv4-subnet-cidr-response.js.map +1 -0
  44. package/lib/response/index.d.ts +6 -0
  45. package/lib/response/modify-ipv4-subnet-cidr-response.d.ts +27 -0
  46. package/lib/response/modify-ipv4-subnet-cidr-response.js +15 -0
  47. package/lib/response/modify-ipv4-subnet-cidr-response.js.map +1 -0
  48. package/lib/response/remove-ipv4-subnet-cidr-response.d.ts +27 -0
  49. package/lib/response/remove-ipv4-subnet-cidr-response.js +15 -0
  50. package/lib/response/remove-ipv4-subnet-cidr-response.js.map +1 -0
  51. package/lib/virtualnetwork-waiter.d.ts +30 -0
  52. package/lib/virtualnetwork-waiter.js +45 -0
  53. package/lib/virtualnetwork-waiter.js.map +1 -1
  54. package/package.json +3 -3
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Core Services API
3
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
4
+ compute instances, and block storage volumes. For more information, see the console
5
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
6
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
7
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
8
+ The required permissions are documented in the
9
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
10
+
11
+ * OpenAPI spec version: 20160918
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
+ * 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.
19
+ */
20
+ /**
21
+ * Details object for updating the specified Ipv4 CIDR block of a Subnet.
22
+ */
23
+ export interface ModifyIpv4SubnetCidrDetails {
24
+ /**
25
+ * The Ipv4 CIDR IP address to update.
26
+ *
27
+ */
28
+ "ipv4CidrBlock": string;
29
+ /**
30
+ * The new Ipv4 CIDR IP address.
31
+ *
32
+ */
33
+ "updatedIpv4CidrBlock": string;
34
+ }
35
+ export declare namespace ModifyIpv4SubnetCidrDetails {
36
+ function getJsonObj(obj: ModifyIpv4SubnetCidrDetails): object;
37
+ function getDeserializedJsonObj(obj: ModifyIpv4SubnetCidrDetails): object;
38
+ }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /**
3
+ * Core Services API
4
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
5
+ compute instances, and block storage volumes. For more information, see the console
6
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
7
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
8
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
9
+ The required permissions are documented in the
10
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
11
+
12
+ * OpenAPI spec version: 20160918
13
+ *
14
+ *
15
+ * NOTE: This class is auto generated by OracleSDKGenerator.
16
+ * Do not edit the class manually.
17
+ *
18
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
+ * 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.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.ModifyIpv4SubnetCidrDetails = void 0;
23
+ var ModifyIpv4SubnetCidrDetails;
24
+ (function (ModifyIpv4SubnetCidrDetails) {
25
+ function getJsonObj(obj) {
26
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
27
+ return jsonObj;
28
+ }
29
+ ModifyIpv4SubnetCidrDetails.getJsonObj = getJsonObj;
30
+ function getDeserializedJsonObj(obj) {
31
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
32
+ return jsonObj;
33
+ }
34
+ ModifyIpv4SubnetCidrDetails.getDeserializedJsonObj = getDeserializedJsonObj;
35
+ })(ModifyIpv4SubnetCidrDetails = exports.ModifyIpv4SubnetCidrDetails || (exports.ModifyIpv4SubnetCidrDetails = {}));
36
+ //# sourceMappingURL=modify-ipv4-subnet-cidr-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modify-ipv4-subnet-cidr-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/modify-ipv4-subnet-cidr-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAqBH,IAAiB,2BAA2B,CAW3C;AAXD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAW3C"}
@@ -126,6 +126,10 @@ export interface PrivateIp {
126
126
  *
127
127
  */
128
128
  "ipAddress"?: string;
129
+ /**
130
+ * The secondary IPv4 CIDR prefix length. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
131
+ */
132
+ "cidrPrefixLength"?: number;
129
133
  /**
130
134
  * Whether this private IP is the primary one on the VNIC. Primary private IPs
131
135
  * are unassigned and deleted automatically when the VNIC is terminated.
@@ -183,6 +187,11 @@ export interface PrivateIp {
183
187
  *
184
188
  */
185
189
  "routeTableId"?: string;
190
+ /**
191
+ * Ipv4 Subnet CIDR specified whn creating the PrivateIP.
192
+ *
193
+ */
194
+ "ipv4SubnetCidrAtCreation"?: string;
186
195
  }
187
196
  export declare namespace PrivateIp {
188
197
  enum IpState {
@@ -1 +1 @@
1
- {"version":3,"file":"private-ip.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/private-ip.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAuKH,IAAiB,SAAS,CA+BzB;AA/BD,WAAiB,SAAS;IACxB,IAAY,OAQX;IARD,WAAY,OAAO;QACjB,gCAAqB,CAAA;QACrB,kCAAuB,CAAA;QACvB;;;WAGG;QACH,yCAA8B,CAAA;IAChC,CAAC,EARW,OAAO,GAAP,iBAAO,KAAP,iBAAO,QAQlB;IAED,IAAY,QAQX;IARD,WAAY,QAAQ;QAClB,mCAAuB,CAAA;QACvB,iCAAqB,CAAA;QACrB;;;WAGG;QACH,0CAA8B,CAAA;IAChC,CAAC,EARW,QAAQ,GAAR,kBAAQ,KAAR,kBAAQ,QAQnB;IAED,SAAgB,UAAU,CAAC,GAAc;QACvC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAc;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gCAAsB,yBAIrC,CAAA;AACH,CAAC,EA/BgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QA+BzB"}
1
+ {"version":3,"file":"private-ip.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/private-ip.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAgLH,IAAiB,SAAS,CA+BzB;AA/BD,WAAiB,SAAS;IACxB,IAAY,OAQX;IARD,WAAY,OAAO;QACjB,gCAAqB,CAAA;QACrB,kCAAuB,CAAA;QACvB;;;WAGG;QACH,yCAA8B,CAAA;IAChC,CAAC,EARW,OAAO,GAAP,iBAAO,KAAP,iBAAO,QAQlB;IAED,IAAY,QAQX;IARD,WAAY,QAAQ;QAClB,mCAAuB,CAAA;QACvB,iCAAqB,CAAA;QACrB;;;WAGG;QACH,0CAA8B,CAAA;IAChC,CAAC,EARW,QAAQ,GAAR,kBAAQ,KAAR,kBAAQ,QAQnB;IAED,SAAgB,UAAU,CAAC,GAAc;QACvC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAc;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gCAAsB,yBAIrC,CAAA;AACH,CAAC,EA/BgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QA+BzB"}
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Core Services API
3
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
4
+ compute instances, and block storage volumes. For more information, see the console
5
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
6
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
7
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
8
+ The required permissions are documented in the
9
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
10
+
11
+ * OpenAPI spec version: 20160918
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
+ * 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.
19
+ */
20
+ /**
21
+ * Details object for removing an IPv4 prefix from a subnet.
22
+ */
23
+ export interface RemoveIpv4SubnetCidrDetails {
24
+ /**
25
+ * This field should only be specified when removing an IPv4 prefix from a subnet's IPv4 address space.
26
+ * The CIDR must maintain the following rules -
27
+ * <p>
28
+ a. The CIDR block is valid and correctly formatted.
29
+ * b. The CIDR range is within one of the parent VCN ranges.
30
+ * c. The CIDR range to be removed is already present in the list of ipv4CidrBlocks
31
+ * <p>
32
+ Example: {@code 10.0.1.0/24}
33
+ *
34
+ */
35
+ "ipv4CidrBlock": string;
36
+ }
37
+ export declare namespace RemoveIpv4SubnetCidrDetails {
38
+ function getJsonObj(obj: RemoveIpv4SubnetCidrDetails): object;
39
+ function getDeserializedJsonObj(obj: RemoveIpv4SubnetCidrDetails): object;
40
+ }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /**
3
+ * Core Services API
4
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
5
+ compute instances, and block storage volumes. For more information, see the console
6
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
7
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
8
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
9
+ The required permissions are documented in the
10
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
11
+
12
+ * OpenAPI spec version: 20160918
13
+ *
14
+ *
15
+ * NOTE: This class is auto generated by OracleSDKGenerator.
16
+ * Do not edit the class manually.
17
+ *
18
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
+ * 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.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.RemoveIpv4SubnetCidrDetails = void 0;
23
+ var RemoveIpv4SubnetCidrDetails;
24
+ (function (RemoveIpv4SubnetCidrDetails) {
25
+ function getJsonObj(obj) {
26
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
27
+ return jsonObj;
28
+ }
29
+ RemoveIpv4SubnetCidrDetails.getJsonObj = getJsonObj;
30
+ function getDeserializedJsonObj(obj) {
31
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
32
+ return jsonObj;
33
+ }
34
+ RemoveIpv4SubnetCidrDetails.getDeserializedJsonObj = getDeserializedJsonObj;
35
+ })(RemoveIpv4SubnetCidrDetails = exports.RemoveIpv4SubnetCidrDetails || (exports.RemoveIpv4SubnetCidrDetails = {}));
36
+ //# sourceMappingURL=remove-ipv4-subnet-cidr-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-ipv4-subnet-cidr-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/remove-ipv4-subnet-cidr-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAuBH,IAAiB,2BAA2B,CAW3C;AAXD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAW3C"}
@@ -45,6 +45,14 @@ export interface Subnet {
45
45
  *
46
46
  */
47
47
  "cidrBlock": string;
48
+ /**
49
+ * The list of all IPv4 CIDR blocks for the subnet that meets the following criteria:
50
+ * - Ipv4 CIDR blocks must be valid.
51
+ * - Multiple Ipv4 CIDR blocks must not overlap each other or the on-premises network CIDR block.
52
+ * - The number of prefixes must not exceed the limit of IPv4 prefixes allowed to a subnet.
53
+ *
54
+ */
55
+ "ipv4CidrBlocks"?: Array<string>;
48
56
  /**
49
57
  * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the subnet.
50
58
  */
@@ -1 +1 @@
1
- {"version":3,"file":"subnet.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/subnet.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AA8LH,IAAiB,MAAM,CAwBtB;AAxBD,WAAiB,MAAM;IACrB,IAAY,cAWX;IAXD,WAAY,cAAc;QACxB,+CAA6B,CAAA;QAC7B,yCAAuB,CAAA;QACvB,6CAA2B,CAAA;QAC3B,2CAAyB,CAAA;QACzB,uCAAqB,CAAA;QACrB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAXW,cAAc,GAAd,qBAAc,KAAd,qBAAc,QAWzB;IAED,SAAgB,UAAU,CAAC,GAAW;QACpC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAW;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAsB,yBAIrC,CAAA;AACH,CAAC,EAxBgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAwBtB"}
1
+ {"version":3,"file":"subnet.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/subnet.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAsMH,IAAiB,MAAM,CAwBtB;AAxBD,WAAiB,MAAM;IACrB,IAAY,cAWX;IAXD,WAAY,cAAc;QACxB,+CAA6B,CAAA;QAC7B,yCAAuB,CAAA;QACvB,6CAA2B,CAAA;QAC3B,2CAAyB,CAAA;QACzB,uCAAqB,CAAA;QACrB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAXW,cAAc,GAAd,qBAAc,KAAd,qBAAc,QAWzB;IAED,SAAgB,UAAU,CAAC,GAAW;QACpC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAW;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAsB,yBAIrC,CAAA;AACH,CAAC,EAxBgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAwBtB"}
@@ -0,0 +1,49 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/core/AddIpv4SubnetCidr.ts.html |here} to see how to use AddIpv4SubnetCidrRequest.
17
+ */
18
+ export interface AddIpv4SubnetCidrRequest extends common.BaseRequest {
19
+ /**
20
+ * Specify the [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet.
21
+ */
22
+ "subnetId": string;
23
+ /**
24
+ * Details object for adding an IPv4 prefix to a subnet.
25
+ */
26
+ "addIpv4SubnetCidrDetails": model.AddIpv4SubnetCidrDetails;
27
+ /**
28
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
29
+ * server error without risk of executing that same action again. Retry tokens expire after 24
30
+ * hours, but can be invalidated before then due to conflicting operations (for example, if a resource
31
+ * has been deleted and purged from the system, then a retry of the original creation request
32
+ * may be rejected).
33
+ *
34
+ */
35
+ "opcRetryToken"?: string;
36
+ /**
37
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
38
+ * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
39
+ * will be updated or deleted only if the etag you provide matches the resource's current etag value.
40
+ *
41
+ */
42
+ "ifMatch"?: string;
43
+ /**
44
+ * Unique identifier for the request.
45
+ * If you need to contact Oracle about a particular request, please provide the request ID.
46
+ *
47
+ */
48
+ "opcRequestId"?: string;
49
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=add-ipv4-subnet-cidr-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-ipv4-subnet-cidr-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/add-ipv4-subnet-cidr-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -455,6 +455,8 @@ import * as AddDrgRouteDistributionStatementsRequest from "./add-drg-route-distr
455
455
  export import AddDrgRouteDistributionStatementsRequest = AddDrgRouteDistributionStatementsRequest.AddDrgRouteDistributionStatementsRequest;
456
456
  import * as AddDrgRouteRulesRequest from "./add-drg-route-rules-request";
457
457
  export import AddDrgRouteRulesRequest = AddDrgRouteRulesRequest.AddDrgRouteRulesRequest;
458
+ import * as AddIpv4SubnetCidrRequest from "./add-ipv4-subnet-cidr-request";
459
+ export import AddIpv4SubnetCidrRequest = AddIpv4SubnetCidrRequest.AddIpv4SubnetCidrRequest;
458
460
  import * as AddIpv6SubnetCidrRequest from "./add-ipv6-subnet-cidr-request";
459
461
  export import AddIpv6SubnetCidrRequest = AddIpv6SubnetCidrRequest.AddIpv6SubnetCidrRequest;
460
462
  import * as AddIpv6VcnCidrRequest from "./add-ipv6-vcn-cidr-request";
@@ -861,6 +863,8 @@ import * as ListVlansRequest from "./list-vlans-request";
861
863
  export import ListVlansRequest = ListVlansRequest.ListVlansRequest;
862
864
  import * as ListVtapsRequest from "./list-vtaps-request";
863
865
  export import ListVtapsRequest = ListVtapsRequest.ListVtapsRequest;
866
+ import * as ModifyIpv4SubnetCidrRequest from "./modify-ipv4-subnet-cidr-request";
867
+ export import ModifyIpv4SubnetCidrRequest = ModifyIpv4SubnetCidrRequest.ModifyIpv4SubnetCidrRequest;
864
868
  import * as ModifyVcnCidrRequest from "./modify-vcn-cidr-request";
865
869
  export import ModifyVcnCidrRequest = ModifyVcnCidrRequest.ModifyVcnCidrRequest;
866
870
  import * as PrivateIpVnicDetachRequest from "./private-ip-vnic-detach-request";
@@ -873,6 +877,8 @@ import * as RemoveExportDrgRouteDistributionRequest from "./remove-export-drg-ro
873
877
  export import RemoveExportDrgRouteDistributionRequest = RemoveExportDrgRouteDistributionRequest.RemoveExportDrgRouteDistributionRequest;
874
878
  import * as RemoveImportDrgRouteDistributionRequest from "./remove-import-drg-route-distribution-request";
875
879
  export import RemoveImportDrgRouteDistributionRequest = RemoveImportDrgRouteDistributionRequest.RemoveImportDrgRouteDistributionRequest;
880
+ import * as RemoveIpv4SubnetCidrRequest from "./remove-ipv4-subnet-cidr-request";
881
+ export import RemoveIpv4SubnetCidrRequest = RemoveIpv4SubnetCidrRequest.RemoveIpv4SubnetCidrRequest;
876
882
  import * as RemoveIpv6SubnetCidrRequest from "./remove-ipv6-subnet-cidr-request";
877
883
  export import RemoveIpv6SubnetCidrRequest = RemoveIpv6SubnetCidrRequest.RemoveIpv6SubnetCidrRequest;
878
884
  import * as RemoveIpv6VcnCidrRequest from "./remove-ipv6-vcn-cidr-request";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/index.ts"],"names":[],"mappings":"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"}
@@ -94,6 +94,13 @@ export interface ListComputeHostsRequest extends common.BaseRequest {
94
94
  *
95
95
  */
96
96
  "computeHostGroupId"?: string;
97
+ /**
98
+ * When set to true, all the compartments in the tenancy are traversed
99
+ * and the hosts in the specified tenancy and its compartments are fetched.
100
+ * Default is false.
101
+ *
102
+ */
103
+ "computeHostInSubtree"?: boolean;
97
104
  }
98
105
  export declare namespace ListComputeHostsRequest {
99
106
  enum SortBy {
@@ -1 +1 @@
1
- {"version":3,"file":"list-compute-hosts-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/list-compute-hosts-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA0FH,IAAiB,uBAAuB,CAUvC;AAVD,WAAiB,uBAAuB;IACtC,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,8BAAM,KAAN,8BAAM,QAGjB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,iCAAS,KAAT,iCAAS,QAGpB;AACH,CAAC,EAVgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAUvC"}
1
+ {"version":3,"file":"list-compute-hosts-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/list-compute-hosts-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiGH,IAAiB,uBAAuB,CAUvC;AAVD,WAAiB,uBAAuB;IACtC,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,8BAAM,KAAN,8BAAM,QAGjB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,iCAAS,KAAT,iCAAS,QAGpB;AACH,CAAC,EAVgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAUvC"}
@@ -0,0 +1,49 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/core/ModifyIpv4SubnetCidr.ts.html |here} to see how to use ModifyIpv4SubnetCidrRequest.
17
+ */
18
+ export interface ModifyIpv4SubnetCidrRequest extends common.BaseRequest {
19
+ /**
20
+ * Specify the [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet.
21
+ */
22
+ "subnetId": string;
23
+ /**
24
+ * Details object for updating a SUBNET IPv4 prefix.
25
+ */
26
+ "modifyIpv4SubnetCidrDetails": model.ModifyIpv4SubnetCidrDetails;
27
+ /**
28
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
29
+ * server error without risk of executing that same action again. Retry tokens expire after 24
30
+ * hours, but can be invalidated before then due to conflicting operations (for example, if a resource
31
+ * has been deleted and purged from the system, then a retry of the original creation request
32
+ * may be rejected).
33
+ *
34
+ */
35
+ "opcRetryToken"?: string;
36
+ /**
37
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
38
+ * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
39
+ * will be updated or deleted only if the etag you provide matches the resource's current etag value.
40
+ *
41
+ */
42
+ "ifMatch"?: string;
43
+ /**
44
+ * Unique identifier for the request.
45
+ * If you need to contact Oracle about a particular request, please provide the request ID.
46
+ *
47
+ */
48
+ "opcRequestId"?: string;
49
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=modify-ipv4-subnet-cidr-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modify-ipv4-subnet-cidr-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/modify-ipv4-subnet-cidr-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,49 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/core/RemoveIpv4SubnetCidr.ts.html |here} to see how to use RemoveIpv4SubnetCidrRequest.
17
+ */
18
+ export interface RemoveIpv4SubnetCidrRequest extends common.BaseRequest {
19
+ /**
20
+ * Specify the [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet.
21
+ */
22
+ "subnetId": string;
23
+ /**
24
+ * Details object for removing an IPv4 SUBNET prefix.
25
+ */
26
+ "removeIpv4SubnetCidrDetails": model.RemoveIpv4SubnetCidrDetails;
27
+ /**
28
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
29
+ * server error without risk of executing that same action again. Retry tokens expire after 24
30
+ * hours, but can be invalidated before then due to conflicting operations (for example, if a resource
31
+ * has been deleted and purged from the system, then a retry of the original creation request
32
+ * may be rejected).
33
+ *
34
+ */
35
+ "opcRetryToken"?: string;
36
+ /**
37
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
38
+ * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
39
+ * will be updated or deleted only if the etag you provide matches the resource's current etag value.
40
+ *
41
+ */
42
+ "ifMatch"?: string;
43
+ /**
44
+ * Unique identifier for the request.
45
+ * If you need to contact Oracle about a particular request, please provide the request ID.
46
+ *
47
+ */
48
+ "opcRequestId"?: string;
49
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=remove-ipv4-subnet-cidr-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-ipv4-subnet-cidr-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/remove-ipv4-subnet-cidr-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ export interface AddIpv4SubnetCidrResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the request. If you need to contact
16
+ * Oracle about a particular request, please provide the request ID.
17
+ *
18
+ */
19
+ "opcRequestId": string;
20
+ /**
21
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the work request.
22
+ * Use [GetWorkRequest](https://docs.oracle.com/iaas/api/#/en/workrequests/latest/WorkRequest/GetWorkRequest)
23
+ * with this ID to track the status of the request.
24
+ *
25
+ */
26
+ "opcWorkRequestId": string;
27
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=add-ipv4-subnet-cidr-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-ipv4-subnet-cidr-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/add-ipv4-subnet-cidr-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -455,6 +455,8 @@ import * as AddDrgRouteDistributionStatementsResponse from "./add-drg-route-dist
455
455
  export import AddDrgRouteDistributionStatementsResponse = AddDrgRouteDistributionStatementsResponse.AddDrgRouteDistributionStatementsResponse;
456
456
  import * as AddDrgRouteRulesResponse from "./add-drg-route-rules-response";
457
457
  export import AddDrgRouteRulesResponse = AddDrgRouteRulesResponse.AddDrgRouteRulesResponse;
458
+ import * as AddIpv4SubnetCidrResponse from "./add-ipv4-subnet-cidr-response";
459
+ export import AddIpv4SubnetCidrResponse = AddIpv4SubnetCidrResponse.AddIpv4SubnetCidrResponse;
458
460
  import * as AddIpv6SubnetCidrResponse from "./add-ipv6-subnet-cidr-response";
459
461
  export import AddIpv6SubnetCidrResponse = AddIpv6SubnetCidrResponse.AddIpv6SubnetCidrResponse;
460
462
  import * as AddIpv6VcnCidrResponse from "./add-ipv6-vcn-cidr-response";
@@ -861,6 +863,8 @@ import * as ListVlansResponse from "./list-vlans-response";
861
863
  export import ListVlansResponse = ListVlansResponse.ListVlansResponse;
862
864
  import * as ListVtapsResponse from "./list-vtaps-response";
863
865
  export import ListVtapsResponse = ListVtapsResponse.ListVtapsResponse;
866
+ import * as ModifyIpv4SubnetCidrResponse from "./modify-ipv4-subnet-cidr-response";
867
+ export import ModifyIpv4SubnetCidrResponse = ModifyIpv4SubnetCidrResponse.ModifyIpv4SubnetCidrResponse;
864
868
  import * as ModifyVcnCidrResponse from "./modify-vcn-cidr-response";
865
869
  export import ModifyVcnCidrResponse = ModifyVcnCidrResponse.ModifyVcnCidrResponse;
866
870
  import * as PrivateIpVnicDetachResponse from "./private-ip-vnic-detach-response";
@@ -873,6 +877,8 @@ import * as RemoveExportDrgRouteDistributionResponse from "./remove-export-drg-r
873
877
  export import RemoveExportDrgRouteDistributionResponse = RemoveExportDrgRouteDistributionResponse.RemoveExportDrgRouteDistributionResponse;
874
878
  import * as RemoveImportDrgRouteDistributionResponse from "./remove-import-drg-route-distribution-response";
875
879
  export import RemoveImportDrgRouteDistributionResponse = RemoveImportDrgRouteDistributionResponse.RemoveImportDrgRouteDistributionResponse;
880
+ import * as RemoveIpv4SubnetCidrResponse from "./remove-ipv4-subnet-cidr-response";
881
+ export import RemoveIpv4SubnetCidrResponse = RemoveIpv4SubnetCidrResponse.RemoveIpv4SubnetCidrResponse;
876
882
  import * as RemoveIpv6SubnetCidrResponse from "./remove-ipv6-subnet-cidr-response";
877
883
  export import RemoveIpv6SubnetCidrResponse = RemoveIpv6SubnetCidrResponse.RemoveIpv6SubnetCidrResponse;
878
884
  import * as RemoveIpv6VcnCidrResponse from "./remove-ipv6-vcn-cidr-response";
@@ -0,0 +1,27 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ export interface ModifyIpv4SubnetCidrResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the request. If you need to contact
16
+ * Oracle about a particular request, please provide the request ID.
17
+ *
18
+ */
19
+ "opcRequestId": string;
20
+ /**
21
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the work request.
22
+ * Use [GetWorkRequest](https://docs.oracle.com/iaas/api/#/en/workrequests/latest/WorkRequest/GetWorkRequest)
23
+ * with this ID to track the status of the request.
24
+ *
25
+ */
26
+ "opcWorkRequestId": string;
27
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=modify-ipv4-subnet-cidr-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modify-ipv4-subnet-cidr-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/modify-ipv4-subnet-cidr-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}