oci-dns 2.95.2 → 2.97.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 (70) hide show
  1. package/lib/client.d.ts +33 -0
  2. package/lib/client.js +182 -1
  3. package/lib/client.js.map +1 -1
  4. package/lib/dns-waiter.d.ts +90 -0
  5. package/lib/dns-waiter.js +168 -0
  6. package/lib/dns-waiter.js.map +1 -1
  7. package/lib/model/create-zone-details.d.ts +29 -0
  8. package/lib/model/create-zone-details.js.map +1 -1
  9. package/lib/model/dnssec-config.d.ts +37 -0
  10. package/lib/model/dnssec-config.js +73 -0
  11. package/lib/model/dnssec-config.js.map +1 -0
  12. package/lib/model/dnssec-digest-type.d.ts +30 -0
  13. package/lib/model/dnssec-digest-type.js +41 -0
  14. package/lib/model/dnssec-digest-type.js.map +1 -0
  15. package/lib/model/dnssec-key-version-ds-data.d.ts +36 -0
  16. package/lib/model/dnssec-key-version-ds-data.js +31 -0
  17. package/lib/model/dnssec-key-version-ds-data.js.map +1 -0
  18. package/lib/model/dnssec-signing-algorithm.d.ts +30 -0
  19. package/lib/model/dnssec-signing-algorithm.js +41 -0
  20. package/lib/model/dnssec-signing-algorithm.js.map +1 -0
  21. package/lib/model/index.d.ts +18 -0
  22. package/lib/model/index.js +20 -2
  23. package/lib/model/index.js.map +1 -1
  24. package/lib/model/ksk-dnssec-key-version.d.ts +125 -0
  25. package/lib/model/ksk-dnssec-key-version.js +63 -0
  26. package/lib/model/ksk-dnssec-key-version.js.map +1 -0
  27. package/lib/model/promote-zone-dnssec-key-version-details.d.ts +29 -0
  28. package/lib/model/promote-zone-dnssec-key-version-details.js +31 -0
  29. package/lib/model/promote-zone-dnssec-key-version-details.js.map +1 -0
  30. package/lib/model/stage-zone-dnssec-key-version-details.d.ts +29 -0
  31. package/lib/model/stage-zone-dnssec-key-version-details.js +31 -0
  32. package/lib/model/stage-zone-dnssec-key-version-details.js.map +1 -0
  33. package/lib/model/update-zone-details.d.ts +29 -0
  34. package/lib/model/update-zone-details.js.map +1 -1
  35. package/lib/model/zone-dnssec-state.d.ts +31 -0
  36. package/lib/model/zone-dnssec-state.js +42 -0
  37. package/lib/model/zone-dnssec-state.js.map +1 -0
  38. package/lib/model/zone-summary.d.ts +30 -0
  39. package/lib/model/zone-summary.js +30 -2
  40. package/lib/model/zone-summary.js.map +1 -1
  41. package/lib/model/zone.d.ts +30 -0
  42. package/lib/model/zone.js +6 -0
  43. package/lib/model/zone.js.map +1 -1
  44. package/lib/model/zsk-dnssec-key-version.d.ts +119 -0
  45. package/lib/model/zsk-dnssec-key-version.js +31 -0
  46. package/lib/model/zsk-dnssec-key-version.js.map +1 -0
  47. package/lib/request/index.d.ts +4 -0
  48. package/lib/request/list-zones-request.d.ts +5 -0
  49. package/lib/request/list-zones-request.js.map +1 -1
  50. package/lib/request/promote-zone-dnssec-key-version-request.d.ts +67 -0
  51. package/lib/request/promote-zone-dnssec-key-version-request.js +15 -0
  52. package/lib/request/promote-zone-dnssec-key-version-request.js.map +1 -0
  53. package/lib/request/stage-zone-dnssec-key-version-request.d.ts +67 -0
  54. package/lib/request/stage-zone-dnssec-key-version-request.js +15 -0
  55. package/lib/request/stage-zone-dnssec-key-version-request.js.map +1 -0
  56. package/lib/response/change-steering-policy-compartment-response.d.ts +6 -0
  57. package/lib/response/create-steering-policy-attachment-response.d.ts +6 -0
  58. package/lib/response/create-steering-policy-response.d.ts +6 -0
  59. package/lib/response/delete-steering-policy-attachment-response.d.ts +6 -0
  60. package/lib/response/delete-steering-policy-response.d.ts +6 -0
  61. package/lib/response/index.d.ts +4 -0
  62. package/lib/response/promote-zone-dnssec-key-version-response.d.ts +26 -0
  63. package/lib/response/promote-zone-dnssec-key-version-response.js +15 -0
  64. package/lib/response/promote-zone-dnssec-key-version-response.js.map +1 -0
  65. package/lib/response/stage-zone-dnssec-key-version-response.d.ts +26 -0
  66. package/lib/response/stage-zone-dnssec-key-version-response.js +15 -0
  67. package/lib/response/stage-zone-dnssec-key-version-response.js.map +1 -0
  68. package/lib/response/update-steering-policy-attachment-response.d.ts +6 -0
  69. package/lib/response/update-steering-policy-response.d.ts +6 -0
  70. package/package.json +3 -3
@@ -30,6 +30,12 @@ export interface CreateSteeringPolicyAttachmentResponse {
30
30
  *
31
31
  */
32
32
  "opcRequestId": string;
33
+ /**
34
+ * Unique Oracle-assigned identifier for the asynchronous request.
35
+ * You can use this to query status of the asynchronous operation.
36
+ *
37
+ */
38
+ "opcWorkRequestId": string;
33
39
  /**
34
40
  * The returned model.SteeringPolicyAttachment instance.
35
41
  */
@@ -30,6 +30,12 @@ export interface CreateSteeringPolicyResponse {
30
30
  *
31
31
  */
32
32
  "opcRequestId": string;
33
+ /**
34
+ * Unique Oracle-assigned identifier for the asynchronous request.
35
+ * You can use this to query status of the asynchronous operation.
36
+ *
37
+ */
38
+ "opcWorkRequestId": string;
33
39
  /**
34
40
  * The returned model.SteeringPolicy instance.
35
41
  */
@@ -17,4 +17,10 @@ export interface DeleteSteeringPolicyAttachmentResponse {
17
17
  *
18
18
  */
19
19
  "opcRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the asynchronous request.
22
+ * You can use this to query status of the asynchronous operation.
23
+ *
24
+ */
25
+ "opcWorkRequestId": string;
20
26
  }
@@ -17,4 +17,10 @@ export interface DeleteSteeringPolicyResponse {
17
17
  *
18
18
  */
19
19
  "opcRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the asynchronous request.
22
+ * You can use this to query status of the asynchronous operation.
23
+ *
24
+ */
25
+ "opcWorkRequestId": string;
20
26
  }
@@ -96,6 +96,10 @@ import * as PatchRRSetResponse from "./patch-rrset-response";
96
96
  export import PatchRRSetResponse = PatchRRSetResponse.PatchRRSetResponse;
97
97
  import * as PatchZoneRecordsResponse from "./patch-zone-records-response";
98
98
  export import PatchZoneRecordsResponse = PatchZoneRecordsResponse.PatchZoneRecordsResponse;
99
+ import * as PromoteZoneDnssecKeyVersionResponse from "./promote-zone-dnssec-key-version-response";
100
+ export import PromoteZoneDnssecKeyVersionResponse = PromoteZoneDnssecKeyVersionResponse.PromoteZoneDnssecKeyVersionResponse;
101
+ import * as StageZoneDnssecKeyVersionResponse from "./stage-zone-dnssec-key-version-response";
102
+ export import StageZoneDnssecKeyVersionResponse = StageZoneDnssecKeyVersionResponse.StageZoneDnssecKeyVersionResponse;
99
103
  import * as UpdateDomainRecordsResponse from "./update-domain-records-response";
100
104
  export import UpdateDomainRecordsResponse = UpdateDomainRecordsResponse.UpdateDomainRecordsResponse;
101
105
  import * as UpdateRRSetResponse from "./update-rrset-response";
@@ -0,0 +1,26 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180115
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2024, 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 PromoteZoneDnssecKeyVersionResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the request. If you need to
16
+ * contact Oracle about a particular request, please provide the request ID.
17
+ *
18
+ */
19
+ "opcRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the asynchronous request.
22
+ * You can use this to query status of the asynchronous operation.
23
+ *
24
+ */
25
+ "opcWorkRequestId": string;
26
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180115
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=promote-zone-dnssec-key-version-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"promote-zone-dnssec-key-version-response.js","sourceRoot":"","sources":["../../../../../lib/dns/lib/response/promote-zone-dnssec-key-version-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180115
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2024, 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 StageZoneDnssecKeyVersionResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the request. If you need to
16
+ * contact Oracle about a particular request, please provide the request ID.
17
+ *
18
+ */
19
+ "opcRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the asynchronous request.
22
+ * You can use this to query status of the asynchronous operation.
23
+ *
24
+ */
25
+ "opcWorkRequestId": string;
26
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180115
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=stage-zone-dnssec-key-version-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stage-zone-dnssec-key-version-response.js","sourceRoot":"","sources":["../../../../../lib/dns/lib/response/stage-zone-dnssec-key-version-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -18,6 +18,12 @@ export interface UpdateSteeringPolicyAttachmentResponse {
18
18
  *
19
19
  */
20
20
  "opcRequestId": string;
21
+ /**
22
+ * Unique Oracle-assigned identifier for the asynchronous request.
23
+ * You can use this to query status of the asynchronous operation.
24
+ *
25
+ */
26
+ "opcWorkRequestId": string;
21
27
  /**
22
28
  * The current version of the resource, ending with a
23
29
  * representation-specific suffix. This value may be used in If-Match
@@ -18,6 +18,12 @@ export interface UpdateSteeringPolicyResponse {
18
18
  *
19
19
  */
20
20
  "opcRequestId": string;
21
+ /**
22
+ * Unique Oracle-assigned identifier for the asynchronous request.
23
+ * You can use this to query status of the asynchronous operation.
24
+ *
25
+ */
26
+ "opcWorkRequestId": string;
21
27
  /**
22
28
  * The current version of the resource, ending with a
23
29
  * representation-specific suffix. This value may be used in If-Match
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-dns",
3
- "version": "2.95.2",
3
+ "version": "2.97.0",
4
4
  "description": "OCI NodeJS client for DNS",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "license": "(UPL-1.0 OR Apache-2.0)",
17
17
  "dependencies": {
18
- "oci-common": "2.95.2",
19
- "oci-workrequests": "2.95.2"
18
+ "oci-common": "2.97.0",
19
+ "oci-workrequests": "2.97.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"