pulumi-oci 2.32.0a1745304290__py3-none-any.whl → 2.32.0a1745468539__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/core/get_volume.py +15 -1
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +0 -750
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/dblm/__init__.py +2 -0
- pulumi_oci/dblm/_inputs.py +49 -0
- pulumi_oci/dblm/get_patch_management.py +291 -0
- pulumi_oci/dblm/get_patch_management_databases.py +306 -0
- pulumi_oci/dblm/outputs.py +898 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/visualbuilder/_inputs.py +119 -13
- pulumi_oci/visualbuilder/get_vb_instance.py +1 -1
- pulumi_oci/visualbuilder/outputs.py +201 -12
- pulumi_oci/visualbuilder/vb_instance.py +0 -70
- {pulumi_oci-2.32.0a1745304290.dist-info → pulumi_oci-2.32.0a1745468539.dist-info}/METADATA +1 -1
- {pulumi_oci-2.32.0a1745304290.dist-info → pulumi_oci-2.32.0a1745468539.dist-info}/RECORD +19 -17
- {pulumi_oci-2.32.0a1745304290.dist-info → pulumi_oci-2.32.0a1745468539.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.32.0a1745304290.dist-info → pulumi_oci-2.32.0a1745468539.dist-info}/top_level.txt +0 -0
pulumi_oci/dblm/outputs.py
CHANGED
@@ -17,6 +17,19 @@ from .. import _utilities
|
|
17
17
|
from . import outputs
|
18
18
|
|
19
19
|
__all__ = [
|
20
|
+
'GetPatchManagementDatabasesFilterResult',
|
21
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionResult',
|
22
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemResult',
|
23
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatchResult',
|
24
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetailResult',
|
25
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetailResult',
|
26
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetailResult',
|
27
|
+
'GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummaryResult',
|
28
|
+
'GetPatchManagementImagesPatchRecommendationSummaryResult',
|
29
|
+
'GetPatchManagementPatchOperationsSummaryResult',
|
30
|
+
'GetPatchManagementResourceResult',
|
31
|
+
'GetPatchManagementResourceHostInfoResult',
|
32
|
+
'GetPatchManagementResourcesPatchComplianceSummaryResult',
|
20
33
|
'GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionResult',
|
21
34
|
'GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionItemResult',
|
22
35
|
'GetVulnerabilityAggregatedVulnerabilityDataFilterResult',
|
@@ -44,6 +57,880 @@ __all__ = [
|
|
44
57
|
'GetVulnerabilityVulnerabilitiesVulnerabilityCollectionItemResult',
|
45
58
|
]
|
46
59
|
|
60
|
+
@pulumi.output_type
|
61
|
+
class GetPatchManagementDatabasesFilterResult(dict):
|
62
|
+
def __init__(__self__, *,
|
63
|
+
name: builtins.str,
|
64
|
+
values: Sequence[builtins.str],
|
65
|
+
regex: Optional[builtins.bool] = None):
|
66
|
+
pulumi.set(__self__, "name", name)
|
67
|
+
pulumi.set(__self__, "values", values)
|
68
|
+
if regex is not None:
|
69
|
+
pulumi.set(__self__, "regex", regex)
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter
|
73
|
+
def name(self) -> builtins.str:
|
74
|
+
return pulumi.get(self, "name")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter
|
78
|
+
def values(self) -> Sequence[builtins.str]:
|
79
|
+
return pulumi.get(self, "values")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def regex(self) -> Optional[builtins.bool]:
|
84
|
+
return pulumi.get(self, "regex")
|
85
|
+
|
86
|
+
|
87
|
+
@pulumi.output_type
|
88
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionResult(dict):
|
89
|
+
def __init__(__self__, *,
|
90
|
+
items: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemResult']):
|
91
|
+
"""
|
92
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemArgs'] items: List of patchDatabases.
|
93
|
+
"""
|
94
|
+
pulumi.set(__self__, "items", items)
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter
|
98
|
+
def items(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemResult']:
|
99
|
+
"""
|
100
|
+
List of patchDatabases.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "items")
|
103
|
+
|
104
|
+
|
105
|
+
@pulumi.output_type
|
106
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemResult(dict):
|
107
|
+
def __init__(__self__, *,
|
108
|
+
additional_patches: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatchResult'],
|
109
|
+
current_patch_watermark: builtins.str,
|
110
|
+
database_id: builtins.str,
|
111
|
+
database_name: builtins.str,
|
112
|
+
database_type: builtins.str,
|
113
|
+
defined_tags: Mapping[str, builtins.str],
|
114
|
+
freeform_tags: Mapping[str, builtins.str],
|
115
|
+
host_or_cluster: builtins.str,
|
116
|
+
image_details: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetailResult'],
|
117
|
+
oracle_home_path: builtins.str,
|
118
|
+
patch_activity_details: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetailResult'],
|
119
|
+
patch_compliance_details: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetailResult'],
|
120
|
+
patch_user: builtins.str,
|
121
|
+
release: builtins.str,
|
122
|
+
release_full_version: builtins.str,
|
123
|
+
state: builtins.str,
|
124
|
+
sudo_file_path: builtins.str,
|
125
|
+
system_tags: Mapping[str, builtins.str],
|
126
|
+
vulnerabilities_summaries: Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummaryResult']):
|
127
|
+
"""
|
128
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatchArgs'] additional_patches: List of additional patches on database.
|
129
|
+
:param builtins.str current_patch_watermark: This is the hashcode representing the list of patches applied.
|
130
|
+
:param builtins.str database_id: Database ocid.
|
131
|
+
:param builtins.str database_name: Database name.
|
132
|
+
:param builtins.str database_type: Filter by database type. Possible values Single Instance or RAC.
|
133
|
+
:param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
134
|
+
:param Mapping[str, builtins.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"}`
|
135
|
+
:param builtins.str host_or_cluster: For SI, hosted on host and for RAC, host on cluster.
|
136
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetailArgs'] image_details: Image details containing the subscribed image, its status, version, owner and time of creation.
|
137
|
+
:param builtins.str oracle_home_path: Path to the Oracle home.
|
138
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetailArgs'] patch_activity_details: Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
|
139
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetailArgs'] patch_compliance_details: Patch Compliance Status
|
140
|
+
:param builtins.str patch_user: Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
|
141
|
+
:param builtins.str release: Database release.
|
142
|
+
:param builtins.str release_full_version: Database release full version.
|
143
|
+
:param builtins.str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
144
|
+
:param builtins.str sudo_file_path: Path to sudo binary (executable) file
|
145
|
+
:param Mapping[str, builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
146
|
+
:param Sequence['GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummaryArgs'] vulnerabilities_summaries: Summary of vulnerabilities found in registered resources grouped by severity.
|
147
|
+
"""
|
148
|
+
pulumi.set(__self__, "additional_patches", additional_patches)
|
149
|
+
pulumi.set(__self__, "current_patch_watermark", current_patch_watermark)
|
150
|
+
pulumi.set(__self__, "database_id", database_id)
|
151
|
+
pulumi.set(__self__, "database_name", database_name)
|
152
|
+
pulumi.set(__self__, "database_type", database_type)
|
153
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
154
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
155
|
+
pulumi.set(__self__, "host_or_cluster", host_or_cluster)
|
156
|
+
pulumi.set(__self__, "image_details", image_details)
|
157
|
+
pulumi.set(__self__, "oracle_home_path", oracle_home_path)
|
158
|
+
pulumi.set(__self__, "patch_activity_details", patch_activity_details)
|
159
|
+
pulumi.set(__self__, "patch_compliance_details", patch_compliance_details)
|
160
|
+
pulumi.set(__self__, "patch_user", patch_user)
|
161
|
+
pulumi.set(__self__, "release", release)
|
162
|
+
pulumi.set(__self__, "release_full_version", release_full_version)
|
163
|
+
pulumi.set(__self__, "state", state)
|
164
|
+
pulumi.set(__self__, "sudo_file_path", sudo_file_path)
|
165
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
166
|
+
pulumi.set(__self__, "vulnerabilities_summaries", vulnerabilities_summaries)
|
167
|
+
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="additionalPatches")
|
170
|
+
def additional_patches(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatchResult']:
|
171
|
+
"""
|
172
|
+
List of additional patches on database.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "additional_patches")
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="currentPatchWatermark")
|
178
|
+
def current_patch_watermark(self) -> builtins.str:
|
179
|
+
"""
|
180
|
+
This is the hashcode representing the list of patches applied.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "current_patch_watermark")
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter(name="databaseId")
|
186
|
+
def database_id(self) -> builtins.str:
|
187
|
+
"""
|
188
|
+
Database ocid.
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "database_id")
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter(name="databaseName")
|
194
|
+
def database_name(self) -> builtins.str:
|
195
|
+
"""
|
196
|
+
Database name.
|
197
|
+
"""
|
198
|
+
return pulumi.get(self, "database_name")
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="databaseType")
|
202
|
+
def database_type(self) -> builtins.str:
|
203
|
+
"""
|
204
|
+
Filter by database type. Possible values Single Instance or RAC.
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "database_type")
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="definedTags")
|
210
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
211
|
+
"""
|
212
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "defined_tags")
|
215
|
+
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="freeformTags")
|
218
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
219
|
+
"""
|
220
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "freeform_tags")
|
223
|
+
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="hostOrCluster")
|
226
|
+
def host_or_cluster(self) -> builtins.str:
|
227
|
+
"""
|
228
|
+
For SI, hosted on host and for RAC, host on cluster.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "host_or_cluster")
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="imageDetails")
|
234
|
+
def image_details(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetailResult']:
|
235
|
+
"""
|
236
|
+
Image details containing the subscribed image, its status, version, owner and time of creation.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "image_details")
|
239
|
+
|
240
|
+
@property
|
241
|
+
@pulumi.getter(name="oracleHomePath")
|
242
|
+
def oracle_home_path(self) -> builtins.str:
|
243
|
+
"""
|
244
|
+
Path to the Oracle home.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "oracle_home_path")
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="patchActivityDetails")
|
250
|
+
def patch_activity_details(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetailResult']:
|
251
|
+
"""
|
252
|
+
Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "patch_activity_details")
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="patchComplianceDetails")
|
258
|
+
def patch_compliance_details(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetailResult']:
|
259
|
+
"""
|
260
|
+
Patch Compliance Status
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "patch_compliance_details")
|
263
|
+
|
264
|
+
@property
|
265
|
+
@pulumi.getter(name="patchUser")
|
266
|
+
def patch_user(self) -> builtins.str:
|
267
|
+
"""
|
268
|
+
Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "patch_user")
|
271
|
+
|
272
|
+
@property
|
273
|
+
@pulumi.getter
|
274
|
+
def release(self) -> builtins.str:
|
275
|
+
"""
|
276
|
+
Database release.
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "release")
|
279
|
+
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="releaseFullVersion")
|
282
|
+
def release_full_version(self) -> builtins.str:
|
283
|
+
"""
|
284
|
+
Database release full version.
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "release_full_version")
|
287
|
+
|
288
|
+
@property
|
289
|
+
@pulumi.getter
|
290
|
+
def state(self) -> builtins.str:
|
291
|
+
"""
|
292
|
+
A filter to return only resources their lifecycleState matches the given lifecycleState.
|
293
|
+
"""
|
294
|
+
return pulumi.get(self, "state")
|
295
|
+
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="sudoFilePath")
|
298
|
+
def sudo_file_path(self) -> builtins.str:
|
299
|
+
"""
|
300
|
+
Path to sudo binary (executable) file
|
301
|
+
"""
|
302
|
+
return pulumi.get(self, "sudo_file_path")
|
303
|
+
|
304
|
+
@property
|
305
|
+
@pulumi.getter(name="systemTags")
|
306
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
307
|
+
"""
|
308
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
309
|
+
"""
|
310
|
+
return pulumi.get(self, "system_tags")
|
311
|
+
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="vulnerabilitiesSummaries")
|
314
|
+
def vulnerabilities_summaries(self) -> Sequence['outputs.GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummaryResult']:
|
315
|
+
"""
|
316
|
+
Summary of vulnerabilities found in registered resources grouped by severity.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "vulnerabilities_summaries")
|
319
|
+
|
320
|
+
|
321
|
+
@pulumi.output_type
|
322
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatchResult(dict):
|
323
|
+
def __init__(__self__, *,
|
324
|
+
category: builtins.str,
|
325
|
+
description: builtins.str,
|
326
|
+
patch_id: builtins.int,
|
327
|
+
patch_name: builtins.str):
|
328
|
+
"""
|
329
|
+
:param builtins.str category: Shows if patch is recommended or is an additional patch from an existing database.
|
330
|
+
:param builtins.str description: Description of the patch recommendation.
|
331
|
+
:param builtins.int patch_id: Id for the patch recommendation.
|
332
|
+
:param builtins.str patch_name: Name for the patch recommendation.
|
333
|
+
"""
|
334
|
+
pulumi.set(__self__, "category", category)
|
335
|
+
pulumi.set(__self__, "description", description)
|
336
|
+
pulumi.set(__self__, "patch_id", patch_id)
|
337
|
+
pulumi.set(__self__, "patch_name", patch_name)
|
338
|
+
|
339
|
+
@property
|
340
|
+
@pulumi.getter
|
341
|
+
def category(self) -> builtins.str:
|
342
|
+
"""
|
343
|
+
Shows if patch is recommended or is an additional patch from an existing database.
|
344
|
+
"""
|
345
|
+
return pulumi.get(self, "category")
|
346
|
+
|
347
|
+
@property
|
348
|
+
@pulumi.getter
|
349
|
+
def description(self) -> builtins.str:
|
350
|
+
"""
|
351
|
+
Description of the patch recommendation.
|
352
|
+
"""
|
353
|
+
return pulumi.get(self, "description")
|
354
|
+
|
355
|
+
@property
|
356
|
+
@pulumi.getter(name="patchId")
|
357
|
+
def patch_id(self) -> builtins.int:
|
358
|
+
"""
|
359
|
+
Id for the patch recommendation.
|
360
|
+
"""
|
361
|
+
return pulumi.get(self, "patch_id")
|
362
|
+
|
363
|
+
@property
|
364
|
+
@pulumi.getter(name="patchName")
|
365
|
+
def patch_name(self) -> builtins.str:
|
366
|
+
"""
|
367
|
+
Name for the patch recommendation.
|
368
|
+
"""
|
369
|
+
return pulumi.get(self, "patch_name")
|
370
|
+
|
371
|
+
|
372
|
+
@pulumi.output_type
|
373
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetailResult(dict):
|
374
|
+
def __init__(__self__, *,
|
375
|
+
created_by: builtins.str,
|
376
|
+
current_version: builtins.str,
|
377
|
+
image_id: builtins.str,
|
378
|
+
image_owner: builtins.str,
|
379
|
+
image_status: builtins.str,
|
380
|
+
image_version: builtins.str,
|
381
|
+
subscribed_image: builtins.str,
|
382
|
+
time_image_creation: builtins.str,
|
383
|
+
up_to_date_image_version: builtins.str):
|
384
|
+
"""
|
385
|
+
:param builtins.str created_by: Name of the person who created the image.
|
386
|
+
:param builtins.str current_version: Name of the image version marked as current of the image.
|
387
|
+
:param builtins.str image_id: Subscribed image
|
388
|
+
:param builtins.str image_owner: Owner of the image.
|
389
|
+
:param builtins.str image_status: Image status.
|
390
|
+
:param builtins.str image_version: Release version of the image.
|
391
|
+
:param builtins.str subscribed_image: Subscribed image.
|
392
|
+
:param builtins.str time_image_creation: Date when the image was created.
|
393
|
+
:param builtins.str up_to_date_image_version: An image version name, that is up to date and has no recommendations.
|
394
|
+
"""
|
395
|
+
pulumi.set(__self__, "created_by", created_by)
|
396
|
+
pulumi.set(__self__, "current_version", current_version)
|
397
|
+
pulumi.set(__self__, "image_id", image_id)
|
398
|
+
pulumi.set(__self__, "image_owner", image_owner)
|
399
|
+
pulumi.set(__self__, "image_status", image_status)
|
400
|
+
pulumi.set(__self__, "image_version", image_version)
|
401
|
+
pulumi.set(__self__, "subscribed_image", subscribed_image)
|
402
|
+
pulumi.set(__self__, "time_image_creation", time_image_creation)
|
403
|
+
pulumi.set(__self__, "up_to_date_image_version", up_to_date_image_version)
|
404
|
+
|
405
|
+
@property
|
406
|
+
@pulumi.getter(name="createdBy")
|
407
|
+
def created_by(self) -> builtins.str:
|
408
|
+
"""
|
409
|
+
Name of the person who created the image.
|
410
|
+
"""
|
411
|
+
return pulumi.get(self, "created_by")
|
412
|
+
|
413
|
+
@property
|
414
|
+
@pulumi.getter(name="currentVersion")
|
415
|
+
def current_version(self) -> builtins.str:
|
416
|
+
"""
|
417
|
+
Name of the image version marked as current of the image.
|
418
|
+
"""
|
419
|
+
return pulumi.get(self, "current_version")
|
420
|
+
|
421
|
+
@property
|
422
|
+
@pulumi.getter(name="imageId")
|
423
|
+
def image_id(self) -> builtins.str:
|
424
|
+
"""
|
425
|
+
Subscribed image
|
426
|
+
"""
|
427
|
+
return pulumi.get(self, "image_id")
|
428
|
+
|
429
|
+
@property
|
430
|
+
@pulumi.getter(name="imageOwner")
|
431
|
+
def image_owner(self) -> builtins.str:
|
432
|
+
"""
|
433
|
+
Owner of the image.
|
434
|
+
"""
|
435
|
+
return pulumi.get(self, "image_owner")
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter(name="imageStatus")
|
439
|
+
def image_status(self) -> builtins.str:
|
440
|
+
"""
|
441
|
+
Image status.
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "image_status")
|
444
|
+
|
445
|
+
@property
|
446
|
+
@pulumi.getter(name="imageVersion")
|
447
|
+
def image_version(self) -> builtins.str:
|
448
|
+
"""
|
449
|
+
Release version of the image.
|
450
|
+
"""
|
451
|
+
return pulumi.get(self, "image_version")
|
452
|
+
|
453
|
+
@property
|
454
|
+
@pulumi.getter(name="subscribedImage")
|
455
|
+
def subscribed_image(self) -> builtins.str:
|
456
|
+
"""
|
457
|
+
Subscribed image.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "subscribed_image")
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="timeImageCreation")
|
463
|
+
def time_image_creation(self) -> builtins.str:
|
464
|
+
"""
|
465
|
+
Date when the image was created.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "time_image_creation")
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter(name="upToDateImageVersion")
|
471
|
+
def up_to_date_image_version(self) -> builtins.str:
|
472
|
+
"""
|
473
|
+
An image version name, that is up to date and has no recommendations.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "up_to_date_image_version")
|
476
|
+
|
477
|
+
|
478
|
+
@pulumi.output_type
|
479
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetailResult(dict):
|
480
|
+
def __init__(__self__, *,
|
481
|
+
deploy_operation_id: builtins.str,
|
482
|
+
deploy_status: builtins.str,
|
483
|
+
deploy_task_id: builtins.str,
|
484
|
+
migrate_listener_operation_id: builtins.str,
|
485
|
+
migrate_listener_status: builtins.str,
|
486
|
+
migrate_listener_task_id: builtins.str,
|
487
|
+
update_operation_id: builtins.str,
|
488
|
+
update_status: builtins.str,
|
489
|
+
update_task_id: builtins.str):
|
490
|
+
"""
|
491
|
+
:param builtins.str deploy_operation_id: Operation Identifier for deploy operation.
|
492
|
+
:param builtins.str deploy_status: Status of deploy operation.
|
493
|
+
:param builtins.str deploy_task_id: Task identifier for deploy operation.
|
494
|
+
:param builtins.str migrate_listener_operation_id: Operation Identifier for migrate listener operation.
|
495
|
+
:param builtins.str migrate_listener_status: Status of migrate listener operation.
|
496
|
+
:param builtins.str migrate_listener_task_id: Task identifier for migrate listener operation.
|
497
|
+
:param builtins.str update_operation_id: Operation Identifier for update operation.
|
498
|
+
:param builtins.str update_status: Status of update operation.
|
499
|
+
:param builtins.str update_task_id: Task identifier for update operation.
|
500
|
+
"""
|
501
|
+
pulumi.set(__self__, "deploy_operation_id", deploy_operation_id)
|
502
|
+
pulumi.set(__self__, "deploy_status", deploy_status)
|
503
|
+
pulumi.set(__self__, "deploy_task_id", deploy_task_id)
|
504
|
+
pulumi.set(__self__, "migrate_listener_operation_id", migrate_listener_operation_id)
|
505
|
+
pulumi.set(__self__, "migrate_listener_status", migrate_listener_status)
|
506
|
+
pulumi.set(__self__, "migrate_listener_task_id", migrate_listener_task_id)
|
507
|
+
pulumi.set(__self__, "update_operation_id", update_operation_id)
|
508
|
+
pulumi.set(__self__, "update_status", update_status)
|
509
|
+
pulumi.set(__self__, "update_task_id", update_task_id)
|
510
|
+
|
511
|
+
@property
|
512
|
+
@pulumi.getter(name="deployOperationId")
|
513
|
+
def deploy_operation_id(self) -> builtins.str:
|
514
|
+
"""
|
515
|
+
Operation Identifier for deploy operation.
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "deploy_operation_id")
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="deployStatus")
|
521
|
+
def deploy_status(self) -> builtins.str:
|
522
|
+
"""
|
523
|
+
Status of deploy operation.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "deploy_status")
|
526
|
+
|
527
|
+
@property
|
528
|
+
@pulumi.getter(name="deployTaskId")
|
529
|
+
def deploy_task_id(self) -> builtins.str:
|
530
|
+
"""
|
531
|
+
Task identifier for deploy operation.
|
532
|
+
"""
|
533
|
+
return pulumi.get(self, "deploy_task_id")
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="migrateListenerOperationId")
|
537
|
+
def migrate_listener_operation_id(self) -> builtins.str:
|
538
|
+
"""
|
539
|
+
Operation Identifier for migrate listener operation.
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "migrate_listener_operation_id")
|
542
|
+
|
543
|
+
@property
|
544
|
+
@pulumi.getter(name="migrateListenerStatus")
|
545
|
+
def migrate_listener_status(self) -> builtins.str:
|
546
|
+
"""
|
547
|
+
Status of migrate listener operation.
|
548
|
+
"""
|
549
|
+
return pulumi.get(self, "migrate_listener_status")
|
550
|
+
|
551
|
+
@property
|
552
|
+
@pulumi.getter(name="migrateListenerTaskId")
|
553
|
+
def migrate_listener_task_id(self) -> builtins.str:
|
554
|
+
"""
|
555
|
+
Task identifier for migrate listener operation.
|
556
|
+
"""
|
557
|
+
return pulumi.get(self, "migrate_listener_task_id")
|
558
|
+
|
559
|
+
@property
|
560
|
+
@pulumi.getter(name="updateOperationId")
|
561
|
+
def update_operation_id(self) -> builtins.str:
|
562
|
+
"""
|
563
|
+
Operation Identifier for update operation.
|
564
|
+
"""
|
565
|
+
return pulumi.get(self, "update_operation_id")
|
566
|
+
|
567
|
+
@property
|
568
|
+
@pulumi.getter(name="updateStatus")
|
569
|
+
def update_status(self) -> builtins.str:
|
570
|
+
"""
|
571
|
+
Status of update operation.
|
572
|
+
"""
|
573
|
+
return pulumi.get(self, "update_status")
|
574
|
+
|
575
|
+
@property
|
576
|
+
@pulumi.getter(name="updateTaskId")
|
577
|
+
def update_task_id(self) -> builtins.str:
|
578
|
+
"""
|
579
|
+
Task identifier for update operation.
|
580
|
+
"""
|
581
|
+
return pulumi.get(self, "update_task_id")
|
582
|
+
|
583
|
+
|
584
|
+
@pulumi.output_type
|
585
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetailResult(dict):
|
586
|
+
def __init__(__self__, *,
|
587
|
+
patch_compliance_status: builtins.str,
|
588
|
+
patch_compliance_version: builtins.str):
|
589
|
+
"""
|
590
|
+
:param builtins.str patch_compliance_status: Patch compliance status.
|
591
|
+
:param builtins.str patch_compliance_version: Resource patch compliance version name.
|
592
|
+
"""
|
593
|
+
pulumi.set(__self__, "patch_compliance_status", patch_compliance_status)
|
594
|
+
pulumi.set(__self__, "patch_compliance_version", patch_compliance_version)
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="patchComplianceStatus")
|
598
|
+
def patch_compliance_status(self) -> builtins.str:
|
599
|
+
"""
|
600
|
+
Patch compliance status.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "patch_compliance_status")
|
603
|
+
|
604
|
+
@property
|
605
|
+
@pulumi.getter(name="patchComplianceVersion")
|
606
|
+
def patch_compliance_version(self) -> builtins.str:
|
607
|
+
"""
|
608
|
+
Resource patch compliance version name.
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "patch_compliance_version")
|
611
|
+
|
612
|
+
|
613
|
+
@pulumi.output_type
|
614
|
+
class GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummaryResult(dict):
|
615
|
+
def __init__(__self__, *,
|
616
|
+
critical: builtins.int,
|
617
|
+
high: builtins.int,
|
618
|
+
info: builtins.int,
|
619
|
+
low: builtins.int,
|
620
|
+
medium: builtins.int,
|
621
|
+
total: builtins.int):
|
622
|
+
pulumi.set(__self__, "critical", critical)
|
623
|
+
pulumi.set(__self__, "high", high)
|
624
|
+
pulumi.set(__self__, "info", info)
|
625
|
+
pulumi.set(__self__, "low", low)
|
626
|
+
pulumi.set(__self__, "medium", medium)
|
627
|
+
pulumi.set(__self__, "total", total)
|
628
|
+
|
629
|
+
@property
|
630
|
+
@pulumi.getter
|
631
|
+
def critical(self) -> builtins.int:
|
632
|
+
return pulumi.get(self, "critical")
|
633
|
+
|
634
|
+
@property
|
635
|
+
@pulumi.getter
|
636
|
+
def high(self) -> builtins.int:
|
637
|
+
return pulumi.get(self, "high")
|
638
|
+
|
639
|
+
@property
|
640
|
+
@pulumi.getter
|
641
|
+
def info(self) -> builtins.int:
|
642
|
+
return pulumi.get(self, "info")
|
643
|
+
|
644
|
+
@property
|
645
|
+
@pulumi.getter
|
646
|
+
def low(self) -> builtins.int:
|
647
|
+
return pulumi.get(self, "low")
|
648
|
+
|
649
|
+
@property
|
650
|
+
@pulumi.getter
|
651
|
+
def medium(self) -> builtins.int:
|
652
|
+
return pulumi.get(self, "medium")
|
653
|
+
|
654
|
+
@property
|
655
|
+
@pulumi.getter
|
656
|
+
def total(self) -> builtins.int:
|
657
|
+
return pulumi.get(self, "total")
|
658
|
+
|
659
|
+
|
660
|
+
@pulumi.output_type
|
661
|
+
class GetPatchManagementImagesPatchRecommendationSummaryResult(dict):
|
662
|
+
def __init__(__self__, *,
|
663
|
+
image_patch_recommendations_count: builtins.int,
|
664
|
+
total_images_count: builtins.int,
|
665
|
+
up_to_date_images_count: builtins.int):
|
666
|
+
pulumi.set(__self__, "image_patch_recommendations_count", image_patch_recommendations_count)
|
667
|
+
pulumi.set(__self__, "total_images_count", total_images_count)
|
668
|
+
pulumi.set(__self__, "up_to_date_images_count", up_to_date_images_count)
|
669
|
+
|
670
|
+
@property
|
671
|
+
@pulumi.getter(name="imagePatchRecommendationsCount")
|
672
|
+
def image_patch_recommendations_count(self) -> builtins.int:
|
673
|
+
return pulumi.get(self, "image_patch_recommendations_count")
|
674
|
+
|
675
|
+
@property
|
676
|
+
@pulumi.getter(name="totalImagesCount")
|
677
|
+
def total_images_count(self) -> builtins.int:
|
678
|
+
return pulumi.get(self, "total_images_count")
|
679
|
+
|
680
|
+
@property
|
681
|
+
@pulumi.getter(name="upToDateImagesCount")
|
682
|
+
def up_to_date_images_count(self) -> builtins.int:
|
683
|
+
return pulumi.get(self, "up_to_date_images_count")
|
684
|
+
|
685
|
+
|
686
|
+
@pulumi.output_type
|
687
|
+
class GetPatchManagementPatchOperationsSummaryResult(dict):
|
688
|
+
def __init__(__self__, *,
|
689
|
+
failed_patch_ops_count: builtins.int,
|
690
|
+
running_patch_ops_count: builtins.int,
|
691
|
+
scheduled_patch_ops_count: builtins.int,
|
692
|
+
successful_patch_ops_count: builtins.int,
|
693
|
+
warnings_patch_ops_count: builtins.int):
|
694
|
+
pulumi.set(__self__, "failed_patch_ops_count", failed_patch_ops_count)
|
695
|
+
pulumi.set(__self__, "running_patch_ops_count", running_patch_ops_count)
|
696
|
+
pulumi.set(__self__, "scheduled_patch_ops_count", scheduled_patch_ops_count)
|
697
|
+
pulumi.set(__self__, "successful_patch_ops_count", successful_patch_ops_count)
|
698
|
+
pulumi.set(__self__, "warnings_patch_ops_count", warnings_patch_ops_count)
|
699
|
+
|
700
|
+
@property
|
701
|
+
@pulumi.getter(name="failedPatchOpsCount")
|
702
|
+
def failed_patch_ops_count(self) -> builtins.int:
|
703
|
+
return pulumi.get(self, "failed_patch_ops_count")
|
704
|
+
|
705
|
+
@property
|
706
|
+
@pulumi.getter(name="runningPatchOpsCount")
|
707
|
+
def running_patch_ops_count(self) -> builtins.int:
|
708
|
+
return pulumi.get(self, "running_patch_ops_count")
|
709
|
+
|
710
|
+
@property
|
711
|
+
@pulumi.getter(name="scheduledPatchOpsCount")
|
712
|
+
def scheduled_patch_ops_count(self) -> builtins.int:
|
713
|
+
return pulumi.get(self, "scheduled_patch_ops_count")
|
714
|
+
|
715
|
+
@property
|
716
|
+
@pulumi.getter(name="successfulPatchOpsCount")
|
717
|
+
def successful_patch_ops_count(self) -> builtins.int:
|
718
|
+
return pulumi.get(self, "successful_patch_ops_count")
|
719
|
+
|
720
|
+
@property
|
721
|
+
@pulumi.getter(name="warningsPatchOpsCount")
|
722
|
+
def warnings_patch_ops_count(self) -> builtins.int:
|
723
|
+
return pulumi.get(self, "warnings_patch_ops_count")
|
724
|
+
|
725
|
+
|
726
|
+
@pulumi.output_type
|
727
|
+
class GetPatchManagementResourceResult(dict):
|
728
|
+
def __init__(__self__, *,
|
729
|
+
agent_id: builtins.str,
|
730
|
+
connector_id: builtins.str,
|
731
|
+
db_platform_type: builtins.str,
|
732
|
+
db_version: builtins.str,
|
733
|
+
deployment_type: builtins.str,
|
734
|
+
host_infos: Sequence['outputs.GetPatchManagementResourceHostInfoResult'],
|
735
|
+
is_cluster_db: builtins.bool,
|
736
|
+
license_type: builtins.str,
|
737
|
+
resource_compartment_id: builtins.str,
|
738
|
+
resource_id: builtins.str,
|
739
|
+
resource_name: builtins.str,
|
740
|
+
resource_type: builtins.str):
|
741
|
+
"""
|
742
|
+
:param builtins.str agent_id: The agent Id of the agent managing the resource.
|
743
|
+
:param builtins.str connector_id: The connector Id of the resource.
|
744
|
+
:param builtins.str db_platform_type: The platform type of the resource.
|
745
|
+
:param builtins.str db_version: The version of the resource.
|
746
|
+
:param builtins.str deployment_type: The deployment type of the resource.
|
747
|
+
:param Sequence['GetPatchManagementResourceHostInfoArgs'] host_infos: host info objects
|
748
|
+
:param builtins.bool is_cluster_db: True if it is a cluster db.
|
749
|
+
:param builtins.str license_type: The License Type of the resource.
|
750
|
+
:param builtins.str resource_compartment_id: The compartmentId of the resource.
|
751
|
+
:param builtins.str resource_id: The Id of the resource.
|
752
|
+
:param builtins.str resource_name: The name of the resource.
|
753
|
+
:param builtins.str resource_type: The type of the resource.
|
754
|
+
"""
|
755
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
756
|
+
pulumi.set(__self__, "connector_id", connector_id)
|
757
|
+
pulumi.set(__self__, "db_platform_type", db_platform_type)
|
758
|
+
pulumi.set(__self__, "db_version", db_version)
|
759
|
+
pulumi.set(__self__, "deployment_type", deployment_type)
|
760
|
+
pulumi.set(__self__, "host_infos", host_infos)
|
761
|
+
pulumi.set(__self__, "is_cluster_db", is_cluster_db)
|
762
|
+
pulumi.set(__self__, "license_type", license_type)
|
763
|
+
pulumi.set(__self__, "resource_compartment_id", resource_compartment_id)
|
764
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
765
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
766
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="agentId")
|
770
|
+
def agent_id(self) -> builtins.str:
|
771
|
+
"""
|
772
|
+
The agent Id of the agent managing the resource.
|
773
|
+
"""
|
774
|
+
return pulumi.get(self, "agent_id")
|
775
|
+
|
776
|
+
@property
|
777
|
+
@pulumi.getter(name="connectorId")
|
778
|
+
def connector_id(self) -> builtins.str:
|
779
|
+
"""
|
780
|
+
The connector Id of the resource.
|
781
|
+
"""
|
782
|
+
return pulumi.get(self, "connector_id")
|
783
|
+
|
784
|
+
@property
|
785
|
+
@pulumi.getter(name="dbPlatformType")
|
786
|
+
def db_platform_type(self) -> builtins.str:
|
787
|
+
"""
|
788
|
+
The platform type of the resource.
|
789
|
+
"""
|
790
|
+
return pulumi.get(self, "db_platform_type")
|
791
|
+
|
792
|
+
@property
|
793
|
+
@pulumi.getter(name="dbVersion")
|
794
|
+
def db_version(self) -> builtins.str:
|
795
|
+
"""
|
796
|
+
The version of the resource.
|
797
|
+
"""
|
798
|
+
return pulumi.get(self, "db_version")
|
799
|
+
|
800
|
+
@property
|
801
|
+
@pulumi.getter(name="deploymentType")
|
802
|
+
def deployment_type(self) -> builtins.str:
|
803
|
+
"""
|
804
|
+
The deployment type of the resource.
|
805
|
+
"""
|
806
|
+
return pulumi.get(self, "deployment_type")
|
807
|
+
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="hostInfos")
|
810
|
+
def host_infos(self) -> Sequence['outputs.GetPatchManagementResourceHostInfoResult']:
|
811
|
+
"""
|
812
|
+
host info objects
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "host_infos")
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="isClusterDb")
|
818
|
+
def is_cluster_db(self) -> builtins.bool:
|
819
|
+
"""
|
820
|
+
True if it is a cluster db.
|
821
|
+
"""
|
822
|
+
return pulumi.get(self, "is_cluster_db")
|
823
|
+
|
824
|
+
@property
|
825
|
+
@pulumi.getter(name="licenseType")
|
826
|
+
def license_type(self) -> builtins.str:
|
827
|
+
"""
|
828
|
+
The License Type of the resource.
|
829
|
+
"""
|
830
|
+
return pulumi.get(self, "license_type")
|
831
|
+
|
832
|
+
@property
|
833
|
+
@pulumi.getter(name="resourceCompartmentId")
|
834
|
+
def resource_compartment_id(self) -> builtins.str:
|
835
|
+
"""
|
836
|
+
The compartmentId of the resource.
|
837
|
+
"""
|
838
|
+
return pulumi.get(self, "resource_compartment_id")
|
839
|
+
|
840
|
+
@property
|
841
|
+
@pulumi.getter(name="resourceId")
|
842
|
+
def resource_id(self) -> builtins.str:
|
843
|
+
"""
|
844
|
+
The Id of the resource.
|
845
|
+
"""
|
846
|
+
return pulumi.get(self, "resource_id")
|
847
|
+
|
848
|
+
@property
|
849
|
+
@pulumi.getter(name="resourceName")
|
850
|
+
def resource_name(self) -> builtins.str:
|
851
|
+
"""
|
852
|
+
The name of the resource.
|
853
|
+
"""
|
854
|
+
return pulumi.get(self, "resource_name")
|
855
|
+
|
856
|
+
@property
|
857
|
+
@pulumi.getter(name="resourceType")
|
858
|
+
def resource_type(self) -> builtins.str:
|
859
|
+
"""
|
860
|
+
The type of the resource.
|
861
|
+
"""
|
862
|
+
return pulumi.get(self, "resource_type")
|
863
|
+
|
864
|
+
|
865
|
+
@pulumi.output_type
|
866
|
+
class GetPatchManagementResourceHostInfoResult(dict):
|
867
|
+
def __init__(__self__, *,
|
868
|
+
host_cores: builtins.int,
|
869
|
+
host_name: builtins.str):
|
870
|
+
"""
|
871
|
+
:param builtins.int host_cores: Number of host cores.
|
872
|
+
:param builtins.str host_name: The name of the host.
|
873
|
+
"""
|
874
|
+
pulumi.set(__self__, "host_cores", host_cores)
|
875
|
+
pulumi.set(__self__, "host_name", host_name)
|
876
|
+
|
877
|
+
@property
|
878
|
+
@pulumi.getter(name="hostCores")
|
879
|
+
def host_cores(self) -> builtins.int:
|
880
|
+
"""
|
881
|
+
Number of host cores.
|
882
|
+
"""
|
883
|
+
return pulumi.get(self, "host_cores")
|
884
|
+
|
885
|
+
@property
|
886
|
+
@pulumi.getter(name="hostName")
|
887
|
+
def host_name(self) -> builtins.str:
|
888
|
+
"""
|
889
|
+
The name of the host.
|
890
|
+
"""
|
891
|
+
return pulumi.get(self, "host_name")
|
892
|
+
|
893
|
+
|
894
|
+
@pulumi.output_type
|
895
|
+
class GetPatchManagementResourcesPatchComplianceSummaryResult(dict):
|
896
|
+
def __init__(__self__, *,
|
897
|
+
non_compliant_resources_count: builtins.int,
|
898
|
+
not_dblm_registered_resources_count: builtins.int,
|
899
|
+
not_subscribed_resources_count: builtins.int,
|
900
|
+
total_resources_count: builtins.int,
|
901
|
+
up_to_date_resources_count: builtins.int):
|
902
|
+
pulumi.set(__self__, "non_compliant_resources_count", non_compliant_resources_count)
|
903
|
+
pulumi.set(__self__, "not_dblm_registered_resources_count", not_dblm_registered_resources_count)
|
904
|
+
pulumi.set(__self__, "not_subscribed_resources_count", not_subscribed_resources_count)
|
905
|
+
pulumi.set(__self__, "total_resources_count", total_resources_count)
|
906
|
+
pulumi.set(__self__, "up_to_date_resources_count", up_to_date_resources_count)
|
907
|
+
|
908
|
+
@property
|
909
|
+
@pulumi.getter(name="nonCompliantResourcesCount")
|
910
|
+
def non_compliant_resources_count(self) -> builtins.int:
|
911
|
+
return pulumi.get(self, "non_compliant_resources_count")
|
912
|
+
|
913
|
+
@property
|
914
|
+
@pulumi.getter(name="notDblmRegisteredResourcesCount")
|
915
|
+
def not_dblm_registered_resources_count(self) -> builtins.int:
|
916
|
+
return pulumi.get(self, "not_dblm_registered_resources_count")
|
917
|
+
|
918
|
+
@property
|
919
|
+
@pulumi.getter(name="notSubscribedResourcesCount")
|
920
|
+
def not_subscribed_resources_count(self) -> builtins.int:
|
921
|
+
return pulumi.get(self, "not_subscribed_resources_count")
|
922
|
+
|
923
|
+
@property
|
924
|
+
@pulumi.getter(name="totalResourcesCount")
|
925
|
+
def total_resources_count(self) -> builtins.int:
|
926
|
+
return pulumi.get(self, "total_resources_count")
|
927
|
+
|
928
|
+
@property
|
929
|
+
@pulumi.getter(name="upToDateResourcesCount")
|
930
|
+
def up_to_date_resources_count(self) -> builtins.int:
|
931
|
+
return pulumi.get(self, "up_to_date_resources_count")
|
932
|
+
|
933
|
+
|
47
934
|
@pulumi.output_type
|
48
935
|
class GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollectionResult(dict):
|
49
936
|
def __init__(__self__, *,
|
@@ -254,6 +1141,7 @@ class GetVulnerabilityPatchRecommendationsSummaryResult(dict):
|
|
254
1141
|
@pulumi.output_type
|
255
1142
|
class GetVulnerabilityResourceResult(dict):
|
256
1143
|
def __init__(__self__, *,
|
1144
|
+
agent_id: builtins.str,
|
257
1145
|
connector_id: builtins.str,
|
258
1146
|
db_platform_type: builtins.str,
|
259
1147
|
db_version: builtins.str,
|
@@ -266,6 +1154,7 @@ class GetVulnerabilityResourceResult(dict):
|
|
266
1154
|
resource_name: builtins.str,
|
267
1155
|
resource_type: builtins.str):
|
268
1156
|
"""
|
1157
|
+
:param builtins.str agent_id: The agent Id of the agent managing the resource.
|
269
1158
|
:param builtins.str connector_id: The connector Id of the resource.
|
270
1159
|
:param builtins.str db_platform_type: The platform type of the resource.
|
271
1160
|
:param builtins.str db_version: The version of the resource.
|
@@ -278,6 +1167,7 @@ class GetVulnerabilityResourceResult(dict):
|
|
278
1167
|
:param builtins.str resource_name: The name of the resource.
|
279
1168
|
:param builtins.str resource_type: The type of the resource.
|
280
1169
|
"""
|
1170
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
281
1171
|
pulumi.set(__self__, "connector_id", connector_id)
|
282
1172
|
pulumi.set(__self__, "db_platform_type", db_platform_type)
|
283
1173
|
pulumi.set(__self__, "db_version", db_version)
|
@@ -290,6 +1180,14 @@ class GetVulnerabilityResourceResult(dict):
|
|
290
1180
|
pulumi.set(__self__, "resource_name", resource_name)
|
291
1181
|
pulumi.set(__self__, "resource_type", resource_type)
|
292
1182
|
|
1183
|
+
@property
|
1184
|
+
@pulumi.getter(name="agentId")
|
1185
|
+
def agent_id(self) -> builtins.str:
|
1186
|
+
"""
|
1187
|
+
The agent Id of the agent managing the resource.
|
1188
|
+
"""
|
1189
|
+
return pulumi.get(self, "agent_id")
|
1190
|
+
|
293
1191
|
@property
|
294
1192
|
@pulumi.getter(name="connectorId")
|
295
1193
|
def connector_id(self) -> builtins.str:
|