oci-cloudguard 2.130.0 → 2.131.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/lib/client.d.ts +0 -32
  2. package/lib/client.js +0 -32
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/absolute-time-start-policy.d.ts +1 -1
  5. package/lib/model/compliance-document-summary.d.ts +103 -0
  6. package/lib/model/compliance-document-summary.js +32 -0
  7. package/lib/model/compliance-document-summary.js.map +1 -0
  8. package/lib/model/compliance-document.d.ts +77 -0
  9. package/lib/model/compliance-document.js +37 -0
  10. package/lib/model/compliance-document.js.map +1 -0
  11. package/lib/model/continuous-query-start-policy.d.ts +1 -1
  12. package/lib/model/create-non-disclosure-agreement-details.d.ts +32 -0
  13. package/lib/model/create-non-disclosure-agreement-details.js +32 -0
  14. package/lib/model/create-non-disclosure-agreement-details.js.map +1 -0
  15. package/lib/model/create-security-zone-details.d.ts +4 -0
  16. package/lib/model/create-security-zone-details.js.map +1 -1
  17. package/lib/model/data-source-status.d.ts +1 -1
  18. package/lib/model/data-source-status.js +1 -1
  19. package/lib/model/index.d.ts +12 -0
  20. package/lib/model/index.js +19 -7
  21. package/lib/model/index.js.map +1 -1
  22. package/lib/model/logging-query-data-source-details.d.ts +2 -2
  23. package/lib/model/no-delay-start-policy.d.ts +1 -1
  24. package/lib/model/non-disclosure-agreement.d.ts +51 -0
  25. package/lib/model/non-disclosure-agreement.js +32 -0
  26. package/lib/model/non-disclosure-agreement.js.map +1 -0
  27. package/lib/model/scheduled-query-data-source-obj-details.d.ts +1 -1
  28. package/lib/model/security-zone-summary.d.ts +4 -0
  29. package/lib/model/security-zone-summary.js.map +1 -1
  30. package/lib/model/security-zone.d.ts +4 -0
  31. package/lib/model/security-zone.js.map +1 -1
  32. package/lib/model/service-collection.d.ts +29 -0
  33. package/lib/model/service-collection.js +64 -0
  34. package/lib/model/service-collection.js.map +1 -0
  35. package/lib/model/service-summary.d.ts +87 -0
  36. package/lib/model/service-summary.js +32 -0
  37. package/lib/model/service-summary.js.map +1 -0
  38. package/lib/model/update-security-zone-details.d.ts +4 -0
  39. package/lib/model/update-security-zone-details.js.map +1 -1
  40. package/lib/model/update-target-detector-recipe.d.ts +1 -1
  41. package/lib/model/update-target-responder-recipe.d.ts +1 -1
  42. package/package.json +3 -3
@@ -15,7 +15,7 @@
15
15
  */
16
16
  import * as model from "../model";
17
17
  /**
18
- * Start policy that defines the exact start time
18
+ * DEPRECATED - Start policy that defines the exact start time
19
19
  */
20
20
  export interface AbsoluteTimeStartPolicy extends model.ContinuousQueryStartPolicy {
21
21
  /**
@@ -0,0 +1,103 @@
1
+ /**
2
+ * Cloud Guard and Security Zones API
3
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
4
+
5
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
6
+
7
+ * OpenAPI spec version: 20200131
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ /**
17
+ * A summary representation of the compliance document.
18
+ */
19
+ export interface ComplianceDocumentSummary {
20
+ /**
21
+ * A unique identifier for the document that is assigned when you create
22
+ * the document as an Oracle Cloud Infrastructure resource and is immutable.
23
+ *
24
+ */
25
+ "id": string;
26
+ /**
27
+ * A friendly name or title for the compliance document. You cannot update this value later.
28
+ * Avoid entering confidential information.
29
+ *
30
+ */
31
+ "name": string;
32
+ /**
33
+ * The date and time the compliance document was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
34
+ *
35
+ */
36
+ "timeCreated"?: Date;
37
+ /**
38
+ * The current lifecycle state of the compliance document.
39
+ */
40
+ "lifecycleState": string;
41
+ /**
42
+ * The file name of the compliance document.
43
+ */
44
+ "documentFileName": string;
45
+ /**
46
+ * The version number of the compliance document. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
47
+ */
48
+ "version": number;
49
+ /**
50
+ * The type of compliance document.
51
+ */
52
+ "type": string;
53
+ /**
54
+ * The environment, also known as platform or business pillar, to which the compliance document belongs.
55
+ */
56
+ "platform": string;
57
+ /**
58
+ * The date and time the compliance document was last updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
59
+ *
60
+ */
61
+ "timeUpdated": Date;
62
+ /**
63
+ * The saas service name to which compliance document belongs.
64
+ */
65
+ "saasServiceName"?: string;
66
+ /**
67
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
68
+ * Example: {@code {\"bar-key\": \"value\"}}
69
+ * <p>
70
+ Avoid entering confidential information.
71
+ *
72
+ */
73
+ "freeformTags"?: {
74
+ [key: string]: string;
75
+ };
76
+ /**
77
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
78
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
79
+ *
80
+ */
81
+ "definedTags"?: {
82
+ [key: string]: {
83
+ [key: string]: any;
84
+ };
85
+ };
86
+ /**
87
+ * System tags for this resource. Each key is predefined and scoped to a namespace.
88
+ * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
89
+ * System tags can be viewed by users, but can only be created by the system.
90
+ * <p>
91
+ Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
92
+ *
93
+ */
94
+ "systemTags"?: {
95
+ [key: string]: {
96
+ [key: string]: any;
97
+ };
98
+ };
99
+ }
100
+ export declare namespace ComplianceDocumentSummary {
101
+ function getJsonObj(obj: ComplianceDocumentSummary): object;
102
+ function getDeserializedJsonObj(obj: ComplianceDocumentSummary): object;
103
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /**
3
+ * Cloud Guard and Security Zones API
4
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
5
+
6
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
7
+
8
+ * OpenAPI spec version: 20200131
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.ComplianceDocumentSummary = void 0;
19
+ var ComplianceDocumentSummary;
20
+ (function (ComplianceDocumentSummary) {
21
+ function getJsonObj(obj) {
22
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
23
+ return jsonObj;
24
+ }
25
+ ComplianceDocumentSummary.getJsonObj = getJsonObj;
26
+ function getDeserializedJsonObj(obj) {
27
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
28
+ return jsonObj;
29
+ }
30
+ ComplianceDocumentSummary.getDeserializedJsonObj = getDeserializedJsonObj;
31
+ })(ComplianceDocumentSummary = exports.ComplianceDocumentSummary || (exports.ComplianceDocumentSummary = {}));
32
+ //# sourceMappingURL=compliance-document-summary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compliance-document-summary.js","sourceRoot":"","sources":["../../../../../lib/cloudguard/lib/model/compliance-document-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAgFH,IAAiB,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAWzC"}
@@ -0,0 +1,77 @@
1
+ /**
2
+ * Cloud Guard and Security Zones API
3
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
4
+
5
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
6
+
7
+ * OpenAPI spec version: 20200131
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ /**
17
+ * A compliance document that exists in the tenancy.
18
+ */
19
+ export interface ComplianceDocument {
20
+ /**
21
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compliance document, which is assigned
22
+ * when you create the document as an Oracle Cloud Infrastructure resource and is immutable.
23
+ *
24
+ */
25
+ "id": string;
26
+ /**
27
+ * A friendly name or title for the compliance document. You cannot update this value later.
28
+ * Avoid entering confidential information.
29
+ *
30
+ */
31
+ "name": string;
32
+ /**
33
+ * The date and time the compliance document was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
34
+ *
35
+ */
36
+ "timeCreated": Date;
37
+ /**
38
+ * The current lifecycle state of the compliance document.
39
+ */
40
+ "lifecycleState": ComplianceDocument.LifecycleState;
41
+ /**
42
+ * The file name of the compliance document.
43
+ */
44
+ "documentFileName": string;
45
+ /**
46
+ * The version number of the compliance document. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
47
+ */
48
+ "version": number;
49
+ /**
50
+ * The type of compliance document. For definitions of supported types of compliance documents, see [Types of Compliance Documents](https://docs.oracle.com/iaas/en-us/iaas/Content/ComplianceDocuments/Concepts/compliancedocsoverview.htm#DocTypes).
51
+ *
52
+ */
53
+ "type": string;
54
+ /**
55
+ * The information technology infrastructure platform, or set of services, to which the compliance document belongs. A platform
56
+ * can also be described as an environment or a business pillar. For definitions of supported environments, see [Types of Environments](https://docs.oracle.com/iaas/en-us/iaas/Content/ComplianceDocuments/Concepts/compliancedocsoverview.htm#EnvironmentTypes).
57
+ *
58
+ */
59
+ "platform": string;
60
+ /**
61
+ * The date and time the compliance document was last updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
62
+ *
63
+ */
64
+ "timeUpdated": Date;
65
+ /**
66
+ * The saas service name to which compliance document belongs. For other types such as 'OCI' / 'PaaS' this value will be null.
67
+ */
68
+ "saasServiceName"?: string;
69
+ }
70
+ export declare namespace ComplianceDocument {
71
+ enum LifecycleState {
72
+ Active = "ACTIVE",
73
+ Inactive = "INACTIVE"
74
+ }
75
+ function getJsonObj(obj: ComplianceDocument): object;
76
+ function getDeserializedJsonObj(obj: ComplianceDocument): object;
77
+ }
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ /**
3
+ * Cloud Guard and Security Zones API
4
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
5
+
6
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
7
+
8
+ * OpenAPI spec version: 20200131
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.ComplianceDocument = void 0;
19
+ var ComplianceDocument;
20
+ (function (ComplianceDocument) {
21
+ let LifecycleState;
22
+ (function (LifecycleState) {
23
+ LifecycleState["Active"] = "ACTIVE";
24
+ LifecycleState["Inactive"] = "INACTIVE";
25
+ })(LifecycleState = ComplianceDocument.LifecycleState || (ComplianceDocument.LifecycleState = {}));
26
+ function getJsonObj(obj) {
27
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
28
+ return jsonObj;
29
+ }
30
+ ComplianceDocument.getJsonObj = getJsonObj;
31
+ function getDeserializedJsonObj(obj) {
32
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
33
+ return jsonObj;
34
+ }
35
+ ComplianceDocument.getDeserializedJsonObj = getDeserializedJsonObj;
36
+ })(ComplianceDocument = exports.ComplianceDocument || (exports.ComplianceDocument = {}));
37
+ //# sourceMappingURL=compliance-document.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compliance-document.js","sourceRoot":"","sources":["../../../../../lib/cloudguard/lib/model/compliance-document.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AA4DH,IAAiB,kBAAkB,CAgBlC;AAhBD,WAAiB,kBAAkB;IACjC,IAAY,cAGX;IAHD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;IACvB,CAAC,EAHW,cAAc,GAAd,iCAAc,KAAd,iCAAc,QAGzB;IAED,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAsB,yBAIrC,CAAA;AACH,CAAC,EAhBgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAgBlC"}
@@ -14,7 +14,7 @@
14
14
  * 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.
15
15
  */
16
16
  /**
17
- * Start policy for continuous query
17
+ * DEPRECATED - Start policy for continuous query
18
18
  */
19
19
  export interface ContinuousQueryStartPolicy {
20
20
  "startPolicyType": string;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Cloud Guard and Security Zones API
3
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
4
+
5
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
6
+
7
+ * OpenAPI spec version: 20200131
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ /**
17
+ * Details to use to create a new non-disclosure agreement for a particular compliance document.
18
+ */
19
+ export interface CreateNonDisclosureAgreementDetails {
20
+ /**
21
+ * The ID of the compliance document associated with the non-disclosure agreement.
22
+ */
23
+ "documentId": string;
24
+ /**
25
+ * The OCID of the compartment that contains the non-disclosure agreement.
26
+ */
27
+ "compartmentId": string;
28
+ }
29
+ export declare namespace CreateNonDisclosureAgreementDetails {
30
+ function getJsonObj(obj: CreateNonDisclosureAgreementDetails): object;
31
+ function getDeserializedJsonObj(obj: CreateNonDisclosureAgreementDetails): object;
32
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /**
3
+ * Cloud Guard and Security Zones API
4
+ * Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the [Cloud Guard](https://docs.oracle.com/iaas/cloud-guard/home.htm) and [Security Zones](https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
5
+
6
+ **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
7
+
8
+ * OpenAPI spec version: 20200131
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.CreateNonDisclosureAgreementDetails = void 0;
19
+ var CreateNonDisclosureAgreementDetails;
20
+ (function (CreateNonDisclosureAgreementDetails) {
21
+ function getJsonObj(obj) {
22
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
23
+ return jsonObj;
24
+ }
25
+ CreateNonDisclosureAgreementDetails.getJsonObj = getJsonObj;
26
+ function getDeserializedJsonObj(obj) {
27
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
28
+ return jsonObj;
29
+ }
30
+ CreateNonDisclosureAgreementDetails.getDeserializedJsonObj = getDeserializedJsonObj;
31
+ })(CreateNonDisclosureAgreementDetails = exports.CreateNonDisclosureAgreementDetails || (exports.CreateNonDisclosureAgreementDetails = {}));
32
+ //# sourceMappingURL=create-non-disclosure-agreement-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-non-disclosure-agreement-details.js","sourceRoot":"","sources":["../../../../../lib/cloudguard/lib/model/create-non-disclosure-agreement-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAmBH,IAAiB,mCAAmC,CAWnD;AAXD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0DAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAWnD"}
@@ -33,6 +33,10 @@ export interface CreateSecurityZoneDetails {
33
33
  * The OCID of the compartment for the security zone
34
34
  */
35
35
  "compartmentId": string;
36
+ /**
37
+ * Indicates if upon deletion of the security zone the comparment should inherit parent security zone
38
+ */
39
+ "isInheritanceAfterDeleteEnabled"?: boolean;
36
40
  /**
37
41
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
38
42
  * Example: {@code {\"bar-key\": \"value\"}}
@@ -1 +1 @@
1
- {"version":3,"file":"create-security-zone-details.js","sourceRoot":"","sources":["../../../../../lib/cloudguard/lib/model/create-security-zone-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAyCH,IAAiB,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAWzC"}
1
+ {"version":3,"file":"create-security-zone-details.js","sourceRoot":"","sources":["../../../../../lib/cloudguard/lib/model/create-security-zone-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AA6CH,IAAiB,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAWzC"}
@@ -14,7 +14,7 @@
14
14
  * 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.
15
15
  */
16
16
  /**
17
- * The enablement status of the data source
17
+ * The enablement status of the data source with value of ENABLED or DISABLED
18
18
  **/
19
19
  export declare enum DataSourceStatus {
20
20
  Enabled = "ENABLED",
@@ -17,7 +17,7 @@
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.DataSourceStatus = void 0;
19
19
  /**
20
- * The enablement status of the data source
20
+ * The enablement status of the data source with value of ENABLED or DISABLED
21
21
  **/
22
22
  var DataSourceStatus;
23
23
  (function (DataSourceStatus) {
@@ -71,6 +71,10 @@ import * as ClassificationStatus from "./classification-status";
71
71
  export import ClassificationStatus = ClassificationStatus.ClassificationStatus;
72
72
  import * as CloudGuardStatus from "./cloud-guard-status";
73
73
  export import CloudGuardStatus = CloudGuardStatus.CloudGuardStatus;
74
+ import * as ComplianceDocument from "./compliance-document";
75
+ export import ComplianceDocument = ComplianceDocument.ComplianceDocument;
76
+ import * as ComplianceDocumentSummary from "./compliance-document-summary";
77
+ export import ComplianceDocumentSummary = ComplianceDocumentSummary.ComplianceDocumentSummary;
74
78
  import * as Condition from "./condition";
75
79
  export import Condition = Condition.Condition;
76
80
  import * as ConditionFilterType from "./condition-filter-type";
@@ -117,6 +121,8 @@ import * as CreateDetectorRuleDetails from "./create-detector-rule-details";
117
121
  export import CreateDetectorRuleDetails = CreateDetectorRuleDetails.CreateDetectorRuleDetails;
118
122
  import * as CreateManagedListDetails from "./create-managed-list-details";
119
123
  export import CreateManagedListDetails = CreateManagedListDetails.CreateManagedListDetails;
124
+ import * as CreateNonDisclosureAgreementDetails from "./create-non-disclosure-agreement-details";
125
+ export import CreateNonDisclosureAgreementDetails = CreateNonDisclosureAgreementDetails.CreateNonDisclosureAgreementDetails;
120
126
  import * as CreateResponderRecipeDetails from "./create-responder-recipe-details";
121
127
  export import CreateResponderRecipeDetails = CreateResponderRecipeDetails.CreateResponderRecipeDetails;
122
128
  import * as CreateSavedQueryDetails from "./create-saved-query-details";
@@ -243,6 +249,8 @@ import * as ManagedListTypeSummary from "./managed-list-type-summary";
243
249
  export import ManagedListTypeSummary = ManagedListTypeSummary.ManagedListTypeSummary;
244
250
  import * as MonitoringService from "./monitoring-service";
245
251
  export import MonitoringService = MonitoringService.MonitoringService;
252
+ import * as NonDisclosureAgreement from "./non-disclosure-agreement";
253
+ export import NonDisclosureAgreement = NonDisclosureAgreement.NonDisclosureAgreement;
246
254
  import * as OperationStatus from "./operation-status";
247
255
  export import OperationStatus = OperationStatus.OperationStatus;
248
256
  import * as OperationType from "./operation-type";
@@ -463,8 +471,12 @@ import * as SecurityZoneCollection from "./security-zone-collection";
463
471
  export import SecurityZoneCollection = SecurityZoneCollection.SecurityZoneCollection;
464
472
  import * as SecurityZoneSummary from "./security-zone-summary";
465
473
  export import SecurityZoneSummary = SecurityZoneSummary.SecurityZoneSummary;
474
+ import * as ServiceCollection from "./service-collection";
475
+ export import ServiceCollection = ServiceCollection.ServiceCollection;
466
476
  import * as ServiceConfiguration from "./service-configuration";
467
477
  export import ServiceConfiguration = ServiceConfiguration.ServiceConfiguration;
478
+ import * as ServiceSummary from "./service-summary";
479
+ export import ServiceSummary = ServiceSummary.ServiceSummary;
468
480
  import * as ServiceTypeSummary from "./service-type-summary";
469
481
  export import ServiceTypeSummary = ServiceTypeSummary.ServiceTypeSummary;
470
482
  import * as Severity from "./severity";
@@ -34,13 +34,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
34
34
  return result;
35
35
  };
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
- exports.CreateDetectorRecipeDetectorRuleDetails = exports.CreateDetectorRecipeDetails = exports.CreateDataSourceDetails = exports.CreateDataMaskRuleDetails = exports.CreateAdhocQueryDetails = exports.ContinuousQueryStartPolicy = exports.ConfigurationListItemType = exports.ConfigurationLifecycleState = exports.Configuration = exports.ConfigValue = exports.Confidence = exports.ConditionValueType = exports.ConditionTypeEnum = exports.ConditionOperatorName = exports.ConditionOperator = exports.ConditionMetadataTypeSummary = exports.ConditionMetadataTypeCollection = exports.ConditionMetadataType = exports.ConditionGroup = exports.ConditionFilterType = exports.Condition = exports.CloudGuardStatus = exports.ClassificationStatus = exports.ChangeSecurityZoneCompartmentDetails = exports.ChangeSecurityRecipeCompartmentDetails = exports.ChangeSecurityPolicyCompartmentDetails = exports.ChangeSavedQueryCompartmentDetails = exports.ChangeResponderRecipeCompartmentDetails = exports.ChangeManagedListCompartmentDetails = exports.ChangeDetectorRecipeCompartmentDetails = exports.ChangeDataSourceCompartmentDetails = exports.CandidateResponderRule = exports.AttachTargetResponderRecipeDetails = exports.AttachTargetDetectorRecipeDetails = exports.AdhocQuerySummary = exports.AdhocQueryStatus = exports.AdhocQueryResultSummary = exports.AdhocQueryResultState = exports.AdhocQueryResultCollection = exports.AdhocQueryResource = exports.AdhocQueryRegionalDetails = exports.AdhocQueryDetails = exports.AdhocQueryCollection = exports.AdhocQuery = exports.AdditionalConfigPropertyDefinition = exports.AddCompartmentDetails = exports.ActorType = exports.ActivityProblemAggregationCollection = exports.ActivityProblemAggregation = exports.ActionType = void 0;
38
- exports.ExecuteResponderExecutionDetails = exports.EventStatus = exports.EntityType = exports.EntityDetails = exports.EntitiesMapping = exports.DetectorSummary = exports.DetectorRuleSummary = exports.DetectorRuleCollection = exports.DetectorRule = exports.DetectorRecipeSummary = exports.DetectorRecipeEnum = exports.DetectorRecipeDetectorRuleSummary = exports.DetectorRecipeDetectorRuleCollection = exports.DetectorRecipeDetectorRule = exports.DetectorRecipeCollection = exports.DetectorRecipe = exports.DetectorEnum = exports.DetectorDetails = exports.DetectorConfiguration = exports.DetectorCollection = exports.Detector = exports.DataSourceSummaryDetails = exports.DataSourceSummary = exports.DataSourceStatus = exports.DataSourceMappingInfo = exports.DataSourceFeedProvider = exports.DataSourceEventSummary = exports.DataSourceEventInfoStatus = exports.DataSourceEventInfo = exports.DataSourceEventCollection = exports.DataSourceDetails = exports.DataSourceCollection = exports.DataSource = exports.DataMaskRuleSummary = exports.DataMaskRuleStatus = exports.DataMaskRuleCollection = exports.DataMaskRule = exports.DataMaskCategory = exports.CveRiskLevel = exports.CreateWlpAgentDetails = exports.CreateTargetResponderRecipeDetails = exports.CreateTargetDetectorRecipeDetails = exports.CreateTargetDetails = exports.CreateSecurityZoneDetails = exports.CreateSecurityRecipeDetails = exports.CreateSecurityPolicyDetails = exports.CreateSavedQueryDetails = exports.CreateResponderRecipeDetails = exports.CreateManagedListDetails = exports.CreateDetectorRuleDetails = void 0;
39
- exports.RequestSummarizedTrendResourceRiskScoresDetails = exports.RemoveCompartmentDetails = exports.RegionStatusDetail = exports.RecommendationType = exports.RecommendationSummaryCollection = exports.RecommendationSummary = exports.RecommendationLifecycleDetail = exports.QueryReplicationStatus = exports.PropertyTuple = exports.ProblemTrendAggregationCollection = exports.ProblemTrendAggregation = exports.ProblemSummary = exports.ProblemLifecycleState = exports.ProblemLifecycleDetail = exports.ProblemHistorySummary = exports.ProblemHistoryCollection = exports.ProblemEntitySummary = exports.ProblemEntityCollection = exports.ProblemEndpointSummary = exports.ProblemEndpointCollection = exports.ProblemDimension = exports.ProblemCollection = exports.ProblemCategoryEnum = exports.ProblemAggregationCollection = exports.ProblemAggregation = exports.Problem = exports.PoliticalLocation = exports.PolicySummary = exports.PolicyCollection = exports.PackageDetail = exports.OwnerType = exports.OperatorType = exports.OperatorSummary = exports.OperationType = exports.OperationStatus = exports.MonitoringService = exports.ManagedListTypeSummary = exports.ManagedListTypeCollection = exports.ManagedListType = exports.ManagedListSummary = exports.ManagedListCollection = exports.ManagedList = exports.LoggingQueryType = exports.LoggingQueryOperatorType = exports.LoggingQueryDetails = exports.LifecycleState = exports.ImpactedResourceSummary = exports.ImpactedResourceCollection = exports.GeographicalLocation = exports.FeedProviderType = void 0;
40
- exports.ResponderRuleExecutionDetails = exports.ResponderRuleDetails = exports.ResponderRuleCollection = exports.ResponderRule = exports.ResponderRecipeSummary = exports.ResponderRecipeResponderRuleSummary = exports.ResponderRecipeResponderRuleCollection = exports.ResponderRecipeResponderRule = exports.ResponderRecipeCollection = exports.ResponderRecipe = exports.ResponderModeTypes = exports.ResponderExecutionTrendAggregationCollection = exports.ResponderExecutionTrendAggregation = exports.ResponderExecutionSummary = exports.ResponderExecutionStatus = exports.ResponderExecutionStates = exports.ResponderExecutionModes = exports.ResponderExecutionCollection = exports.ResponderExecutionAggregationCollection = exports.ResponderExecutionAggregation = exports.ResponderExecution = exports.ResponderDimension = exports.ResponderConfiguration = exports.ResponderActivityType = exports.ResponderActivitySummary = exports.ResponderActivityCollection = exports.ResourceVulnerabilitySummary = exports.ResourceVulnerabilityCollection = exports.ResourceVulnerability = exports.ResourceTypeSummary = exports.ResourceTypeCollection = exports.ResourceSummary = exports.ResourceRiskScoreDimension = exports.ResourceRiskScoreAggregationCollection = exports.ResourceRiskScoreAggregation = exports.ResourceProfileSummary = exports.ResourceProfileRiskScoreAggregationSummaryCollection = exports.ResourceProfileRiskScoreAggregationSummary = exports.ResourceProfileImpactedResourceSummary = exports.ResourceProfileImpactedResourceCollection = exports.ResourceProfileEndpointSummary = exports.ResourceProfileEndpointCollection = exports.ResourceProfileCollection = exports.ResourceProfile = exports.ResourcePortSummary = exports.ResourcePortCollection = exports.ResourceLock = exports.ResourceCollection = exports.ResourceAdditionalDetails = exports.Resource = void 0;
41
- exports.TargetDetectorRecipeSummary = exports.TargetDetectorRecipeDetectorRuleSummary = exports.TargetDetectorRecipeDetectorRuleCollection = exports.TargetDetectorRecipeDetectorRule = exports.TargetDetectorRecipeCollection = exports.TargetDetectorRecipe = exports.TargetDetectorDetails = exports.TargetDetails = exports.TargetCollection = exports.Target = exports.TacticSummary = exports.TacticCollection = exports.SortOrders = exports.SkipBulkResponderExecutionDetails = exports.SightingType = exports.SightingSummary = exports.SightingImpactedResourceSummary = exports.SightingImpactedResourceCollection = exports.SightingEndpointSummary = exports.SightingEndpointCollection = exports.SightingCollection = exports.Sighting = exports.Severity = exports.ServiceTypeSummary = exports.ServiceConfiguration = exports.SecurityZoneSummary = exports.SecurityZoneCollection = exports.SecurityZone = exports.SecurityScoreTrendAggregationCollection = exports.SecurityScoreTrendAggregation = exports.SecurityScoreAggregationCollection = exports.SecurityScoreAggregation = exports.SecurityRecipeSummary = exports.SecurityRecipeCollection = exports.SecurityRecipe = exports.SecurityRating = exports.SecurityPolicySummary = exports.SecurityPolicyCollection = exports.SecurityPolicy = exports.ScheduledQueryScopeDetail = exports.SavedQuerySummary = exports.SavedQueryCollection = exports.SavedQuery = exports.RuleType = exports.RuleSummary = exports.RiskScoreAggregationCollection = exports.RiskScoreAggregation = exports.RiskLevel = exports.ResponderType = exports.ResponderRuleSummary = void 0;
42
- exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequest = exports.WlpAgentSummary = exports.WlpAgentCollection = exports.WlpAgent = exports.UpdateWlpAgentDetails = exports.UpdateTargetResponderRuleDetails = exports.UpdateTargetResponderRecipeResponderRuleDetails = exports.UpdateTargetResponderRecipeDetails = exports.UpdateTargetResponderRecipe = exports.UpdateTargetRecipeResponderRuleDetails = exports.UpdateTargetRecipeDetectorRuleDetails = exports.UpdateTargetDetectorRuleDetails = exports.UpdateTargetDetectorRecipeDetectorRuleDetails = exports.UpdateTargetDetectorRecipeDetails = exports.UpdateTargetDetectorRecipe = exports.UpdateTargetDetails = exports.UpdateSecurityZoneDetails = exports.UpdateSecurityRecipeDetails = exports.UpdateSecurityPolicyDetails = exports.UpdateSavedQueryDetails = exports.UpdateResponderRuleDetails = exports.UpdateResponderRecipeResponderRuleDetails = exports.UpdateResponderRecipeResponderRule = exports.UpdateResponderRecipeDetails = exports.UpdateProblemStatusDetails = exports.UpdateManagedListDetails = exports.UpdateDetectorRuleDetails = exports.UpdateDetectorRecipeDetectorRuleDetails = exports.UpdateDetectorRecipeDetectorRule = exports.UpdateDetectorRecipeDetails = exports.UpdateDataSourceDetails = exports.UpdateDataMaskRuleDetails = exports.UpdateConfigurationDetails = exports.UpdateBulkProblemStatusDetails = exports.TriggerResponderDetails = exports.TechniqueSummary = exports.TechniqueCollection = exports.TargetSummary = exports.TargetSelected = exports.TargetResponderRecipeSummary = exports.TargetResponderRecipeResponderRuleSummary = exports.TargetResponderRecipeResponderRuleCollection = exports.TargetResponderRecipeResponderRule = exports.TargetResponderRecipeCollection = exports.TargetResponderRecipe = exports.TargetResourceType = void 0;
43
- exports.TargetResourceTypesSelected = exports.TargetIdsSelected = exports.SimpleCondition = exports.SecurityZoneTargetDetails = exports.ScheduledQueryDataSourceSummaryObjDetails = exports.ScheduledQueryDataSourceObjDetails = exports.NoDelayStartPolicy = exports.LoggingQueryDataSourceSummaryDetails = exports.LoggingQueryDataSourceDetails = exports.LoggingEventInfo = exports.InstanceSecurityServiceConfiguration = exports.InsightTypeLoggingQueryDetails = exports.CompositeCondition = exports.AllTargetsSelected = exports.AbsoluteTimeStartPolicy = exports.WorkRequestSummaryCollection = exports.WorkRequestSummary = exports.WorkRequestResourceMetadataKey = exports.WorkRequestResource = void 0;
37
+ exports.CreateDataSourceDetails = exports.CreateDataMaskRuleDetails = exports.CreateAdhocQueryDetails = exports.ContinuousQueryStartPolicy = exports.ConfigurationListItemType = exports.ConfigurationLifecycleState = exports.Configuration = exports.ConfigValue = exports.Confidence = exports.ConditionValueType = exports.ConditionTypeEnum = exports.ConditionOperatorName = exports.ConditionOperator = exports.ConditionMetadataTypeSummary = exports.ConditionMetadataTypeCollection = exports.ConditionMetadataType = exports.ConditionGroup = exports.ConditionFilterType = exports.Condition = exports.ComplianceDocumentSummary = exports.ComplianceDocument = exports.CloudGuardStatus = exports.ClassificationStatus = exports.ChangeSecurityZoneCompartmentDetails = exports.ChangeSecurityRecipeCompartmentDetails = exports.ChangeSecurityPolicyCompartmentDetails = exports.ChangeSavedQueryCompartmentDetails = exports.ChangeResponderRecipeCompartmentDetails = exports.ChangeManagedListCompartmentDetails = exports.ChangeDetectorRecipeCompartmentDetails = exports.ChangeDataSourceCompartmentDetails = exports.CandidateResponderRule = exports.AttachTargetResponderRecipeDetails = exports.AttachTargetDetectorRecipeDetails = exports.AdhocQuerySummary = exports.AdhocQueryStatus = exports.AdhocQueryResultSummary = exports.AdhocQueryResultState = exports.AdhocQueryResultCollection = exports.AdhocQueryResource = exports.AdhocQueryRegionalDetails = exports.AdhocQueryDetails = exports.AdhocQueryCollection = exports.AdhocQuery = exports.AdditionalConfigPropertyDefinition = exports.AddCompartmentDetails = exports.ActorType = exports.ActivityProblemAggregationCollection = exports.ActivityProblemAggregation = exports.ActionType = void 0;
38
+ exports.EntityDetails = exports.EntitiesMapping = exports.DetectorSummary = exports.DetectorRuleSummary = exports.DetectorRuleCollection = exports.DetectorRule = exports.DetectorRecipeSummary = exports.DetectorRecipeEnum = exports.DetectorRecipeDetectorRuleSummary = exports.DetectorRecipeDetectorRuleCollection = exports.DetectorRecipeDetectorRule = exports.DetectorRecipeCollection = exports.DetectorRecipe = exports.DetectorEnum = exports.DetectorDetails = exports.DetectorConfiguration = exports.DetectorCollection = exports.Detector = exports.DataSourceSummaryDetails = exports.DataSourceSummary = exports.DataSourceStatus = exports.DataSourceMappingInfo = exports.DataSourceFeedProvider = exports.DataSourceEventSummary = exports.DataSourceEventInfoStatus = exports.DataSourceEventInfo = exports.DataSourceEventCollection = exports.DataSourceDetails = exports.DataSourceCollection = exports.DataSource = exports.DataMaskRuleSummary = exports.DataMaskRuleStatus = exports.DataMaskRuleCollection = exports.DataMaskRule = exports.DataMaskCategory = exports.CveRiskLevel = exports.CreateWlpAgentDetails = exports.CreateTargetResponderRecipeDetails = exports.CreateTargetDetectorRecipeDetails = exports.CreateTargetDetails = exports.CreateSecurityZoneDetails = exports.CreateSecurityRecipeDetails = exports.CreateSecurityPolicyDetails = exports.CreateSavedQueryDetails = exports.CreateResponderRecipeDetails = exports.CreateNonDisclosureAgreementDetails = exports.CreateManagedListDetails = exports.CreateDetectorRuleDetails = exports.CreateDetectorRecipeDetectorRuleDetails = exports.CreateDetectorRecipeDetails = void 0;
39
+ exports.RecommendationSummaryCollection = exports.RecommendationSummary = exports.RecommendationLifecycleDetail = exports.QueryReplicationStatus = exports.PropertyTuple = exports.ProblemTrendAggregationCollection = exports.ProblemTrendAggregation = exports.ProblemSummary = exports.ProblemLifecycleState = exports.ProblemLifecycleDetail = exports.ProblemHistorySummary = exports.ProblemHistoryCollection = exports.ProblemEntitySummary = exports.ProblemEntityCollection = exports.ProblemEndpointSummary = exports.ProblemEndpointCollection = exports.ProblemDimension = exports.ProblemCollection = exports.ProblemCategoryEnum = exports.ProblemAggregationCollection = exports.ProblemAggregation = exports.Problem = exports.PoliticalLocation = exports.PolicySummary = exports.PolicyCollection = exports.PackageDetail = exports.OwnerType = exports.OperatorType = exports.OperatorSummary = exports.OperationType = exports.OperationStatus = exports.NonDisclosureAgreement = exports.MonitoringService = exports.ManagedListTypeSummary = exports.ManagedListTypeCollection = exports.ManagedListType = exports.ManagedListSummary = exports.ManagedListCollection = exports.ManagedList = exports.LoggingQueryType = exports.LoggingQueryOperatorType = exports.LoggingQueryDetails = exports.LifecycleState = exports.ImpactedResourceSummary = exports.ImpactedResourceCollection = exports.GeographicalLocation = exports.FeedProviderType = exports.ExecuteResponderExecutionDetails = exports.EventStatus = exports.EntityType = void 0;
40
+ exports.ResponderRecipeSummary = exports.ResponderRecipeResponderRuleSummary = exports.ResponderRecipeResponderRuleCollection = exports.ResponderRecipeResponderRule = exports.ResponderRecipeCollection = exports.ResponderRecipe = exports.ResponderModeTypes = exports.ResponderExecutionTrendAggregationCollection = exports.ResponderExecutionTrendAggregation = exports.ResponderExecutionSummary = exports.ResponderExecutionStatus = exports.ResponderExecutionStates = exports.ResponderExecutionModes = exports.ResponderExecutionCollection = exports.ResponderExecutionAggregationCollection = exports.ResponderExecutionAggregation = exports.ResponderExecution = exports.ResponderDimension = exports.ResponderConfiguration = exports.ResponderActivityType = exports.ResponderActivitySummary = exports.ResponderActivityCollection = exports.ResourceVulnerabilitySummary = exports.ResourceVulnerabilityCollection = exports.ResourceVulnerability = exports.ResourceTypeSummary = exports.ResourceTypeCollection = exports.ResourceSummary = exports.ResourceRiskScoreDimension = exports.ResourceRiskScoreAggregationCollection = exports.ResourceRiskScoreAggregation = exports.ResourceProfileSummary = exports.ResourceProfileRiskScoreAggregationSummaryCollection = exports.ResourceProfileRiskScoreAggregationSummary = exports.ResourceProfileImpactedResourceSummary = exports.ResourceProfileImpactedResourceCollection = exports.ResourceProfileEndpointSummary = exports.ResourceProfileEndpointCollection = exports.ResourceProfileCollection = exports.ResourceProfile = exports.ResourcePortSummary = exports.ResourcePortCollection = exports.ResourceLock = exports.ResourceCollection = exports.ResourceAdditionalDetails = exports.Resource = exports.RequestSummarizedTrendResourceRiskScoresDetails = exports.RemoveCompartmentDetails = exports.RegionStatusDetail = exports.RecommendationType = void 0;
41
+ exports.TargetDetectorDetails = exports.TargetDetails = exports.TargetCollection = exports.Target = exports.TacticSummary = exports.TacticCollection = exports.SortOrders = exports.SkipBulkResponderExecutionDetails = exports.SightingType = exports.SightingSummary = exports.SightingImpactedResourceSummary = exports.SightingImpactedResourceCollection = exports.SightingEndpointSummary = exports.SightingEndpointCollection = exports.SightingCollection = exports.Sighting = exports.Severity = exports.ServiceTypeSummary = exports.ServiceSummary = exports.ServiceConfiguration = exports.ServiceCollection = exports.SecurityZoneSummary = exports.SecurityZoneCollection = exports.SecurityZone = exports.SecurityScoreTrendAggregationCollection = exports.SecurityScoreTrendAggregation = exports.SecurityScoreAggregationCollection = exports.SecurityScoreAggregation = exports.SecurityRecipeSummary = exports.SecurityRecipeCollection = exports.SecurityRecipe = exports.SecurityRating = exports.SecurityPolicySummary = exports.SecurityPolicyCollection = exports.SecurityPolicy = exports.ScheduledQueryScopeDetail = exports.SavedQuerySummary = exports.SavedQueryCollection = exports.SavedQuery = exports.RuleType = exports.RuleSummary = exports.RiskScoreAggregationCollection = exports.RiskScoreAggregation = exports.RiskLevel = exports.ResponderType = exports.ResponderRuleSummary = exports.ResponderRuleExecutionDetails = exports.ResponderRuleDetails = exports.ResponderRuleCollection = exports.ResponderRule = void 0;
42
+ exports.WlpAgentCollection = exports.WlpAgent = exports.UpdateWlpAgentDetails = exports.UpdateTargetResponderRuleDetails = exports.UpdateTargetResponderRecipeResponderRuleDetails = exports.UpdateTargetResponderRecipeDetails = exports.UpdateTargetResponderRecipe = exports.UpdateTargetRecipeResponderRuleDetails = exports.UpdateTargetRecipeDetectorRuleDetails = exports.UpdateTargetDetectorRuleDetails = exports.UpdateTargetDetectorRecipeDetectorRuleDetails = exports.UpdateTargetDetectorRecipeDetails = exports.UpdateTargetDetectorRecipe = exports.UpdateTargetDetails = exports.UpdateSecurityZoneDetails = exports.UpdateSecurityRecipeDetails = exports.UpdateSecurityPolicyDetails = exports.UpdateSavedQueryDetails = exports.UpdateResponderRuleDetails = exports.UpdateResponderRecipeResponderRuleDetails = exports.UpdateResponderRecipeResponderRule = exports.UpdateResponderRecipeDetails = exports.UpdateProblemStatusDetails = exports.UpdateManagedListDetails = exports.UpdateDetectorRuleDetails = exports.UpdateDetectorRecipeDetectorRuleDetails = exports.UpdateDetectorRecipeDetectorRule = exports.UpdateDetectorRecipeDetails = exports.UpdateDataSourceDetails = exports.UpdateDataMaskRuleDetails = exports.UpdateConfigurationDetails = exports.UpdateBulkProblemStatusDetails = exports.TriggerResponderDetails = exports.TechniqueSummary = exports.TechniqueCollection = exports.TargetSummary = exports.TargetSelected = exports.TargetResponderRecipeSummary = exports.TargetResponderRecipeResponderRuleSummary = exports.TargetResponderRecipeResponderRuleCollection = exports.TargetResponderRecipeResponderRule = exports.TargetResponderRecipeCollection = exports.TargetResponderRecipe = exports.TargetResourceType = exports.TargetDetectorRecipeSummary = exports.TargetDetectorRecipeDetectorRuleSummary = exports.TargetDetectorRecipeDetectorRuleCollection = exports.TargetDetectorRecipeDetectorRule = exports.TargetDetectorRecipeCollection = exports.TargetDetectorRecipe = void 0;
43
+ exports.TargetResourceTypesSelected = exports.TargetIdsSelected = exports.SimpleCondition = exports.SecurityZoneTargetDetails = exports.ScheduledQueryDataSourceSummaryObjDetails = exports.ScheduledQueryDataSourceObjDetails = exports.NoDelayStartPolicy = exports.LoggingQueryDataSourceSummaryDetails = exports.LoggingQueryDataSourceDetails = exports.LoggingEventInfo = exports.InstanceSecurityServiceConfiguration = exports.InsightTypeLoggingQueryDetails = exports.CompositeCondition = exports.AllTargetsSelected = exports.AbsoluteTimeStartPolicy = exports.WorkRequestSummaryCollection = exports.WorkRequestSummary = exports.WorkRequestResourceMetadataKey = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequest = exports.WlpAgentSummary = void 0;
44
44
  const ActionType = __importStar(require("./action-type"));
45
45
  exports.ActionType = ActionType.ActionType;
46
46
  const ActivityProblemAggregation = __importStar(require("./activity-problem-aggregation"));
@@ -99,6 +99,10 @@ const ClassificationStatus = __importStar(require("./classification-status"));
99
99
  exports.ClassificationStatus = ClassificationStatus.ClassificationStatus;
100
100
  const CloudGuardStatus = __importStar(require("./cloud-guard-status"));
101
101
  exports.CloudGuardStatus = CloudGuardStatus.CloudGuardStatus;
102
+ const ComplianceDocument = __importStar(require("./compliance-document"));
103
+ exports.ComplianceDocument = ComplianceDocument.ComplianceDocument;
104
+ const ComplianceDocumentSummary = __importStar(require("./compliance-document-summary"));
105
+ exports.ComplianceDocumentSummary = ComplianceDocumentSummary.ComplianceDocumentSummary;
102
106
  const Condition = __importStar(require("./condition"));
103
107
  exports.Condition = Condition.Condition;
104
108
  const ConditionFilterType = __importStar(require("./condition-filter-type"));
@@ -145,6 +149,8 @@ const CreateDetectorRuleDetails = __importStar(require("./create-detector-rule-d
145
149
  exports.CreateDetectorRuleDetails = CreateDetectorRuleDetails.CreateDetectorRuleDetails;
146
150
  const CreateManagedListDetails = __importStar(require("./create-managed-list-details"));
147
151
  exports.CreateManagedListDetails = CreateManagedListDetails.CreateManagedListDetails;
152
+ const CreateNonDisclosureAgreementDetails = __importStar(require("./create-non-disclosure-agreement-details"));
153
+ exports.CreateNonDisclosureAgreementDetails = CreateNonDisclosureAgreementDetails.CreateNonDisclosureAgreementDetails;
148
154
  const CreateResponderRecipeDetails = __importStar(require("./create-responder-recipe-details"));
149
155
  exports.CreateResponderRecipeDetails = CreateResponderRecipeDetails.CreateResponderRecipeDetails;
150
156
  const CreateSavedQueryDetails = __importStar(require("./create-saved-query-details"));
@@ -271,6 +277,8 @@ const ManagedListTypeSummary = __importStar(require("./managed-list-type-summary
271
277
  exports.ManagedListTypeSummary = ManagedListTypeSummary.ManagedListTypeSummary;
272
278
  const MonitoringService = __importStar(require("./monitoring-service"));
273
279
  exports.MonitoringService = MonitoringService.MonitoringService;
280
+ const NonDisclosureAgreement = __importStar(require("./non-disclosure-agreement"));
281
+ exports.NonDisclosureAgreement = NonDisclosureAgreement.NonDisclosureAgreement;
274
282
  const OperationStatus = __importStar(require("./operation-status"));
275
283
  exports.OperationStatus = OperationStatus.OperationStatus;
276
284
  const OperationType = __importStar(require("./operation-type"));
@@ -491,8 +499,12 @@ const SecurityZoneCollection = __importStar(require("./security-zone-collection"
491
499
  exports.SecurityZoneCollection = SecurityZoneCollection.SecurityZoneCollection;
492
500
  const SecurityZoneSummary = __importStar(require("./security-zone-summary"));
493
501
  exports.SecurityZoneSummary = SecurityZoneSummary.SecurityZoneSummary;
502
+ const ServiceCollection = __importStar(require("./service-collection"));
503
+ exports.ServiceCollection = ServiceCollection.ServiceCollection;
494
504
  const ServiceConfiguration = __importStar(require("./service-configuration"));
495
505
  exports.ServiceConfiguration = ServiceConfiguration.ServiceConfiguration;
506
+ const ServiceSummary = __importStar(require("./service-summary"));
507
+ exports.ServiceSummary = ServiceSummary.ServiceSummary;
496
508
  const ServiceTypeSummary = __importStar(require("./service-type-summary"));
497
509
  exports.ServiceTypeSummary = ServiceTypeSummary.ServiceTypeSummary;
498
510
  const Severity = __importStar(require("./severity"));