pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__py3-none-any.whl
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.
- pulumi_oci/__init__.py +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1294 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionResult',
|
20
|
+
'GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemResult',
|
21
|
+
'GetVulnerabilityAggregatedVulnerabilityDataFilterResult',
|
22
|
+
'GetVulnerabilityNotificationsFilterResult',
|
23
|
+
'GetVulnerabilityNotificationsNotificationCollectionResult',
|
24
|
+
'GetVulnerabilityNotificationsNotificationCollectionItemResult',
|
25
|
+
'GetVulnerabilityPatchRecommendationsSummaryResult',
|
26
|
+
'GetVulnerabilityResourceResult',
|
27
|
+
'GetVulnerabilityResourceHostInfoResult',
|
28
|
+
'GetVulnerabilityResourcesFilterResult',
|
29
|
+
'GetVulnerabilityResourcesSummaryResult',
|
30
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionResult',
|
31
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemResult',
|
32
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdbResult',
|
33
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricErrorResult',
|
34
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetailResult',
|
35
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummaryResult',
|
36
|
+
'GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummaryResult',
|
37
|
+
'GetVulnerabilityScansFilterResult',
|
38
|
+
'GetVulnerabilityScansVulnerabilityScanCollectionResult',
|
39
|
+
'GetVulnerabilityScansVulnerabilityScanCollectionItemResult',
|
40
|
+
'GetVulnerabilityVulnerabilitiesFilterResult',
|
41
|
+
'GetVulnerabilityVulnerabilitiesSummaryResult',
|
42
|
+
'GetVulnerabilityVulnerabilitiesVulnerabilityCollectionResult',
|
43
|
+
'GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemResult',
|
44
|
+
]
|
45
|
+
|
46
|
+
@pulumi.output_type
|
47
|
+
class GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionResult(dict):
|
48
|
+
def __init__(__self__, *,
|
49
|
+
items: Sequence['outputs.GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemResult']):
|
50
|
+
"""
|
51
|
+
:param Sequence['GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemArgs'] items: List of data
|
52
|
+
"""
|
53
|
+
pulumi.set(__self__, "items", items)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter
|
57
|
+
def items(self) -> Sequence['outputs.GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemResult']:
|
58
|
+
"""
|
59
|
+
List of data
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "items")
|
62
|
+
|
63
|
+
|
64
|
+
@pulumi.output_type
|
65
|
+
class GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemResult(dict):
|
66
|
+
def __init__(__self__, *,
|
67
|
+
registered_resources_count: int,
|
68
|
+
timestamp: str,
|
69
|
+
vulnerabilities_count: int):
|
70
|
+
"""
|
71
|
+
:param int registered_resources_count: Registered databases against which the scan ran.
|
72
|
+
:param str timestamp: UTC timestamp when the scan completed.
|
73
|
+
:param int vulnerabilities_count: Unresolved vulnerabilities that were found by the scan.
|
74
|
+
"""
|
75
|
+
pulumi.set(__self__, "registered_resources_count", registered_resources_count)
|
76
|
+
pulumi.set(__self__, "timestamp", timestamp)
|
77
|
+
pulumi.set(__self__, "vulnerabilities_count", vulnerabilities_count)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="registeredResourcesCount")
|
81
|
+
def registered_resources_count(self) -> int:
|
82
|
+
"""
|
83
|
+
Registered databases against which the scan ran.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "registered_resources_count")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter
|
89
|
+
def timestamp(self) -> str:
|
90
|
+
"""
|
91
|
+
UTC timestamp when the scan completed.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "timestamp")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="vulnerabilitiesCount")
|
97
|
+
def vulnerabilities_count(self) -> int:
|
98
|
+
"""
|
99
|
+
Unresolved vulnerabilities that were found by the scan.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "vulnerabilities_count")
|
102
|
+
|
103
|
+
|
104
|
+
@pulumi.output_type
|
105
|
+
class GetVulnerabilityAggregatedVulnerabilityDataFilterResult(dict):
|
106
|
+
def __init__(__self__, *,
|
107
|
+
name: str,
|
108
|
+
values: Sequence[str],
|
109
|
+
regex: Optional[bool] = None):
|
110
|
+
pulumi.set(__self__, "name", name)
|
111
|
+
pulumi.set(__self__, "values", values)
|
112
|
+
if regex is not None:
|
113
|
+
pulumi.set(__self__, "regex", regex)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter
|
117
|
+
def name(self) -> str:
|
118
|
+
return pulumi.get(self, "name")
|
119
|
+
|
120
|
+
@property
|
121
|
+
@pulumi.getter
|
122
|
+
def values(self) -> Sequence[str]:
|
123
|
+
return pulumi.get(self, "values")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter
|
127
|
+
def regex(self) -> Optional[bool]:
|
128
|
+
return pulumi.get(self, "regex")
|
129
|
+
|
130
|
+
|
131
|
+
@pulumi.output_type
|
132
|
+
class GetVulnerabilityNotificationsFilterResult(dict):
|
133
|
+
def __init__(__self__, *,
|
134
|
+
name: str,
|
135
|
+
values: Sequence[str],
|
136
|
+
regex: Optional[bool] = None):
|
137
|
+
pulumi.set(__self__, "name", name)
|
138
|
+
pulumi.set(__self__, "values", values)
|
139
|
+
if regex is not None:
|
140
|
+
pulumi.set(__self__, "regex", regex)
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter
|
144
|
+
def name(self) -> str:
|
145
|
+
return pulumi.get(self, "name")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter
|
149
|
+
def values(self) -> Sequence[str]:
|
150
|
+
return pulumi.get(self, "values")
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter
|
154
|
+
def regex(self) -> Optional[bool]:
|
155
|
+
return pulumi.get(self, "regex")
|
156
|
+
|
157
|
+
|
158
|
+
@pulumi.output_type
|
159
|
+
class GetVulnerabilityNotificationsNotificationCollectionResult(dict):
|
160
|
+
def __init__(__self__, *,
|
161
|
+
items: Sequence['outputs.GetVulnerabilityNotificationsNotificationCollectionItemResult']):
|
162
|
+
"""
|
163
|
+
:param Sequence['GetVulnerabilityNotificationsNotificationCollectionItemArgs'] items: Items for notifications.
|
164
|
+
"""
|
165
|
+
pulumi.set(__self__, "items", items)
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter
|
169
|
+
def items(self) -> Sequence['outputs.GetVulnerabilityNotificationsNotificationCollectionItemResult']:
|
170
|
+
"""
|
171
|
+
Items for notifications.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "items")
|
174
|
+
|
175
|
+
|
176
|
+
@pulumi.output_type
|
177
|
+
class GetVulnerabilityNotificationsNotificationCollectionItemResult(dict):
|
178
|
+
def __init__(__self__, *,
|
179
|
+
id: str,
|
180
|
+
notification_text: str,
|
181
|
+
notification_type: str,
|
182
|
+
time_published: str):
|
183
|
+
"""
|
184
|
+
:param str id: Notification identifier.
|
185
|
+
:param str notification_text: Notification text
|
186
|
+
:param str notification_type: Notification type
|
187
|
+
:param str time_published: Published date
|
188
|
+
"""
|
189
|
+
pulumi.set(__self__, "id", id)
|
190
|
+
pulumi.set(__self__, "notification_text", notification_text)
|
191
|
+
pulumi.set(__self__, "notification_type", notification_type)
|
192
|
+
pulumi.set(__self__, "time_published", time_published)
|
193
|
+
|
194
|
+
@property
|
195
|
+
@pulumi.getter
|
196
|
+
def id(self) -> str:
|
197
|
+
"""
|
198
|
+
Notification identifier.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "id")
|
201
|
+
|
202
|
+
@property
|
203
|
+
@pulumi.getter(name="notificationText")
|
204
|
+
def notification_text(self) -> str:
|
205
|
+
"""
|
206
|
+
Notification text
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "notification_text")
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="notificationType")
|
212
|
+
def notification_type(self) -> str:
|
213
|
+
"""
|
214
|
+
Notification type
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "notification_type")
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="timePublished")
|
220
|
+
def time_published(self) -> str:
|
221
|
+
"""
|
222
|
+
Published date
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "time_published")
|
225
|
+
|
226
|
+
|
227
|
+
@pulumi.output_type
|
228
|
+
class GetVulnerabilityPatchRecommendationsSummaryResult(dict):
|
229
|
+
def __init__(__self__, *,
|
230
|
+
patch_available: int,
|
231
|
+
total: int,
|
232
|
+
up_to_date: int):
|
233
|
+
pulumi.set(__self__, "patch_available", patch_available)
|
234
|
+
pulumi.set(__self__, "total", total)
|
235
|
+
pulumi.set(__self__, "up_to_date", up_to_date)
|
236
|
+
|
237
|
+
@property
|
238
|
+
@pulumi.getter(name="patchAvailable")
|
239
|
+
def patch_available(self) -> int:
|
240
|
+
return pulumi.get(self, "patch_available")
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter
|
244
|
+
def total(self) -> int:
|
245
|
+
return pulumi.get(self, "total")
|
246
|
+
|
247
|
+
@property
|
248
|
+
@pulumi.getter(name="upToDate")
|
249
|
+
def up_to_date(self) -> int:
|
250
|
+
return pulumi.get(self, "up_to_date")
|
251
|
+
|
252
|
+
|
253
|
+
@pulumi.output_type
|
254
|
+
class GetVulnerabilityResourceResult(dict):
|
255
|
+
def __init__(__self__, *,
|
256
|
+
connector_id: str,
|
257
|
+
db_platform_type: str,
|
258
|
+
db_version: str,
|
259
|
+
deployment_type: str,
|
260
|
+
host_infos: Sequence['outputs.GetVulnerabilityResourceHostInfoResult'],
|
261
|
+
is_cluster_db: bool,
|
262
|
+
license_type: str,
|
263
|
+
resource_compartment_id: str,
|
264
|
+
resource_id: str,
|
265
|
+
resource_name: str,
|
266
|
+
resource_type: str):
|
267
|
+
"""
|
268
|
+
:param str connector_id: The connector Id of the resource.
|
269
|
+
:param str db_platform_type: The platform type of the resource.
|
270
|
+
:param str db_version: The version of the resource.
|
271
|
+
:param str deployment_type: The deployment type of the resource.
|
272
|
+
:param Sequence['GetVulnerabilityResourceHostInfoArgs'] host_infos: host info objects
|
273
|
+
:param bool is_cluster_db: True if it is a cluster db.
|
274
|
+
:param str license_type: The License Type of the resource.
|
275
|
+
:param str resource_compartment_id: The compartmentId of the resource.
|
276
|
+
:param str resource_id: The Id of the resource.
|
277
|
+
:param str resource_name: The name of the resource.
|
278
|
+
:param str resource_type: The type of the resource.
|
279
|
+
"""
|
280
|
+
pulumi.set(__self__, "connector_id", connector_id)
|
281
|
+
pulumi.set(__self__, "db_platform_type", db_platform_type)
|
282
|
+
pulumi.set(__self__, "db_version", db_version)
|
283
|
+
pulumi.set(__self__, "deployment_type", deployment_type)
|
284
|
+
pulumi.set(__self__, "host_infos", host_infos)
|
285
|
+
pulumi.set(__self__, "is_cluster_db", is_cluster_db)
|
286
|
+
pulumi.set(__self__, "license_type", license_type)
|
287
|
+
pulumi.set(__self__, "resource_compartment_id", resource_compartment_id)
|
288
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
289
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
290
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
291
|
+
|
292
|
+
@property
|
293
|
+
@pulumi.getter(name="connectorId")
|
294
|
+
def connector_id(self) -> str:
|
295
|
+
"""
|
296
|
+
The connector Id of the resource.
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "connector_id")
|
299
|
+
|
300
|
+
@property
|
301
|
+
@pulumi.getter(name="dbPlatformType")
|
302
|
+
def db_platform_type(self) -> str:
|
303
|
+
"""
|
304
|
+
The platform type of the resource.
|
305
|
+
"""
|
306
|
+
return pulumi.get(self, "db_platform_type")
|
307
|
+
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="dbVersion")
|
310
|
+
def db_version(self) -> str:
|
311
|
+
"""
|
312
|
+
The version of the resource.
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "db_version")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="deploymentType")
|
318
|
+
def deployment_type(self) -> str:
|
319
|
+
"""
|
320
|
+
The deployment type of the resource.
|
321
|
+
"""
|
322
|
+
return pulumi.get(self, "deployment_type")
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="hostInfos")
|
326
|
+
def host_infos(self) -> Sequence['outputs.GetVulnerabilityResourceHostInfoResult']:
|
327
|
+
"""
|
328
|
+
host info objects
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "host_infos")
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="isClusterDb")
|
334
|
+
def is_cluster_db(self) -> bool:
|
335
|
+
"""
|
336
|
+
True if it is a cluster db.
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "is_cluster_db")
|
339
|
+
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="licenseType")
|
342
|
+
def license_type(self) -> str:
|
343
|
+
"""
|
344
|
+
The License Type of the resource.
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "license_type")
|
347
|
+
|
348
|
+
@property
|
349
|
+
@pulumi.getter(name="resourceCompartmentId")
|
350
|
+
def resource_compartment_id(self) -> str:
|
351
|
+
"""
|
352
|
+
The compartmentId of the resource.
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "resource_compartment_id")
|
355
|
+
|
356
|
+
@property
|
357
|
+
@pulumi.getter(name="resourceId")
|
358
|
+
def resource_id(self) -> str:
|
359
|
+
"""
|
360
|
+
The Id of the resource.
|
361
|
+
"""
|
362
|
+
return pulumi.get(self, "resource_id")
|
363
|
+
|
364
|
+
@property
|
365
|
+
@pulumi.getter(name="resourceName")
|
366
|
+
def resource_name(self) -> str:
|
367
|
+
"""
|
368
|
+
The name of the resource.
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "resource_name")
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter(name="resourceType")
|
374
|
+
def resource_type(self) -> str:
|
375
|
+
"""
|
376
|
+
The type of the resource.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "resource_type")
|
379
|
+
|
380
|
+
|
381
|
+
@pulumi.output_type
|
382
|
+
class GetVulnerabilityResourceHostInfoResult(dict):
|
383
|
+
def __init__(__self__, *,
|
384
|
+
host_cores: int,
|
385
|
+
host_name: str):
|
386
|
+
"""
|
387
|
+
:param int host_cores: Number of host cores.
|
388
|
+
:param str host_name: The name of the host.
|
389
|
+
"""
|
390
|
+
pulumi.set(__self__, "host_cores", host_cores)
|
391
|
+
pulumi.set(__self__, "host_name", host_name)
|
392
|
+
|
393
|
+
@property
|
394
|
+
@pulumi.getter(name="hostCores")
|
395
|
+
def host_cores(self) -> int:
|
396
|
+
"""
|
397
|
+
Number of host cores.
|
398
|
+
"""
|
399
|
+
return pulumi.get(self, "host_cores")
|
400
|
+
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="hostName")
|
403
|
+
def host_name(self) -> str:
|
404
|
+
"""
|
405
|
+
The name of the host.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "host_name")
|
408
|
+
|
409
|
+
|
410
|
+
@pulumi.output_type
|
411
|
+
class GetVulnerabilityResourcesFilterResult(dict):
|
412
|
+
def __init__(__self__, *,
|
413
|
+
name: str,
|
414
|
+
values: Sequence[str],
|
415
|
+
regex: Optional[bool] = None):
|
416
|
+
"""
|
417
|
+
:param str name: The name of the resource.
|
418
|
+
"""
|
419
|
+
pulumi.set(__self__, "name", name)
|
420
|
+
pulumi.set(__self__, "values", values)
|
421
|
+
if regex is not None:
|
422
|
+
pulumi.set(__self__, "regex", regex)
|
423
|
+
|
424
|
+
@property
|
425
|
+
@pulumi.getter
|
426
|
+
def name(self) -> str:
|
427
|
+
"""
|
428
|
+
The name of the resource.
|
429
|
+
"""
|
430
|
+
return pulumi.get(self, "name")
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter
|
434
|
+
def values(self) -> Sequence[str]:
|
435
|
+
return pulumi.get(self, "values")
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter
|
439
|
+
def regex(self) -> Optional[bool]:
|
440
|
+
return pulumi.get(self, "regex")
|
441
|
+
|
442
|
+
|
443
|
+
@pulumi.output_type
|
444
|
+
class GetVulnerabilityResourcesSummaryResult(dict):
|
445
|
+
def __init__(__self__, *,
|
446
|
+
not_registered_resources_count: int,
|
447
|
+
registered_resources_count: int,
|
448
|
+
total_resources_count: int,
|
449
|
+
vulnerable_resources_count: int,
|
450
|
+
clean_resources_count: Optional[int] = None,
|
451
|
+
error_resources_count: Optional[int] = None):
|
452
|
+
pulumi.set(__self__, "not_registered_resources_count", not_registered_resources_count)
|
453
|
+
pulumi.set(__self__, "registered_resources_count", registered_resources_count)
|
454
|
+
pulumi.set(__self__, "total_resources_count", total_resources_count)
|
455
|
+
pulumi.set(__self__, "vulnerable_resources_count", vulnerable_resources_count)
|
456
|
+
if clean_resources_count is not None:
|
457
|
+
pulumi.set(__self__, "clean_resources_count", clean_resources_count)
|
458
|
+
if error_resources_count is not None:
|
459
|
+
pulumi.set(__self__, "error_resources_count", error_resources_count)
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="notRegisteredResourcesCount")
|
463
|
+
def not_registered_resources_count(self) -> int:
|
464
|
+
return pulumi.get(self, "not_registered_resources_count")
|
465
|
+
|
466
|
+
@property
|
467
|
+
@pulumi.getter(name="registeredResourcesCount")
|
468
|
+
def registered_resources_count(self) -> int:
|
469
|
+
return pulumi.get(self, "registered_resources_count")
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="totalResourcesCount")
|
473
|
+
def total_resources_count(self) -> int:
|
474
|
+
return pulumi.get(self, "total_resources_count")
|
475
|
+
|
476
|
+
@property
|
477
|
+
@pulumi.getter(name="vulnerableResourcesCount")
|
478
|
+
def vulnerable_resources_count(self) -> int:
|
479
|
+
return pulumi.get(self, "vulnerable_resources_count")
|
480
|
+
|
481
|
+
@property
|
482
|
+
@pulumi.getter(name="cleanResourcesCount")
|
483
|
+
def clean_resources_count(self) -> Optional[int]:
|
484
|
+
return pulumi.get(self, "clean_resources_count")
|
485
|
+
|
486
|
+
@property
|
487
|
+
@pulumi.getter(name="errorResourcesCount")
|
488
|
+
def error_resources_count(self) -> Optional[int]:
|
489
|
+
return pulumi.get(self, "error_resources_count")
|
490
|
+
|
491
|
+
|
492
|
+
@pulumi.output_type
|
493
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionResult(dict):
|
494
|
+
def __init__(__self__, *,
|
495
|
+
items: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemResult']):
|
496
|
+
"""
|
497
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemArgs'] items: Collection of assessed resources
|
498
|
+
"""
|
499
|
+
pulumi.set(__self__, "items", items)
|
500
|
+
|
501
|
+
@property
|
502
|
+
@pulumi.getter
|
503
|
+
def items(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemResult']:
|
504
|
+
"""
|
505
|
+
Collection of assessed resources
|
506
|
+
"""
|
507
|
+
return pulumi.get(self, "items")
|
508
|
+
|
509
|
+
|
510
|
+
@pulumi.output_type
|
511
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemResult(dict):
|
512
|
+
def __init__(__self__, *,
|
513
|
+
child_pdbs: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdbResult'],
|
514
|
+
id: str,
|
515
|
+
image_id: str,
|
516
|
+
metric_errors: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricErrorResult'],
|
517
|
+
name: str,
|
518
|
+
patch_recommendations_details: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetailResult'],
|
519
|
+
patch_recommendations_summaries: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummaryResult'],
|
520
|
+
platform: str,
|
521
|
+
release: str,
|
522
|
+
subscribed_image: str,
|
523
|
+
time_config_collected: str,
|
524
|
+
time_scan_ended: str,
|
525
|
+
version: str,
|
526
|
+
vulnerabilities_summaries: Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummaryResult']):
|
527
|
+
"""
|
528
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdbArgs'] child_pdbs: PDBs for a CDB.
|
529
|
+
:param str id: The resource ID for this resource.
|
530
|
+
:param str image_id: Identifier for the resource is subscribed to.
|
531
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricErrorArgs'] metric_errors: Metric errors.
|
532
|
+
:param str name: The name of the resource.
|
533
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetailArgs'] patch_recommendations_details: List of the patch recommendations for databases
|
534
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummaryArgs'] patch_recommendations_summaries: Summary of the patch recommendations for databases.
|
535
|
+
:param str platform: A string representing the platform of the resource.
|
536
|
+
:param str release: A string representing the release of the resource.
|
537
|
+
:param str subscribed_image: Image the resource is subscribed to.
|
538
|
+
:param str time_config_collected: Time when the latest configuration collection happened.
|
539
|
+
:param str time_scan_ended: Time when the latest scan happened for the resource.
|
540
|
+
:param str version: A string representing the version of the resource.
|
541
|
+
:param Sequence['GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummaryArgs'] vulnerabilities_summaries: Summary of the resources that are registered and may or may not have vulnerabilities.
|
542
|
+
"""
|
543
|
+
pulumi.set(__self__, "child_pdbs", child_pdbs)
|
544
|
+
pulumi.set(__self__, "id", id)
|
545
|
+
pulumi.set(__self__, "image_id", image_id)
|
546
|
+
pulumi.set(__self__, "metric_errors", metric_errors)
|
547
|
+
pulumi.set(__self__, "name", name)
|
548
|
+
pulumi.set(__self__, "patch_recommendations_details", patch_recommendations_details)
|
549
|
+
pulumi.set(__self__, "patch_recommendations_summaries", patch_recommendations_summaries)
|
550
|
+
pulumi.set(__self__, "platform", platform)
|
551
|
+
pulumi.set(__self__, "release", release)
|
552
|
+
pulumi.set(__self__, "subscribed_image", subscribed_image)
|
553
|
+
pulumi.set(__self__, "time_config_collected", time_config_collected)
|
554
|
+
pulumi.set(__self__, "time_scan_ended", time_scan_ended)
|
555
|
+
pulumi.set(__self__, "version", version)
|
556
|
+
pulumi.set(__self__, "vulnerabilities_summaries", vulnerabilities_summaries)
|
557
|
+
|
558
|
+
@property
|
559
|
+
@pulumi.getter(name="childPdbs")
|
560
|
+
def child_pdbs(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdbResult']:
|
561
|
+
"""
|
562
|
+
PDBs for a CDB.
|
563
|
+
"""
|
564
|
+
return pulumi.get(self, "child_pdbs")
|
565
|
+
|
566
|
+
@property
|
567
|
+
@pulumi.getter
|
568
|
+
def id(self) -> str:
|
569
|
+
"""
|
570
|
+
The resource ID for this resource.
|
571
|
+
"""
|
572
|
+
return pulumi.get(self, "id")
|
573
|
+
|
574
|
+
@property
|
575
|
+
@pulumi.getter(name="imageId")
|
576
|
+
def image_id(self) -> str:
|
577
|
+
"""
|
578
|
+
Identifier for the resource is subscribed to.
|
579
|
+
"""
|
580
|
+
return pulumi.get(self, "image_id")
|
581
|
+
|
582
|
+
@property
|
583
|
+
@pulumi.getter(name="metricErrors")
|
584
|
+
def metric_errors(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricErrorResult']:
|
585
|
+
"""
|
586
|
+
Metric errors.
|
587
|
+
"""
|
588
|
+
return pulumi.get(self, "metric_errors")
|
589
|
+
|
590
|
+
@property
|
591
|
+
@pulumi.getter
|
592
|
+
def name(self) -> str:
|
593
|
+
"""
|
594
|
+
The name of the resource.
|
595
|
+
"""
|
596
|
+
return pulumi.get(self, "name")
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter(name="patchRecommendationsDetails")
|
600
|
+
def patch_recommendations_details(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetailResult']:
|
601
|
+
"""
|
602
|
+
List of the patch recommendations for databases
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "patch_recommendations_details")
|
605
|
+
|
606
|
+
@property
|
607
|
+
@pulumi.getter(name="patchRecommendationsSummaries")
|
608
|
+
def patch_recommendations_summaries(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummaryResult']:
|
609
|
+
"""
|
610
|
+
Summary of the patch recommendations for databases.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "patch_recommendations_summaries")
|
613
|
+
|
614
|
+
@property
|
615
|
+
@pulumi.getter
|
616
|
+
def platform(self) -> str:
|
617
|
+
"""
|
618
|
+
A string representing the platform of the resource.
|
619
|
+
"""
|
620
|
+
return pulumi.get(self, "platform")
|
621
|
+
|
622
|
+
@property
|
623
|
+
@pulumi.getter
|
624
|
+
def release(self) -> str:
|
625
|
+
"""
|
626
|
+
A string representing the release of the resource.
|
627
|
+
"""
|
628
|
+
return pulumi.get(self, "release")
|
629
|
+
|
630
|
+
@property
|
631
|
+
@pulumi.getter(name="subscribedImage")
|
632
|
+
def subscribed_image(self) -> str:
|
633
|
+
"""
|
634
|
+
Image the resource is subscribed to.
|
635
|
+
"""
|
636
|
+
return pulumi.get(self, "subscribed_image")
|
637
|
+
|
638
|
+
@property
|
639
|
+
@pulumi.getter(name="timeConfigCollected")
|
640
|
+
def time_config_collected(self) -> str:
|
641
|
+
"""
|
642
|
+
Time when the latest configuration collection happened.
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "time_config_collected")
|
645
|
+
|
646
|
+
@property
|
647
|
+
@pulumi.getter(name="timeScanEnded")
|
648
|
+
def time_scan_ended(self) -> str:
|
649
|
+
"""
|
650
|
+
Time when the latest scan happened for the resource.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "time_scan_ended")
|
653
|
+
|
654
|
+
@property
|
655
|
+
@pulumi.getter
|
656
|
+
def version(self) -> str:
|
657
|
+
"""
|
658
|
+
A string representing the version of the resource.
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "version")
|
661
|
+
|
662
|
+
@property
|
663
|
+
@pulumi.getter(name="vulnerabilitiesSummaries")
|
664
|
+
def vulnerabilities_summaries(self) -> Sequence['outputs.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummaryResult']:
|
665
|
+
"""
|
666
|
+
Summary of the resources that are registered and may or may not have vulnerabilities.
|
667
|
+
"""
|
668
|
+
return pulumi.get(self, "vulnerabilities_summaries")
|
669
|
+
|
670
|
+
|
671
|
+
@pulumi.output_type
|
672
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdbResult(dict):
|
673
|
+
def __init__(__self__, *,
|
674
|
+
last_changed_by: str,
|
675
|
+
name: str,
|
676
|
+
open_mode: str,
|
677
|
+
pdb_id: str,
|
678
|
+
recovery_status: str,
|
679
|
+
restricted: str):
|
680
|
+
"""
|
681
|
+
:param str last_changed_by: Last changed by
|
682
|
+
:param str name: The name of the resource.
|
683
|
+
:param str open_mode: Open mode
|
684
|
+
:param str pdb_id: Identifier for the pluggable database.
|
685
|
+
:param str recovery_status: Recovery status
|
686
|
+
:param str restricted: Restricted
|
687
|
+
"""
|
688
|
+
pulumi.set(__self__, "last_changed_by", last_changed_by)
|
689
|
+
pulumi.set(__self__, "name", name)
|
690
|
+
pulumi.set(__self__, "open_mode", open_mode)
|
691
|
+
pulumi.set(__self__, "pdb_id", pdb_id)
|
692
|
+
pulumi.set(__self__, "recovery_status", recovery_status)
|
693
|
+
pulumi.set(__self__, "restricted", restricted)
|
694
|
+
|
695
|
+
@property
|
696
|
+
@pulumi.getter(name="lastChangedBy")
|
697
|
+
def last_changed_by(self) -> str:
|
698
|
+
"""
|
699
|
+
Last changed by
|
700
|
+
"""
|
701
|
+
return pulumi.get(self, "last_changed_by")
|
702
|
+
|
703
|
+
@property
|
704
|
+
@pulumi.getter
|
705
|
+
def name(self) -> str:
|
706
|
+
"""
|
707
|
+
The name of the resource.
|
708
|
+
"""
|
709
|
+
return pulumi.get(self, "name")
|
710
|
+
|
711
|
+
@property
|
712
|
+
@pulumi.getter(name="openMode")
|
713
|
+
def open_mode(self) -> str:
|
714
|
+
"""
|
715
|
+
Open mode
|
716
|
+
"""
|
717
|
+
return pulumi.get(self, "open_mode")
|
718
|
+
|
719
|
+
@property
|
720
|
+
@pulumi.getter(name="pdbId")
|
721
|
+
def pdb_id(self) -> str:
|
722
|
+
"""
|
723
|
+
Identifier for the pluggable database.
|
724
|
+
"""
|
725
|
+
return pulumi.get(self, "pdb_id")
|
726
|
+
|
727
|
+
@property
|
728
|
+
@pulumi.getter(name="recoveryStatus")
|
729
|
+
def recovery_status(self) -> str:
|
730
|
+
"""
|
731
|
+
Recovery status
|
732
|
+
"""
|
733
|
+
return pulumi.get(self, "recovery_status")
|
734
|
+
|
735
|
+
@property
|
736
|
+
@pulumi.getter
|
737
|
+
def restricted(self) -> str:
|
738
|
+
"""
|
739
|
+
Restricted
|
740
|
+
"""
|
741
|
+
return pulumi.get(self, "restricted")
|
742
|
+
|
743
|
+
|
744
|
+
@pulumi.output_type
|
745
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricErrorResult(dict):
|
746
|
+
def __init__(__self__, *,
|
747
|
+
content_type: str,
|
748
|
+
data: str,
|
749
|
+
error_type: str,
|
750
|
+
level: str,
|
751
|
+
subject: str,
|
752
|
+
time_generated: str):
|
753
|
+
"""
|
754
|
+
:param str content_type: Content type
|
755
|
+
:param str data: Data
|
756
|
+
:param str error_type: Error type
|
757
|
+
:param str level: Level
|
758
|
+
:param str subject: Subject
|
759
|
+
:param str time_generated: Time the error record was generated
|
760
|
+
"""
|
761
|
+
pulumi.set(__self__, "content_type", content_type)
|
762
|
+
pulumi.set(__self__, "data", data)
|
763
|
+
pulumi.set(__self__, "error_type", error_type)
|
764
|
+
pulumi.set(__self__, "level", level)
|
765
|
+
pulumi.set(__self__, "subject", subject)
|
766
|
+
pulumi.set(__self__, "time_generated", time_generated)
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="contentType")
|
770
|
+
def content_type(self) -> str:
|
771
|
+
"""
|
772
|
+
Content type
|
773
|
+
"""
|
774
|
+
return pulumi.get(self, "content_type")
|
775
|
+
|
776
|
+
@property
|
777
|
+
@pulumi.getter
|
778
|
+
def data(self) -> str:
|
779
|
+
"""
|
780
|
+
Data
|
781
|
+
"""
|
782
|
+
return pulumi.get(self, "data")
|
783
|
+
|
784
|
+
@property
|
785
|
+
@pulumi.getter(name="errorType")
|
786
|
+
def error_type(self) -> str:
|
787
|
+
"""
|
788
|
+
Error type
|
789
|
+
"""
|
790
|
+
return pulumi.get(self, "error_type")
|
791
|
+
|
792
|
+
@property
|
793
|
+
@pulumi.getter
|
794
|
+
def level(self) -> str:
|
795
|
+
"""
|
796
|
+
Level
|
797
|
+
"""
|
798
|
+
return pulumi.get(self, "level")
|
799
|
+
|
800
|
+
@property
|
801
|
+
@pulumi.getter
|
802
|
+
def subject(self) -> str:
|
803
|
+
"""
|
804
|
+
Subject
|
805
|
+
"""
|
806
|
+
return pulumi.get(self, "subject")
|
807
|
+
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="timeGenerated")
|
810
|
+
def time_generated(self) -> str:
|
811
|
+
"""
|
812
|
+
Time the error record was generated
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "time_generated")
|
815
|
+
|
816
|
+
|
817
|
+
@pulumi.output_type
|
818
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetailResult(dict):
|
819
|
+
def __init__(__self__, *,
|
820
|
+
abstract_text: str,
|
821
|
+
classification_name: str,
|
822
|
+
has_fix_for_cve: bool,
|
823
|
+
patch_name: str,
|
824
|
+
time_evaluated: str,
|
825
|
+
time_released: str):
|
826
|
+
"""
|
827
|
+
:param str abstract_text: Description of the patch recommendation.
|
828
|
+
:param str classification_name: Classification of the patch recommendation.
|
829
|
+
:param bool has_fix_for_cve: If the patch has a fix for a CVE.
|
830
|
+
:param str patch_name: Name of the patch recommendation.
|
831
|
+
:param str time_evaluated: Evaluation date for the patch recommendation.
|
832
|
+
:param str time_released: Release date for the patch.
|
833
|
+
"""
|
834
|
+
pulumi.set(__self__, "abstract_text", abstract_text)
|
835
|
+
pulumi.set(__self__, "classification_name", classification_name)
|
836
|
+
pulumi.set(__self__, "has_fix_for_cve", has_fix_for_cve)
|
837
|
+
pulumi.set(__self__, "patch_name", patch_name)
|
838
|
+
pulumi.set(__self__, "time_evaluated", time_evaluated)
|
839
|
+
pulumi.set(__self__, "time_released", time_released)
|
840
|
+
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="abstractText")
|
843
|
+
def abstract_text(self) -> str:
|
844
|
+
"""
|
845
|
+
Description of the patch recommendation.
|
846
|
+
"""
|
847
|
+
return pulumi.get(self, "abstract_text")
|
848
|
+
|
849
|
+
@property
|
850
|
+
@pulumi.getter(name="classificationName")
|
851
|
+
def classification_name(self) -> str:
|
852
|
+
"""
|
853
|
+
Classification of the patch recommendation.
|
854
|
+
"""
|
855
|
+
return pulumi.get(self, "classification_name")
|
856
|
+
|
857
|
+
@property
|
858
|
+
@pulumi.getter(name="hasFixForCve")
|
859
|
+
def has_fix_for_cve(self) -> bool:
|
860
|
+
"""
|
861
|
+
If the patch has a fix for a CVE.
|
862
|
+
"""
|
863
|
+
return pulumi.get(self, "has_fix_for_cve")
|
864
|
+
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="patchName")
|
867
|
+
def patch_name(self) -> str:
|
868
|
+
"""
|
869
|
+
Name of the patch recommendation.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "patch_name")
|
872
|
+
|
873
|
+
@property
|
874
|
+
@pulumi.getter(name="timeEvaluated")
|
875
|
+
def time_evaluated(self) -> str:
|
876
|
+
"""
|
877
|
+
Evaluation date for the patch recommendation.
|
878
|
+
"""
|
879
|
+
return pulumi.get(self, "time_evaluated")
|
880
|
+
|
881
|
+
@property
|
882
|
+
@pulumi.getter(name="timeReleased")
|
883
|
+
def time_released(self) -> str:
|
884
|
+
"""
|
885
|
+
Release date for the patch.
|
886
|
+
"""
|
887
|
+
return pulumi.get(self, "time_released")
|
888
|
+
|
889
|
+
|
890
|
+
@pulumi.output_type
|
891
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummaryResult(dict):
|
892
|
+
def __init__(__self__, *,
|
893
|
+
patch_available: int,
|
894
|
+
total: int,
|
895
|
+
up_to_date: int):
|
896
|
+
pulumi.set(__self__, "patch_available", patch_available)
|
897
|
+
pulumi.set(__self__, "total", total)
|
898
|
+
pulumi.set(__self__, "up_to_date", up_to_date)
|
899
|
+
|
900
|
+
@property
|
901
|
+
@pulumi.getter(name="patchAvailable")
|
902
|
+
def patch_available(self) -> int:
|
903
|
+
return pulumi.get(self, "patch_available")
|
904
|
+
|
905
|
+
@property
|
906
|
+
@pulumi.getter
|
907
|
+
def total(self) -> int:
|
908
|
+
return pulumi.get(self, "total")
|
909
|
+
|
910
|
+
@property
|
911
|
+
@pulumi.getter(name="upToDate")
|
912
|
+
def up_to_date(self) -> int:
|
913
|
+
return pulumi.get(self, "up_to_date")
|
914
|
+
|
915
|
+
|
916
|
+
@pulumi.output_type
|
917
|
+
class GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummaryResult(dict):
|
918
|
+
def __init__(__self__, *,
|
919
|
+
critical: int,
|
920
|
+
high: int,
|
921
|
+
info: int,
|
922
|
+
low: int,
|
923
|
+
medium: int,
|
924
|
+
total: int):
|
925
|
+
pulumi.set(__self__, "critical", critical)
|
926
|
+
pulumi.set(__self__, "high", high)
|
927
|
+
pulumi.set(__self__, "info", info)
|
928
|
+
pulumi.set(__self__, "low", low)
|
929
|
+
pulumi.set(__self__, "medium", medium)
|
930
|
+
pulumi.set(__self__, "total", total)
|
931
|
+
|
932
|
+
@property
|
933
|
+
@pulumi.getter
|
934
|
+
def critical(self) -> int:
|
935
|
+
return pulumi.get(self, "critical")
|
936
|
+
|
937
|
+
@property
|
938
|
+
@pulumi.getter
|
939
|
+
def high(self) -> int:
|
940
|
+
return pulumi.get(self, "high")
|
941
|
+
|
942
|
+
@property
|
943
|
+
@pulumi.getter
|
944
|
+
def info(self) -> int:
|
945
|
+
return pulumi.get(self, "info")
|
946
|
+
|
947
|
+
@property
|
948
|
+
@pulumi.getter
|
949
|
+
def low(self) -> int:
|
950
|
+
return pulumi.get(self, "low")
|
951
|
+
|
952
|
+
@property
|
953
|
+
@pulumi.getter
|
954
|
+
def medium(self) -> int:
|
955
|
+
return pulumi.get(self, "medium")
|
956
|
+
|
957
|
+
@property
|
958
|
+
@pulumi.getter
|
959
|
+
def total(self) -> int:
|
960
|
+
return pulumi.get(self, "total")
|
961
|
+
|
962
|
+
|
963
|
+
@pulumi.output_type
|
964
|
+
class GetVulnerabilityScansFilterResult(dict):
|
965
|
+
def __init__(__self__, *,
|
966
|
+
name: str,
|
967
|
+
values: Sequence[str],
|
968
|
+
regex: Optional[bool] = None):
|
969
|
+
pulumi.set(__self__, "name", name)
|
970
|
+
pulumi.set(__self__, "values", values)
|
971
|
+
if regex is not None:
|
972
|
+
pulumi.set(__self__, "regex", regex)
|
973
|
+
|
974
|
+
@property
|
975
|
+
@pulumi.getter
|
976
|
+
def name(self) -> str:
|
977
|
+
return pulumi.get(self, "name")
|
978
|
+
|
979
|
+
@property
|
980
|
+
@pulumi.getter
|
981
|
+
def values(self) -> Sequence[str]:
|
982
|
+
return pulumi.get(self, "values")
|
983
|
+
|
984
|
+
@property
|
985
|
+
@pulumi.getter
|
986
|
+
def regex(self) -> Optional[bool]:
|
987
|
+
return pulumi.get(self, "regex")
|
988
|
+
|
989
|
+
|
990
|
+
@pulumi.output_type
|
991
|
+
class GetVulnerabilityScansVulnerabilityScanCollectionResult(dict):
|
992
|
+
def __init__(__self__, *,
|
993
|
+
items: Sequence['outputs.GetVulnerabilityScansVulnerabilityScanCollectionItemResult']):
|
994
|
+
pulumi.set(__self__, "items", items)
|
995
|
+
|
996
|
+
@property
|
997
|
+
@pulumi.getter
|
998
|
+
def items(self) -> Sequence['outputs.GetVulnerabilityScansVulnerabilityScanCollectionItemResult']:
|
999
|
+
return pulumi.get(self, "items")
|
1000
|
+
|
1001
|
+
|
1002
|
+
@pulumi.output_type
|
1003
|
+
class GetVulnerabilityScansVulnerabilityScanCollectionItemResult(dict):
|
1004
|
+
def __init__(__self__, *,
|
1005
|
+
compartment_id: str,
|
1006
|
+
defined_tags: Mapping[str, str],
|
1007
|
+
display_name: str,
|
1008
|
+
freeform_tags: Mapping[str, str],
|
1009
|
+
id: str,
|
1010
|
+
state: str,
|
1011
|
+
system_tags: Mapping[str, str],
|
1012
|
+
time_created: str,
|
1013
|
+
time_ended: str,
|
1014
|
+
vulnerability_scan_message: str,
|
1015
|
+
vulnerability_scan_status: str,
|
1016
|
+
vulnerability_scan_type: str):
|
1017
|
+
"""
|
1018
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
1019
|
+
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1020
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
1021
|
+
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1022
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VulnerabilityScan.
|
1023
|
+
:param str state: The current state of the VulnerabilityScan.
|
1024
|
+
:param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1025
|
+
:param str time_created: The date and time the VulnerabilityScan was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1026
|
+
:param str time_ended: The date and time the VulnerabilityScan was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1027
|
+
:param str vulnerability_scan_message: The message of the vulnerability scan status.
|
1028
|
+
:param str vulnerability_scan_status: Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
|
1029
|
+
:param str vulnerability_scan_type: The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
|
1030
|
+
"""
|
1031
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1032
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
1033
|
+
pulumi.set(__self__, "display_name", display_name)
|
1034
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1035
|
+
pulumi.set(__self__, "id", id)
|
1036
|
+
pulumi.set(__self__, "state", state)
|
1037
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
1038
|
+
pulumi.set(__self__, "time_created", time_created)
|
1039
|
+
pulumi.set(__self__, "time_ended", time_ended)
|
1040
|
+
pulumi.set(__self__, "vulnerability_scan_message", vulnerability_scan_message)
|
1041
|
+
pulumi.set(__self__, "vulnerability_scan_status", vulnerability_scan_status)
|
1042
|
+
pulumi.set(__self__, "vulnerability_scan_type", vulnerability_scan_type)
|
1043
|
+
|
1044
|
+
@property
|
1045
|
+
@pulumi.getter(name="compartmentId")
|
1046
|
+
def compartment_id(self) -> str:
|
1047
|
+
"""
|
1048
|
+
The ID of the compartment in which to list resources.
|
1049
|
+
"""
|
1050
|
+
return pulumi.get(self, "compartment_id")
|
1051
|
+
|
1052
|
+
@property
|
1053
|
+
@pulumi.getter(name="definedTags")
|
1054
|
+
def defined_tags(self) -> Mapping[str, str]:
|
1055
|
+
"""
|
1056
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1057
|
+
"""
|
1058
|
+
return pulumi.get(self, "defined_tags")
|
1059
|
+
|
1060
|
+
@property
|
1061
|
+
@pulumi.getter(name="displayName")
|
1062
|
+
def display_name(self) -> str:
|
1063
|
+
"""
|
1064
|
+
A filter to return only resources that match the entire display name given.
|
1065
|
+
"""
|
1066
|
+
return pulumi.get(self, "display_name")
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="freeformTags")
|
1070
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
1071
|
+
"""
|
1072
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "freeform_tags")
|
1075
|
+
|
1076
|
+
@property
|
1077
|
+
@pulumi.getter
|
1078
|
+
def id(self) -> str:
|
1079
|
+
"""
|
1080
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VulnerabilityScan.
|
1081
|
+
"""
|
1082
|
+
return pulumi.get(self, "id")
|
1083
|
+
|
1084
|
+
@property
|
1085
|
+
@pulumi.getter
|
1086
|
+
def state(self) -> str:
|
1087
|
+
"""
|
1088
|
+
The current state of the VulnerabilityScan.
|
1089
|
+
"""
|
1090
|
+
return pulumi.get(self, "state")
|
1091
|
+
|
1092
|
+
@property
|
1093
|
+
@pulumi.getter(name="systemTags")
|
1094
|
+
def system_tags(self) -> Mapping[str, str]:
|
1095
|
+
"""
|
1096
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1097
|
+
"""
|
1098
|
+
return pulumi.get(self, "system_tags")
|
1099
|
+
|
1100
|
+
@property
|
1101
|
+
@pulumi.getter(name="timeCreated")
|
1102
|
+
def time_created(self) -> str:
|
1103
|
+
"""
|
1104
|
+
The date and time the VulnerabilityScan was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1105
|
+
"""
|
1106
|
+
return pulumi.get(self, "time_created")
|
1107
|
+
|
1108
|
+
@property
|
1109
|
+
@pulumi.getter(name="timeEnded")
|
1110
|
+
def time_ended(self) -> str:
|
1111
|
+
"""
|
1112
|
+
The date and time the VulnerabilityScan was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1113
|
+
"""
|
1114
|
+
return pulumi.get(self, "time_ended")
|
1115
|
+
|
1116
|
+
@property
|
1117
|
+
@pulumi.getter(name="vulnerabilityScanMessage")
|
1118
|
+
def vulnerability_scan_message(self) -> str:
|
1119
|
+
"""
|
1120
|
+
The message of the vulnerability scan status.
|
1121
|
+
"""
|
1122
|
+
return pulumi.get(self, "vulnerability_scan_message")
|
1123
|
+
|
1124
|
+
@property
|
1125
|
+
@pulumi.getter(name="vulnerabilityScanStatus")
|
1126
|
+
def vulnerability_scan_status(self) -> str:
|
1127
|
+
"""
|
1128
|
+
Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
|
1129
|
+
"""
|
1130
|
+
return pulumi.get(self, "vulnerability_scan_status")
|
1131
|
+
|
1132
|
+
@property
|
1133
|
+
@pulumi.getter(name="vulnerabilityScanType")
|
1134
|
+
def vulnerability_scan_type(self) -> str:
|
1135
|
+
"""
|
1136
|
+
The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
|
1137
|
+
"""
|
1138
|
+
return pulumi.get(self, "vulnerability_scan_type")
|
1139
|
+
|
1140
|
+
|
1141
|
+
@pulumi.output_type
|
1142
|
+
class GetVulnerabilityVulnerabilitiesFilterResult(dict):
|
1143
|
+
def __init__(__self__, *,
|
1144
|
+
name: str,
|
1145
|
+
values: Sequence[str],
|
1146
|
+
regex: Optional[bool] = None):
|
1147
|
+
pulumi.set(__self__, "name", name)
|
1148
|
+
pulumi.set(__self__, "values", values)
|
1149
|
+
if regex is not None:
|
1150
|
+
pulumi.set(__self__, "regex", regex)
|
1151
|
+
|
1152
|
+
@property
|
1153
|
+
@pulumi.getter
|
1154
|
+
def name(self) -> str:
|
1155
|
+
return pulumi.get(self, "name")
|
1156
|
+
|
1157
|
+
@property
|
1158
|
+
@pulumi.getter
|
1159
|
+
def values(self) -> Sequence[str]:
|
1160
|
+
return pulumi.get(self, "values")
|
1161
|
+
|
1162
|
+
@property
|
1163
|
+
@pulumi.getter
|
1164
|
+
def regex(self) -> Optional[bool]:
|
1165
|
+
return pulumi.get(self, "regex")
|
1166
|
+
|
1167
|
+
|
1168
|
+
@pulumi.output_type
|
1169
|
+
class GetVulnerabilityVulnerabilitiesSummaryResult(dict):
|
1170
|
+
def __init__(__self__, *,
|
1171
|
+
critical: int,
|
1172
|
+
high: int,
|
1173
|
+
info: int,
|
1174
|
+
low: int,
|
1175
|
+
medium: int,
|
1176
|
+
total: int):
|
1177
|
+
pulumi.set(__self__, "critical", critical)
|
1178
|
+
pulumi.set(__self__, "high", high)
|
1179
|
+
pulumi.set(__self__, "info", info)
|
1180
|
+
pulumi.set(__self__, "low", low)
|
1181
|
+
pulumi.set(__self__, "medium", medium)
|
1182
|
+
pulumi.set(__self__, "total", total)
|
1183
|
+
|
1184
|
+
@property
|
1185
|
+
@pulumi.getter
|
1186
|
+
def critical(self) -> int:
|
1187
|
+
return pulumi.get(self, "critical")
|
1188
|
+
|
1189
|
+
@property
|
1190
|
+
@pulumi.getter
|
1191
|
+
def high(self) -> int:
|
1192
|
+
return pulumi.get(self, "high")
|
1193
|
+
|
1194
|
+
@property
|
1195
|
+
@pulumi.getter
|
1196
|
+
def info(self) -> int:
|
1197
|
+
return pulumi.get(self, "info")
|
1198
|
+
|
1199
|
+
@property
|
1200
|
+
@pulumi.getter
|
1201
|
+
def low(self) -> int:
|
1202
|
+
return pulumi.get(self, "low")
|
1203
|
+
|
1204
|
+
@property
|
1205
|
+
@pulumi.getter
|
1206
|
+
def medium(self) -> int:
|
1207
|
+
return pulumi.get(self, "medium")
|
1208
|
+
|
1209
|
+
@property
|
1210
|
+
@pulumi.getter
|
1211
|
+
def total(self) -> int:
|
1212
|
+
return pulumi.get(self, "total")
|
1213
|
+
|
1214
|
+
|
1215
|
+
@pulumi.output_type
|
1216
|
+
class GetVulnerabilityVulnerabilitiesVulnerabilityCollectionResult(dict):
|
1217
|
+
def __init__(__self__, *,
|
1218
|
+
items: Sequence['outputs.GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemResult']):
|
1219
|
+
"""
|
1220
|
+
:param Sequence['GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemArgs'] items: Collection of vulnerability summary items.
|
1221
|
+
"""
|
1222
|
+
pulumi.set(__self__, "items", items)
|
1223
|
+
|
1224
|
+
@property
|
1225
|
+
@pulumi.getter
|
1226
|
+
def items(self) -> Sequence['outputs.GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemResult']:
|
1227
|
+
"""
|
1228
|
+
Collection of vulnerability summary items.
|
1229
|
+
"""
|
1230
|
+
return pulumi.get(self, "items")
|
1231
|
+
|
1232
|
+
|
1233
|
+
@pulumi.output_type
|
1234
|
+
class GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemResult(dict):
|
1235
|
+
def __init__(__self__, *,
|
1236
|
+
cve_id: str,
|
1237
|
+
description: str,
|
1238
|
+
risk_level: str,
|
1239
|
+
score: str,
|
1240
|
+
vulnerable_resources_count: int):
|
1241
|
+
"""
|
1242
|
+
:param str cve_id: CVE vulnerability ID
|
1243
|
+
:param str description: Vulnerability description
|
1244
|
+
:param str risk_level: Risk level enumeration
|
1245
|
+
:param str score: Vulnerability score
|
1246
|
+
:param int vulnerable_resources_count: Number of vulnerable resources
|
1247
|
+
"""
|
1248
|
+
pulumi.set(__self__, "cve_id", cve_id)
|
1249
|
+
pulumi.set(__self__, "description", description)
|
1250
|
+
pulumi.set(__self__, "risk_level", risk_level)
|
1251
|
+
pulumi.set(__self__, "score", score)
|
1252
|
+
pulumi.set(__self__, "vulnerable_resources_count", vulnerable_resources_count)
|
1253
|
+
|
1254
|
+
@property
|
1255
|
+
@pulumi.getter(name="cveId")
|
1256
|
+
def cve_id(self) -> str:
|
1257
|
+
"""
|
1258
|
+
CVE vulnerability ID
|
1259
|
+
"""
|
1260
|
+
return pulumi.get(self, "cve_id")
|
1261
|
+
|
1262
|
+
@property
|
1263
|
+
@pulumi.getter
|
1264
|
+
def description(self) -> str:
|
1265
|
+
"""
|
1266
|
+
Vulnerability description
|
1267
|
+
"""
|
1268
|
+
return pulumi.get(self, "description")
|
1269
|
+
|
1270
|
+
@property
|
1271
|
+
@pulumi.getter(name="riskLevel")
|
1272
|
+
def risk_level(self) -> str:
|
1273
|
+
"""
|
1274
|
+
Risk level enumeration
|
1275
|
+
"""
|
1276
|
+
return pulumi.get(self, "risk_level")
|
1277
|
+
|
1278
|
+
@property
|
1279
|
+
@pulumi.getter
|
1280
|
+
def score(self) -> str:
|
1281
|
+
"""
|
1282
|
+
Vulnerability score
|
1283
|
+
"""
|
1284
|
+
return pulumi.get(self, "score")
|
1285
|
+
|
1286
|
+
@property
|
1287
|
+
@pulumi.getter(name="vulnerableResourcesCount")
|
1288
|
+
def vulnerable_resources_count(self) -> int:
|
1289
|
+
"""
|
1290
|
+
Number of vulnerable resources
|
1291
|
+
"""
|
1292
|
+
return pulumi.get(self, "vulnerable_resources_count")
|
1293
|
+
|
1294
|
+
|