pulumi-oci 2.27.0a1742000109__py3-none-any.whl → 2.27.0a1742444119__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 +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,7 @@ __all__ = [
|
|
30
30
|
'LifecycleStageDetachManagedInstancesManagementManagedInstanceDetails',
|
31
31
|
'LifecycleStageDetachManagedInstancesManagementManagedInstanceDetailsWorkRequestDetails',
|
32
32
|
'LifecycleStagePromoteSoftwareSourceManagementWorkRequestDetails',
|
33
|
+
'LifecycleStageRebootManagementWorkRequestDetails',
|
33
34
|
'ManagedInstanceAutonomousSettings',
|
34
35
|
'ManagedInstanceGroupAttachManagedInstancesManagementWorkRequestDetails',
|
35
36
|
'ManagedInstanceGroupAttachSoftwareSourcesManagementWorkRequestDetails',
|
@@ -42,6 +43,7 @@ __all__ = [
|
|
42
43
|
'ManagedInstanceGroupManageModuleStreamsManagementInstall',
|
43
44
|
'ManagedInstanceGroupManageModuleStreamsManagementRemove',
|
44
45
|
'ManagedInstanceGroupManageModuleStreamsManagementWorkRequestDetails',
|
46
|
+
'ManagedInstanceGroupRebootManagementWorkRequestDetails',
|
45
47
|
'ManagedInstanceGroupRemovePackagesManagementWorkRequestDetails',
|
46
48
|
'ManagedInstanceGroupSoftwareSource',
|
47
49
|
'ManagedInstanceGroupUpdateAllPackagesManagementWorkRequestDetails',
|
@@ -49,11 +51,14 @@ __all__ = [
|
|
49
51
|
'ManagedInstanceLifecycleEnvironment',
|
50
52
|
'ManagedInstanceLifecycleStage',
|
51
53
|
'ManagedInstanceManagedInstanceGroup',
|
54
|
+
'ManagedInstanceRebootManagementWorkRequestDetails',
|
52
55
|
'ManagedInstanceSoftwareSource',
|
53
56
|
'ManagedInstanceUpdatePackagesManagementWorkRequestDetails',
|
57
|
+
'ManagementStationAssociateManagedInstancesManagementWorkRequestDetails',
|
54
58
|
'ManagementStationHealth',
|
55
59
|
'ManagementStationMirror',
|
56
60
|
'ManagementStationMirrorSyncStatus',
|
61
|
+
'ManagementStationPeerManagementStation',
|
57
62
|
'ManagementStationProxy',
|
58
63
|
'ProfileLifecycleEnvironment',
|
59
64
|
'ProfileLifecycleStage',
|
@@ -72,6 +77,7 @@ __all__ = [
|
|
72
77
|
'SoftwareSourceCustomSoftwareSourceFilterPackageFilter',
|
73
78
|
'SoftwareSourceCustomSoftwareSourceFilterPackageGroupFilter',
|
74
79
|
'SoftwareSourceVendorSoftwareSource',
|
80
|
+
'WorkRequestRerunManagementWorkRequestDetails',
|
75
81
|
'GetEntitlementsEntitlementCollectionResult',
|
76
82
|
'GetEntitlementsEntitlementCollectionItemResult',
|
77
83
|
'GetEntitlementsFilterResult',
|
@@ -180,14 +186,22 @@ __all__ = [
|
|
180
186
|
'GetManagementStationMirrorsFilterResult',
|
181
187
|
'GetManagementStationMirrorsMirrorsCollectionResult',
|
182
188
|
'GetManagementStationMirrorsMirrorsCollectionItemResult',
|
189
|
+
'GetManagementStationPeerManagementStationResult',
|
183
190
|
'GetManagementStationProxyResult',
|
184
191
|
'GetManagementStationsFilterResult',
|
185
192
|
'GetManagementStationsManagementStationCollectionResult',
|
186
193
|
'GetManagementStationsManagementStationCollectionItemResult',
|
194
|
+
'GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionResult',
|
195
|
+
'GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionItemResult',
|
196
|
+
'GetProfileAvailableSoftwareSourcesFilterResult',
|
187
197
|
'GetProfileLifecycleEnvironmentResult',
|
188
198
|
'GetProfileLifecycleStageResult',
|
189
199
|
'GetProfileManagedInstanceGroupResult',
|
190
200
|
'GetProfileSoftwareSourceResult',
|
201
|
+
'GetProfileVersionLifecycleEnvironmentResult',
|
202
|
+
'GetProfileVersionLifecycleStageResult',
|
203
|
+
'GetProfileVersionManagedInstanceGroupResult',
|
204
|
+
'GetProfileVersionSoftwareSourceResult',
|
191
205
|
'GetProfilesFilterResult',
|
192
206
|
'GetProfilesProfileCollectionResult',
|
193
207
|
'GetProfilesProfileCollectionItemResult',
|
@@ -225,6 +239,10 @@ __all__ = [
|
|
225
239
|
'GetSoftwarePackagesSoftwarePackageCollectionItemDependencyResult',
|
226
240
|
'GetSoftwarePackagesSoftwarePackageCollectionItemFileResult',
|
227
241
|
'GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult',
|
242
|
+
'GetSoftwareSourceAvailableSoftwarePackagesFilterResult',
|
243
|
+
'GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionResult',
|
244
|
+
'GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemResult',
|
245
|
+
'GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult',
|
228
246
|
'GetSoftwareSourceCustomSoftwareSourceFilterResult',
|
229
247
|
'GetSoftwareSourceCustomSoftwareSourceFilterModuleStreamProfileFilterResult',
|
230
248
|
'GetSoftwareSourceCustomSoftwareSourceFilterPackageFilterResult',
|
@@ -267,12 +285,26 @@ class EventData(dict):
|
|
267
285
|
suggest = None
|
268
286
|
if key == "additionalDetails":
|
269
287
|
suggest = "additional_details"
|
288
|
+
elif key == "attemptedResolutions":
|
289
|
+
suggest = "attempted_resolutions"
|
290
|
+
elif key == "errorCause":
|
291
|
+
suggest = "error_cause"
|
292
|
+
elif key == "errorLog":
|
293
|
+
suggest = "error_log"
|
270
294
|
elif key == "eventCount":
|
271
295
|
suggest = "event_count"
|
272
296
|
elif key == "eventFingerprint":
|
273
297
|
suggest = "event_fingerprint"
|
298
|
+
elif key == "healthState":
|
299
|
+
suggest = "health_state"
|
274
300
|
elif key == "operationType":
|
275
301
|
suggest = "operation_type"
|
302
|
+
elif key == "rebootStatus":
|
303
|
+
suggest = "reboot_status"
|
304
|
+
elif key == "resolutionLog":
|
305
|
+
suggest = "resolution_log"
|
306
|
+
elif key == "resolutionStatus":
|
307
|
+
suggest = "resolution_status"
|
276
308
|
elif key == "timeFirstOccurred":
|
277
309
|
suggest = "time_first_occurred"
|
278
310
|
|
@@ -289,35 +321,63 @@ class EventData(dict):
|
|
289
321
|
|
290
322
|
def __init__(__self__, *,
|
291
323
|
additional_details: Optional[Sequence['outputs.EventDataAdditionalDetail']] = None,
|
324
|
+
attempted_resolutions: Optional[Sequence[str]] = None,
|
292
325
|
contents: Optional[Sequence['outputs.EventDataContent']] = None,
|
326
|
+
error_cause: Optional[str] = None,
|
327
|
+
error_log: Optional[str] = None,
|
293
328
|
event_count: Optional[int] = None,
|
294
329
|
event_fingerprint: Optional[str] = None,
|
330
|
+
health_state: Optional[str] = None,
|
295
331
|
operation_type: Optional[str] = None,
|
296
332
|
reason: Optional[str] = None,
|
333
|
+
reboot_status: Optional[str] = None,
|
334
|
+
resolution_log: Optional[str] = None,
|
335
|
+
resolution_status: Optional[str] = None,
|
297
336
|
status: Optional[str] = None,
|
298
337
|
time_first_occurred: Optional[str] = None):
|
299
338
|
"""
|
300
339
|
:param Sequence['EventDataAdditionalDetailArgs'] additional_details: Provides additional information for the work request associated with an event.
|
340
|
+
:param Sequence[str] attempted_resolutions: The actions used to attempt fixing the error.
|
301
341
|
:param Sequence['EventDataContentArgs'] contents: Provides information collected for the exploit attempt event.
|
342
|
+
:param str error_cause: The commands executed by the agent that caused the error.
|
343
|
+
:param str error_log: The output log of the error.
|
302
344
|
:param int event_count: Number of times the event has occurred.
|
303
345
|
:param str event_fingerprint: Fingerprint of the event.
|
346
|
+
:param str health_state: Health state of the management station
|
304
347
|
:param str operation_type: Type of management station operation.
|
305
348
|
:param str reason: Reason for the event.
|
349
|
+
:param str reboot_status: Reboot status for the current event
|
350
|
+
:param str resolution_log: The log output after the resolutions.
|
351
|
+
:param str resolution_status: Indicates if the event succeeded.
|
306
352
|
:param str status: Status of the management station operation.
|
307
353
|
:param str time_first_occurred: The date and time that the event first occurred.
|
308
354
|
"""
|
309
355
|
if additional_details is not None:
|
310
356
|
pulumi.set(__self__, "additional_details", additional_details)
|
357
|
+
if attempted_resolutions is not None:
|
358
|
+
pulumi.set(__self__, "attempted_resolutions", attempted_resolutions)
|
311
359
|
if contents is not None:
|
312
360
|
pulumi.set(__self__, "contents", contents)
|
361
|
+
if error_cause is not None:
|
362
|
+
pulumi.set(__self__, "error_cause", error_cause)
|
363
|
+
if error_log is not None:
|
364
|
+
pulumi.set(__self__, "error_log", error_log)
|
313
365
|
if event_count is not None:
|
314
366
|
pulumi.set(__self__, "event_count", event_count)
|
315
367
|
if event_fingerprint is not None:
|
316
368
|
pulumi.set(__self__, "event_fingerprint", event_fingerprint)
|
369
|
+
if health_state is not None:
|
370
|
+
pulumi.set(__self__, "health_state", health_state)
|
317
371
|
if operation_type is not None:
|
318
372
|
pulumi.set(__self__, "operation_type", operation_type)
|
319
373
|
if reason is not None:
|
320
374
|
pulumi.set(__self__, "reason", reason)
|
375
|
+
if reboot_status is not None:
|
376
|
+
pulumi.set(__self__, "reboot_status", reboot_status)
|
377
|
+
if resolution_log is not None:
|
378
|
+
pulumi.set(__self__, "resolution_log", resolution_log)
|
379
|
+
if resolution_status is not None:
|
380
|
+
pulumi.set(__self__, "resolution_status", resolution_status)
|
321
381
|
if status is not None:
|
322
382
|
pulumi.set(__self__, "status", status)
|
323
383
|
if time_first_occurred is not None:
|
@@ -331,6 +391,14 @@ class EventData(dict):
|
|
331
391
|
"""
|
332
392
|
return pulumi.get(self, "additional_details")
|
333
393
|
|
394
|
+
@property
|
395
|
+
@pulumi.getter(name="attemptedResolutions")
|
396
|
+
def attempted_resolutions(self) -> Optional[Sequence[str]]:
|
397
|
+
"""
|
398
|
+
The actions used to attempt fixing the error.
|
399
|
+
"""
|
400
|
+
return pulumi.get(self, "attempted_resolutions")
|
401
|
+
|
334
402
|
@property
|
335
403
|
@pulumi.getter
|
336
404
|
def contents(self) -> Optional[Sequence['outputs.EventDataContent']]:
|
@@ -339,6 +407,22 @@ class EventData(dict):
|
|
339
407
|
"""
|
340
408
|
return pulumi.get(self, "contents")
|
341
409
|
|
410
|
+
@property
|
411
|
+
@pulumi.getter(name="errorCause")
|
412
|
+
def error_cause(self) -> Optional[str]:
|
413
|
+
"""
|
414
|
+
The commands executed by the agent that caused the error.
|
415
|
+
"""
|
416
|
+
return pulumi.get(self, "error_cause")
|
417
|
+
|
418
|
+
@property
|
419
|
+
@pulumi.getter(name="errorLog")
|
420
|
+
def error_log(self) -> Optional[str]:
|
421
|
+
"""
|
422
|
+
The output log of the error.
|
423
|
+
"""
|
424
|
+
return pulumi.get(self, "error_log")
|
425
|
+
|
342
426
|
@property
|
343
427
|
@pulumi.getter(name="eventCount")
|
344
428
|
def event_count(self) -> Optional[int]:
|
@@ -355,6 +439,14 @@ class EventData(dict):
|
|
355
439
|
"""
|
356
440
|
return pulumi.get(self, "event_fingerprint")
|
357
441
|
|
442
|
+
@property
|
443
|
+
@pulumi.getter(name="healthState")
|
444
|
+
def health_state(self) -> Optional[str]:
|
445
|
+
"""
|
446
|
+
Health state of the management station
|
447
|
+
"""
|
448
|
+
return pulumi.get(self, "health_state")
|
449
|
+
|
358
450
|
@property
|
359
451
|
@pulumi.getter(name="operationType")
|
360
452
|
def operation_type(self) -> Optional[str]:
|
@@ -371,6 +463,30 @@ class EventData(dict):
|
|
371
463
|
"""
|
372
464
|
return pulumi.get(self, "reason")
|
373
465
|
|
466
|
+
@property
|
467
|
+
@pulumi.getter(name="rebootStatus")
|
468
|
+
def reboot_status(self) -> Optional[str]:
|
469
|
+
"""
|
470
|
+
Reboot status for the current event
|
471
|
+
"""
|
472
|
+
return pulumi.get(self, "reboot_status")
|
473
|
+
|
474
|
+
@property
|
475
|
+
@pulumi.getter(name="resolutionLog")
|
476
|
+
def resolution_log(self) -> Optional[str]:
|
477
|
+
"""
|
478
|
+
The log output after the resolutions.
|
479
|
+
"""
|
480
|
+
return pulumi.get(self, "resolution_log")
|
481
|
+
|
482
|
+
@property
|
483
|
+
@pulumi.getter(name="resolutionStatus")
|
484
|
+
def resolution_status(self) -> Optional[str]:
|
485
|
+
"""
|
486
|
+
Indicates if the event succeeded.
|
487
|
+
"""
|
488
|
+
return pulumi.get(self, "resolution_status")
|
489
|
+
|
374
490
|
@property
|
375
491
|
@pulumi.getter
|
376
492
|
def status(self) -> Optional[str]:
|
@@ -547,6 +663,8 @@ class EventDataContent(dict):
|
|
547
663
|
* `SOFTWARE_SOURCE` - Software source
|
548
664
|
* `AGENT` - Agent
|
549
665
|
* `MANAGEMENT_STATION` - Management Station
|
666
|
+
* `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
|
667
|
+
* `REBOOT` - Reboot
|
550
668
|
"""
|
551
669
|
if content_availability is not None:
|
552
670
|
pulumi.set(__self__, "content_availability", content_availability)
|
@@ -619,6 +737,8 @@ class EventDataContent(dict):
|
|
619
737
|
* `SOFTWARE_SOURCE` - Software source
|
620
738
|
* `AGENT` - Agent
|
621
739
|
* `MANAGEMENT_STATION` - Management Station
|
740
|
+
* `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
|
741
|
+
* `REBOOT` - Reboot
|
622
742
|
"""
|
623
743
|
return pulumi.get(self, "type")
|
624
744
|
|
@@ -1449,6 +1569,62 @@ class LifecycleStagePromoteSoftwareSourceManagementWorkRequestDetails(dict):
|
|
1449
1569
|
return pulumi.get(self, "display_name")
|
1450
1570
|
|
1451
1571
|
|
1572
|
+
@pulumi.output_type
|
1573
|
+
class LifecycleStageRebootManagementWorkRequestDetails(dict):
|
1574
|
+
@staticmethod
|
1575
|
+
def __key_warning(key: str):
|
1576
|
+
suggest = None
|
1577
|
+
if key == "displayName":
|
1578
|
+
suggest = "display_name"
|
1579
|
+
|
1580
|
+
if suggest:
|
1581
|
+
pulumi.log.warn(f"Key '{key}' not found in LifecycleStageRebootManagementWorkRequestDetails. Access the value via the '{suggest}' property getter instead.")
|
1582
|
+
|
1583
|
+
def __getitem__(self, key: str) -> Any:
|
1584
|
+
LifecycleStageRebootManagementWorkRequestDetails.__key_warning(key)
|
1585
|
+
return super().__getitem__(key)
|
1586
|
+
|
1587
|
+
def get(self, key: str, default = None) -> Any:
|
1588
|
+
LifecycleStageRebootManagementWorkRequestDetails.__key_warning(key)
|
1589
|
+
return super().get(key, default)
|
1590
|
+
|
1591
|
+
def __init__(__self__, *,
|
1592
|
+
description: Optional[str] = None,
|
1593
|
+
display_name: Optional[str] = None):
|
1594
|
+
"""
|
1595
|
+
:param str description: User-specified information about the job. Avoid entering confidential information.
|
1596
|
+
:param str display_name: A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
1597
|
+
|
1598
|
+
|
1599
|
+
** IMPORTANT **
|
1600
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1601
|
+
"""
|
1602
|
+
if description is not None:
|
1603
|
+
pulumi.set(__self__, "description", description)
|
1604
|
+
if display_name is not None:
|
1605
|
+
pulumi.set(__self__, "display_name", display_name)
|
1606
|
+
|
1607
|
+
@property
|
1608
|
+
@pulumi.getter
|
1609
|
+
def description(self) -> Optional[str]:
|
1610
|
+
"""
|
1611
|
+
User-specified information about the job. Avoid entering confidential information.
|
1612
|
+
"""
|
1613
|
+
return pulumi.get(self, "description")
|
1614
|
+
|
1615
|
+
@property
|
1616
|
+
@pulumi.getter(name="displayName")
|
1617
|
+
def display_name(self) -> Optional[str]:
|
1618
|
+
"""
|
1619
|
+
A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
1620
|
+
|
1621
|
+
|
1622
|
+
** IMPORTANT **
|
1623
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1624
|
+
"""
|
1625
|
+
return pulumi.get(self, "display_name")
|
1626
|
+
|
1627
|
+
|
1452
1628
|
@pulumi.output_type
|
1453
1629
|
class ManagedInstanceAutonomousSettings(dict):
|
1454
1630
|
@staticmethod
|
@@ -2159,6 +2335,62 @@ class ManagedInstanceGroupManageModuleStreamsManagementWorkRequestDetails(dict):
|
|
2159
2335
|
return pulumi.get(self, "display_name")
|
2160
2336
|
|
2161
2337
|
|
2338
|
+
@pulumi.output_type
|
2339
|
+
class ManagedInstanceGroupRebootManagementWorkRequestDetails(dict):
|
2340
|
+
@staticmethod
|
2341
|
+
def __key_warning(key: str):
|
2342
|
+
suggest = None
|
2343
|
+
if key == "displayName":
|
2344
|
+
suggest = "display_name"
|
2345
|
+
|
2346
|
+
if suggest:
|
2347
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedInstanceGroupRebootManagementWorkRequestDetails. Access the value via the '{suggest}' property getter instead.")
|
2348
|
+
|
2349
|
+
def __getitem__(self, key: str) -> Any:
|
2350
|
+
ManagedInstanceGroupRebootManagementWorkRequestDetails.__key_warning(key)
|
2351
|
+
return super().__getitem__(key)
|
2352
|
+
|
2353
|
+
def get(self, key: str, default = None) -> Any:
|
2354
|
+
ManagedInstanceGroupRebootManagementWorkRequestDetails.__key_warning(key)
|
2355
|
+
return super().get(key, default)
|
2356
|
+
|
2357
|
+
def __init__(__self__, *,
|
2358
|
+
description: Optional[str] = None,
|
2359
|
+
display_name: Optional[str] = None):
|
2360
|
+
"""
|
2361
|
+
:param str description: User-specified information about the job. Avoid entering confidential information.
|
2362
|
+
:param str display_name: A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
2363
|
+
|
2364
|
+
|
2365
|
+
** IMPORTANT **
|
2366
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2367
|
+
"""
|
2368
|
+
if description is not None:
|
2369
|
+
pulumi.set(__self__, "description", description)
|
2370
|
+
if display_name is not None:
|
2371
|
+
pulumi.set(__self__, "display_name", display_name)
|
2372
|
+
|
2373
|
+
@property
|
2374
|
+
@pulumi.getter
|
2375
|
+
def description(self) -> Optional[str]:
|
2376
|
+
"""
|
2377
|
+
User-specified information about the job. Avoid entering confidential information.
|
2378
|
+
"""
|
2379
|
+
return pulumi.get(self, "description")
|
2380
|
+
|
2381
|
+
@property
|
2382
|
+
@pulumi.getter(name="displayName")
|
2383
|
+
def display_name(self) -> Optional[str]:
|
2384
|
+
"""
|
2385
|
+
A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
2386
|
+
|
2387
|
+
|
2388
|
+
** IMPORTANT **
|
2389
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2390
|
+
"""
|
2391
|
+
return pulumi.get(self, "display_name")
|
2392
|
+
|
2393
|
+
|
2162
2394
|
@pulumi.output_type
|
2163
2395
|
class ManagedInstanceGroupRemovePackagesManagementWorkRequestDetails(dict):
|
2164
2396
|
@staticmethod
|
@@ -2559,6 +2791,62 @@ class ManagedInstanceManagedInstanceGroup(dict):
|
|
2559
2791
|
return pulumi.get(self, "id")
|
2560
2792
|
|
2561
2793
|
|
2794
|
+
@pulumi.output_type
|
2795
|
+
class ManagedInstanceRebootManagementWorkRequestDetails(dict):
|
2796
|
+
@staticmethod
|
2797
|
+
def __key_warning(key: str):
|
2798
|
+
suggest = None
|
2799
|
+
if key == "displayName":
|
2800
|
+
suggest = "display_name"
|
2801
|
+
|
2802
|
+
if suggest:
|
2803
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedInstanceRebootManagementWorkRequestDetails. Access the value via the '{suggest}' property getter instead.")
|
2804
|
+
|
2805
|
+
def __getitem__(self, key: str) -> Any:
|
2806
|
+
ManagedInstanceRebootManagementWorkRequestDetails.__key_warning(key)
|
2807
|
+
return super().__getitem__(key)
|
2808
|
+
|
2809
|
+
def get(self, key: str, default = None) -> Any:
|
2810
|
+
ManagedInstanceRebootManagementWorkRequestDetails.__key_warning(key)
|
2811
|
+
return super().get(key, default)
|
2812
|
+
|
2813
|
+
def __init__(__self__, *,
|
2814
|
+
description: Optional[str] = None,
|
2815
|
+
display_name: Optional[str] = None):
|
2816
|
+
"""
|
2817
|
+
:param str description: User-specified information about the job. Avoid entering confidential information.
|
2818
|
+
:param str display_name: A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
2819
|
+
|
2820
|
+
|
2821
|
+
** IMPORTANT **
|
2822
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2823
|
+
"""
|
2824
|
+
if description is not None:
|
2825
|
+
pulumi.set(__self__, "description", description)
|
2826
|
+
if display_name is not None:
|
2827
|
+
pulumi.set(__self__, "display_name", display_name)
|
2828
|
+
|
2829
|
+
@property
|
2830
|
+
@pulumi.getter
|
2831
|
+
def description(self) -> Optional[str]:
|
2832
|
+
"""
|
2833
|
+
User-specified information about the job. Avoid entering confidential information.
|
2834
|
+
"""
|
2835
|
+
return pulumi.get(self, "description")
|
2836
|
+
|
2837
|
+
@property
|
2838
|
+
@pulumi.getter(name="displayName")
|
2839
|
+
def display_name(self) -> Optional[str]:
|
2840
|
+
"""
|
2841
|
+
A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
2842
|
+
|
2843
|
+
|
2844
|
+
** IMPORTANT **
|
2845
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2846
|
+
"""
|
2847
|
+
return pulumi.get(self, "display_name")
|
2848
|
+
|
2849
|
+
|
2562
2850
|
@pulumi.output_type
|
2563
2851
|
class ManagedInstanceSoftwareSource(dict):
|
2564
2852
|
@staticmethod
|
@@ -2703,6 +2991,62 @@ class ManagedInstanceUpdatePackagesManagementWorkRequestDetails(dict):
|
|
2703
2991
|
return pulumi.get(self, "display_name")
|
2704
2992
|
|
2705
2993
|
|
2994
|
+
@pulumi.output_type
|
2995
|
+
class ManagementStationAssociateManagedInstancesManagementWorkRequestDetails(dict):
|
2996
|
+
@staticmethod
|
2997
|
+
def __key_warning(key: str):
|
2998
|
+
suggest = None
|
2999
|
+
if key == "displayName":
|
3000
|
+
suggest = "display_name"
|
3001
|
+
|
3002
|
+
if suggest:
|
3003
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagementStationAssociateManagedInstancesManagementWorkRequestDetails. Access the value via the '{suggest}' property getter instead.")
|
3004
|
+
|
3005
|
+
def __getitem__(self, key: str) -> Any:
|
3006
|
+
ManagementStationAssociateManagedInstancesManagementWorkRequestDetails.__key_warning(key)
|
3007
|
+
return super().__getitem__(key)
|
3008
|
+
|
3009
|
+
def get(self, key: str, default = None) -> Any:
|
3010
|
+
ManagementStationAssociateManagedInstancesManagementWorkRequestDetails.__key_warning(key)
|
3011
|
+
return super().get(key, default)
|
3012
|
+
|
3013
|
+
def __init__(__self__, *,
|
3014
|
+
description: Optional[str] = None,
|
3015
|
+
display_name: Optional[str] = None):
|
3016
|
+
"""
|
3017
|
+
:param str description: User-specified information about the job. Avoid entering confidential information.
|
3018
|
+
:param str display_name: A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
3019
|
+
|
3020
|
+
|
3021
|
+
** IMPORTANT **
|
3022
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
3023
|
+
"""
|
3024
|
+
if description is not None:
|
3025
|
+
pulumi.set(__self__, "description", description)
|
3026
|
+
if display_name is not None:
|
3027
|
+
pulumi.set(__self__, "display_name", display_name)
|
3028
|
+
|
3029
|
+
@property
|
3030
|
+
@pulumi.getter
|
3031
|
+
def description(self) -> Optional[str]:
|
3032
|
+
"""
|
3033
|
+
User-specified information about the job. Avoid entering confidential information.
|
3034
|
+
"""
|
3035
|
+
return pulumi.get(self, "description")
|
3036
|
+
|
3037
|
+
@property
|
3038
|
+
@pulumi.getter(name="displayName")
|
3039
|
+
def display_name(self) -> Optional[str]:
|
3040
|
+
"""
|
3041
|
+
A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
3042
|
+
|
3043
|
+
|
3044
|
+
** IMPORTANT **
|
3045
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
3046
|
+
"""
|
3047
|
+
return pulumi.get(self, "display_name")
|
3048
|
+
|
3049
|
+
|
2706
3050
|
@pulumi.output_type
|
2707
3051
|
class ManagementStationHealth(dict):
|
2708
3052
|
def __init__(__self__, *,
|
@@ -2736,20 +3080,41 @@ class ManagementStationHealth(dict):
|
|
2736
3080
|
|
2737
3081
|
@pulumi.output_type
|
2738
3082
|
class ManagementStationMirror(dict):
|
3083
|
+
@staticmethod
|
3084
|
+
def __key_warning(key: str):
|
3085
|
+
suggest = None
|
3086
|
+
if key == "isSslverifyEnabled":
|
3087
|
+
suggest = "is_sslverify_enabled"
|
3088
|
+
|
3089
|
+
if suggest:
|
3090
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagementStationMirror. Access the value via the '{suggest}' property getter instead.")
|
3091
|
+
|
3092
|
+
def __getitem__(self, key: str) -> Any:
|
3093
|
+
ManagementStationMirror.__key_warning(key)
|
3094
|
+
return super().__getitem__(key)
|
3095
|
+
|
3096
|
+
def get(self, key: str, default = None) -> Any:
|
3097
|
+
ManagementStationMirror.__key_warning(key)
|
3098
|
+
return super().get(key, default)
|
3099
|
+
|
2739
3100
|
def __init__(__self__, *,
|
2740
3101
|
directory: str,
|
2741
3102
|
port: str,
|
2742
3103
|
sslport: str,
|
3104
|
+
is_sslverify_enabled: Optional[bool] = None,
|
2743
3105
|
sslcert: Optional[str] = None):
|
2744
3106
|
"""
|
2745
3107
|
:param str directory: (Updatable) Path to the data volume on the management station where software source mirrors are stored.
|
2746
3108
|
:param str port: (Updatable) Default mirror listening port for http.
|
2747
3109
|
:param str sslport: (Updatable) Default mirror listening port for https.
|
3110
|
+
:param bool is_sslverify_enabled: (Updatable) When enabled, the SSL certificate is verified whenever an instance installs or updates a package from a software source that is mirrored on the management station.
|
2748
3111
|
:param str sslcert: (Updatable) Path to the SSL cerfificate.
|
2749
3112
|
"""
|
2750
3113
|
pulumi.set(__self__, "directory", directory)
|
2751
3114
|
pulumi.set(__self__, "port", port)
|
2752
3115
|
pulumi.set(__self__, "sslport", sslport)
|
3116
|
+
if is_sslverify_enabled is not None:
|
3117
|
+
pulumi.set(__self__, "is_sslverify_enabled", is_sslverify_enabled)
|
2753
3118
|
if sslcert is not None:
|
2754
3119
|
pulumi.set(__self__, "sslcert", sslcert)
|
2755
3120
|
|
@@ -2777,6 +3142,14 @@ class ManagementStationMirror(dict):
|
|
2777
3142
|
"""
|
2778
3143
|
return pulumi.get(self, "sslport")
|
2779
3144
|
|
3145
|
+
@property
|
3146
|
+
@pulumi.getter(name="isSslverifyEnabled")
|
3147
|
+
def is_sslverify_enabled(self) -> Optional[bool]:
|
3148
|
+
"""
|
3149
|
+
(Updatable) When enabled, the SSL certificate is verified whenever an instance installs or updates a package from a software source that is mirrored on the management station.
|
3150
|
+
"""
|
3151
|
+
return pulumi.get(self, "is_sslverify_enabled")
|
3152
|
+
|
2780
3153
|
@property
|
2781
3154
|
@pulumi.getter
|
2782
3155
|
def sslcert(self) -> Optional[str]:
|
@@ -2854,11 +3227,59 @@ class ManagementStationMirrorSyncStatus(dict):
|
|
2854
3227
|
|
2855
3228
|
|
2856
3229
|
@pulumi.output_type
|
2857
|
-
class
|
3230
|
+
class ManagementStationPeerManagementStation(dict):
|
2858
3231
|
@staticmethod
|
2859
3232
|
def __key_warning(key: str):
|
2860
3233
|
suggest = None
|
2861
|
-
if key == "
|
3234
|
+
if key == "displayName":
|
3235
|
+
suggest = "display_name"
|
3236
|
+
|
3237
|
+
if suggest:
|
3238
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagementStationPeerManagementStation. Access the value via the '{suggest}' property getter instead.")
|
3239
|
+
|
3240
|
+
def __getitem__(self, key: str) -> Any:
|
3241
|
+
ManagementStationPeerManagementStation.__key_warning(key)
|
3242
|
+
return super().__getitem__(key)
|
3243
|
+
|
3244
|
+
def get(self, key: str, default = None) -> Any:
|
3245
|
+
ManagementStationPeerManagementStation.__key_warning(key)
|
3246
|
+
return super().get(key, default)
|
3247
|
+
|
3248
|
+
def __init__(__self__, *,
|
3249
|
+
display_name: Optional[str] = None,
|
3250
|
+
id: Optional[str] = None):
|
3251
|
+
"""
|
3252
|
+
:param str display_name: (Updatable) User-friendly name for the management station. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3253
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
3254
|
+
"""
|
3255
|
+
if display_name is not None:
|
3256
|
+
pulumi.set(__self__, "display_name", display_name)
|
3257
|
+
if id is not None:
|
3258
|
+
pulumi.set(__self__, "id", id)
|
3259
|
+
|
3260
|
+
@property
|
3261
|
+
@pulumi.getter(name="displayName")
|
3262
|
+
def display_name(self) -> Optional[str]:
|
3263
|
+
"""
|
3264
|
+
(Updatable) User-friendly name for the management station. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3265
|
+
"""
|
3266
|
+
return pulumi.get(self, "display_name")
|
3267
|
+
|
3268
|
+
@property
|
3269
|
+
@pulumi.getter
|
3270
|
+
def id(self) -> Optional[str]:
|
3271
|
+
"""
|
3272
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
3273
|
+
"""
|
3274
|
+
return pulumi.get(self, "id")
|
3275
|
+
|
3276
|
+
|
3277
|
+
@pulumi.output_type
|
3278
|
+
class ManagementStationProxy(dict):
|
3279
|
+
@staticmethod
|
3280
|
+
def __key_warning(key: str):
|
3281
|
+
suggest = None
|
3282
|
+
if key == "isEnabled":
|
2862
3283
|
suggest = "is_enabled"
|
2863
3284
|
|
2864
3285
|
if suggest:
|
@@ -2947,7 +3368,7 @@ class ProfileLifecycleEnvironment(dict):
|
|
2947
3368
|
display_name: Optional[str] = None,
|
2948
3369
|
id: Optional[str] = None):
|
2949
3370
|
"""
|
2950
|
-
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique
|
3371
|
+
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
2951
3372
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
2952
3373
|
"""
|
2953
3374
|
if display_name is not None:
|
@@ -2959,7 +3380,7 @@ class ProfileLifecycleEnvironment(dict):
|
|
2959
3380
|
@pulumi.getter(name="displayName")
|
2960
3381
|
def display_name(self) -> Optional[str]:
|
2961
3382
|
"""
|
2962
|
-
(Updatable) A user-friendly name. Does not have to be unique
|
3383
|
+
(Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
2963
3384
|
"""
|
2964
3385
|
return pulumi.get(self, "display_name")
|
2965
3386
|
|
@@ -2995,7 +3416,7 @@ class ProfileLifecycleStage(dict):
|
|
2995
3416
|
display_name: Optional[str] = None,
|
2996
3417
|
id: Optional[str] = None):
|
2997
3418
|
"""
|
2998
|
-
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique
|
3419
|
+
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
2999
3420
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
3000
3421
|
"""
|
3001
3422
|
if display_name is not None:
|
@@ -3007,7 +3428,7 @@ class ProfileLifecycleStage(dict):
|
|
3007
3428
|
@pulumi.getter(name="displayName")
|
3008
3429
|
def display_name(self) -> Optional[str]:
|
3009
3430
|
"""
|
3010
|
-
(Updatable) A user-friendly name. Does not have to be unique
|
3431
|
+
(Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3011
3432
|
"""
|
3012
3433
|
return pulumi.get(self, "display_name")
|
3013
3434
|
|
@@ -3043,7 +3464,7 @@ class ProfileManagedInstanceGroup(dict):
|
|
3043
3464
|
display_name: Optional[str] = None,
|
3044
3465
|
id: Optional[str] = None):
|
3045
3466
|
"""
|
3046
|
-
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique
|
3467
|
+
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3047
3468
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
3048
3469
|
"""
|
3049
3470
|
if display_name is not None:
|
@@ -3055,7 +3476,7 @@ class ProfileManagedInstanceGroup(dict):
|
|
3055
3476
|
@pulumi.getter(name="displayName")
|
3056
3477
|
def display_name(self) -> Optional[str]:
|
3057
3478
|
"""
|
3058
|
-
(Updatable) A user-friendly name. Does not have to be unique
|
3479
|
+
(Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3059
3480
|
"""
|
3060
3481
|
return pulumi.get(self, "display_name")
|
3061
3482
|
|
@@ -3099,7 +3520,7 @@ class ProfileSoftwareSource(dict):
|
|
3099
3520
|
software_source_type: Optional[str] = None):
|
3100
3521
|
"""
|
3101
3522
|
:param str description: (Updatable) User-specified description of the registration profile.
|
3102
|
-
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique
|
3523
|
+
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3103
3524
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
3104
3525
|
:param bool is_mandatory_for_autonomous_linux: Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
|
3105
3526
|
:param str software_source_type: Type of the software source.
|
@@ -3127,7 +3548,7 @@ class ProfileSoftwareSource(dict):
|
|
3127
3548
|
@pulumi.getter(name="displayName")
|
3128
3549
|
def display_name(self) -> Optional[str]:
|
3129
3550
|
"""
|
3130
|
-
(Updatable) A user-friendly name. Does not have to be unique
|
3551
|
+
(Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
3131
3552
|
"""
|
3132
3553
|
return pulumi.get(self, "display_name")
|
3133
3554
|
|
@@ -3167,6 +3588,8 @@ class ScheduledJobOperation(dict):
|
|
3167
3588
|
suggest = "manage_module_streams_details"
|
3168
3589
|
elif key == "packageNames":
|
3169
3590
|
suggest = "package_names"
|
3591
|
+
elif key == "rebootTimeoutInMins":
|
3592
|
+
suggest = "reboot_timeout_in_mins"
|
3170
3593
|
elif key == "softwareSourceIds":
|
3171
3594
|
suggest = "software_source_ids"
|
3172
3595
|
elif key == "switchModuleStreamsDetails":
|
@@ -3189,6 +3612,7 @@ class ScheduledJobOperation(dict):
|
|
3189
3612
|
operation_type: str,
|
3190
3613
|
manage_module_streams_details: Optional['outputs.ScheduledJobOperationManageModuleStreamsDetails'] = None,
|
3191
3614
|
package_names: Optional[Sequence[str]] = None,
|
3615
|
+
reboot_timeout_in_mins: Optional[int] = None,
|
3192
3616
|
software_source_ids: Optional[Sequence[str]] = None,
|
3193
3617
|
switch_module_streams_details: Optional['outputs.ScheduledJobOperationSwitchModuleStreamsDetails'] = None,
|
3194
3618
|
windows_update_names: Optional[Sequence[str]] = None):
|
@@ -3196,6 +3620,7 @@ class ScheduledJobOperation(dict):
|
|
3196
3620
|
:param str operation_type: (Updatable) The type of operation this scheduled job performs.
|
3197
3621
|
:param 'ScheduledJobOperationManageModuleStreamsDetailsArgs' manage_module_streams_details: (Updatable) The set of changes to make to the state of the modules, streams, and profiles on the managed target.
|
3198
3622
|
:param Sequence[str] package_names: (Updatable) The names of the target packages. This parameter only applies when the scheduled job is for installing, updating, or removing packages.
|
3623
|
+
:param int reboot_timeout_in_mins: (Updatable) The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
3199
3624
|
:param Sequence[str] software_source_ids: (Updatable) The software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). This parameter only applies when the scheduled job is for attaching or detaching software sources.
|
3200
3625
|
:param 'ScheduledJobOperationSwitchModuleStreamsDetailsArgs' switch_module_streams_details: (Updatable) Provides the information used to update a module stream.
|
3201
3626
|
:param Sequence[str] windows_update_names: (Updatable) Unique identifier for the Windows update. This parameter only applies if the scheduled job is for installing Windows updates. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. For example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed'.
|
@@ -3205,6 +3630,8 @@ class ScheduledJobOperation(dict):
|
|
3205
3630
|
pulumi.set(__self__, "manage_module_streams_details", manage_module_streams_details)
|
3206
3631
|
if package_names is not None:
|
3207
3632
|
pulumi.set(__self__, "package_names", package_names)
|
3633
|
+
if reboot_timeout_in_mins is not None:
|
3634
|
+
pulumi.set(__self__, "reboot_timeout_in_mins", reboot_timeout_in_mins)
|
3208
3635
|
if software_source_ids is not None:
|
3209
3636
|
pulumi.set(__self__, "software_source_ids", software_source_ids)
|
3210
3637
|
if switch_module_streams_details is not None:
|
@@ -3236,6 +3663,14 @@ class ScheduledJobOperation(dict):
|
|
3236
3663
|
"""
|
3237
3664
|
return pulumi.get(self, "package_names")
|
3238
3665
|
|
3666
|
+
@property
|
3667
|
+
@pulumi.getter(name="rebootTimeoutInMins")
|
3668
|
+
def reboot_timeout_in_mins(self) -> Optional[int]:
|
3669
|
+
"""
|
3670
|
+
(Updatable) The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
3671
|
+
"""
|
3672
|
+
return pulumi.get(self, "reboot_timeout_in_mins")
|
3673
|
+
|
3239
3674
|
@property
|
3240
3675
|
@pulumi.getter(name="softwareSourceIds")
|
3241
3676
|
def software_source_ids(self) -> Optional[Sequence[str]]:
|
@@ -4047,6 +4482,54 @@ class SoftwareSourceVendorSoftwareSource(dict):
|
|
4047
4482
|
return pulumi.get(self, "id")
|
4048
4483
|
|
4049
4484
|
|
4485
|
+
@pulumi.output_type
|
4486
|
+
class WorkRequestRerunManagementWorkRequestDetails(dict):
|
4487
|
+
@staticmethod
|
4488
|
+
def __key_warning(key: str):
|
4489
|
+
suggest = None
|
4490
|
+
if key == "displayName":
|
4491
|
+
suggest = "display_name"
|
4492
|
+
|
4493
|
+
if suggest:
|
4494
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkRequestRerunManagementWorkRequestDetails. Access the value via the '{suggest}' property getter instead.")
|
4495
|
+
|
4496
|
+
def __getitem__(self, key: str) -> Any:
|
4497
|
+
WorkRequestRerunManagementWorkRequestDetails.__key_warning(key)
|
4498
|
+
return super().__getitem__(key)
|
4499
|
+
|
4500
|
+
def get(self, key: str, default = None) -> Any:
|
4501
|
+
WorkRequestRerunManagementWorkRequestDetails.__key_warning(key)
|
4502
|
+
return super().get(key, default)
|
4503
|
+
|
4504
|
+
def __init__(__self__, *,
|
4505
|
+
description: Optional[str] = None,
|
4506
|
+
display_name: Optional[str] = None):
|
4507
|
+
"""
|
4508
|
+
:param str description: User-specified information about the job. Avoid entering confidential information.
|
4509
|
+
:param str display_name: A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
4510
|
+
"""
|
4511
|
+
if description is not None:
|
4512
|
+
pulumi.set(__self__, "description", description)
|
4513
|
+
if display_name is not None:
|
4514
|
+
pulumi.set(__self__, "display_name", display_name)
|
4515
|
+
|
4516
|
+
@property
|
4517
|
+
@pulumi.getter
|
4518
|
+
def description(self) -> Optional[str]:
|
4519
|
+
"""
|
4520
|
+
User-specified information about the job. Avoid entering confidential information.
|
4521
|
+
"""
|
4522
|
+
return pulumi.get(self, "description")
|
4523
|
+
|
4524
|
+
@property
|
4525
|
+
@pulumi.getter(name="displayName")
|
4526
|
+
def display_name(self) -> Optional[str]:
|
4527
|
+
"""
|
4528
|
+
A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.
|
4529
|
+
"""
|
4530
|
+
return pulumi.get(self, "display_name")
|
4531
|
+
|
4532
|
+
|
4050
4533
|
@pulumi.output_type
|
4051
4534
|
class GetEntitlementsEntitlementCollectionResult(dict):
|
4052
4535
|
def __init__(__self__, *,
|
@@ -4055,7 +4538,7 @@ class GetEntitlementsEntitlementCollectionResult(dict):
|
|
4055
4538
|
items: Sequence['outputs.GetEntitlementsEntitlementCollectionItemResult']):
|
4056
4539
|
"""
|
4057
4540
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
|
4058
|
-
:param str csi: A filter to return entitlements that match the given CSI.
|
4541
|
+
:param str csi: A filter to return entitlements that match the given customer support identifier (CSI).
|
4059
4542
|
:param Sequence['GetEntitlementsEntitlementCollectionItemArgs'] items: List of entitlements.
|
4060
4543
|
"""
|
4061
4544
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -4074,7 +4557,7 @@ class GetEntitlementsEntitlementCollectionResult(dict):
|
|
4074
4557
|
@pulumi.getter
|
4075
4558
|
def csi(self) -> str:
|
4076
4559
|
"""
|
4077
|
-
A filter to return entitlements that match the given CSI.
|
4560
|
+
A filter to return entitlements that match the given customer support identifier (CSI).
|
4078
4561
|
"""
|
4079
4562
|
return pulumi.get(self, "csi")
|
4080
4563
|
|
@@ -4095,7 +4578,7 @@ class GetEntitlementsEntitlementCollectionItemResult(dict):
|
|
4095
4578
|
vendor_name: str):
|
4096
4579
|
"""
|
4097
4580
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
|
4098
|
-
:param str csi: A filter to return entitlements that match the given CSI.
|
4581
|
+
:param str csi: A filter to return entitlements that match the given customer support identifier (CSI).
|
4099
4582
|
:param str vendor_name: A filter to return only resources that match the given vendor name.
|
4100
4583
|
"""
|
4101
4584
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -4114,7 +4597,7 @@ class GetEntitlementsEntitlementCollectionItemResult(dict):
|
|
4114
4597
|
@pulumi.getter
|
4115
4598
|
def csi(self) -> str:
|
4116
4599
|
"""
|
4117
|
-
A filter to return entitlements that match the given CSI.
|
4600
|
+
A filter to return entitlements that match the given customer support identifier (CSI).
|
4118
4601
|
"""
|
4119
4602
|
return pulumi.get(self, "csi")
|
4120
4603
|
|
@@ -4733,29 +5216,50 @@ class GetErratumPackageSoftwareSourceResult(dict):
|
|
4733
5216
|
class GetEventDataResult(dict):
|
4734
5217
|
def __init__(__self__, *,
|
4735
5218
|
additional_details: Sequence['outputs.GetEventDataAdditionalDetailResult'],
|
5219
|
+
attempted_resolutions: Sequence[str],
|
4736
5220
|
contents: Sequence['outputs.GetEventDataContentResult'],
|
5221
|
+
error_cause: str,
|
5222
|
+
error_log: str,
|
4737
5223
|
event_count: int,
|
4738
5224
|
event_fingerprint: str,
|
5225
|
+
health_state: str,
|
4739
5226
|
operation_type: str,
|
4740
5227
|
reason: str,
|
5228
|
+
reboot_status: str,
|
5229
|
+
resolution_log: str,
|
5230
|
+
resolution_status: str,
|
4741
5231
|
status: str,
|
4742
5232
|
time_first_occurred: str):
|
4743
5233
|
"""
|
4744
5234
|
:param Sequence['GetEventDataAdditionalDetailArgs'] additional_details: Provides additional information for the work request associated with an event.
|
5235
|
+
:param Sequence[str] attempted_resolutions: The actions used to attempt fixing the error.
|
4745
5236
|
:param Sequence['GetEventDataContentArgs'] contents: Provides information collected for the exploit attempt event.
|
5237
|
+
:param str error_cause: The commands executed by the agent that caused the error.
|
5238
|
+
:param str error_log: The output log of the error.
|
4746
5239
|
:param int event_count: Number of times the event has occurred.
|
4747
5240
|
:param str event_fingerprint: Fingerprint of the event.
|
5241
|
+
:param str health_state: Health state of the management station
|
4748
5242
|
:param str operation_type: Type of management station operation.
|
4749
5243
|
:param str reason: Reason for the event.
|
5244
|
+
:param str reboot_status: Reboot status for the current event
|
5245
|
+
:param str resolution_log: The log output after the resolutions.
|
5246
|
+
:param str resolution_status: Indicates if the event succeeded.
|
4750
5247
|
:param str status: Status of the management station operation.
|
4751
5248
|
:param str time_first_occurred: The date and time that the event first occurred.
|
4752
5249
|
"""
|
4753
5250
|
pulumi.set(__self__, "additional_details", additional_details)
|
5251
|
+
pulumi.set(__self__, "attempted_resolutions", attempted_resolutions)
|
4754
5252
|
pulumi.set(__self__, "contents", contents)
|
5253
|
+
pulumi.set(__self__, "error_cause", error_cause)
|
5254
|
+
pulumi.set(__self__, "error_log", error_log)
|
4755
5255
|
pulumi.set(__self__, "event_count", event_count)
|
4756
5256
|
pulumi.set(__self__, "event_fingerprint", event_fingerprint)
|
5257
|
+
pulumi.set(__self__, "health_state", health_state)
|
4757
5258
|
pulumi.set(__self__, "operation_type", operation_type)
|
4758
5259
|
pulumi.set(__self__, "reason", reason)
|
5260
|
+
pulumi.set(__self__, "reboot_status", reboot_status)
|
5261
|
+
pulumi.set(__self__, "resolution_log", resolution_log)
|
5262
|
+
pulumi.set(__self__, "resolution_status", resolution_status)
|
4759
5263
|
pulumi.set(__self__, "status", status)
|
4760
5264
|
pulumi.set(__self__, "time_first_occurred", time_first_occurred)
|
4761
5265
|
|
@@ -4767,6 +5271,14 @@ class GetEventDataResult(dict):
|
|
4767
5271
|
"""
|
4768
5272
|
return pulumi.get(self, "additional_details")
|
4769
5273
|
|
5274
|
+
@property
|
5275
|
+
@pulumi.getter(name="attemptedResolutions")
|
5276
|
+
def attempted_resolutions(self) -> Sequence[str]:
|
5277
|
+
"""
|
5278
|
+
The actions used to attempt fixing the error.
|
5279
|
+
"""
|
5280
|
+
return pulumi.get(self, "attempted_resolutions")
|
5281
|
+
|
4770
5282
|
@property
|
4771
5283
|
@pulumi.getter
|
4772
5284
|
def contents(self) -> Sequence['outputs.GetEventDataContentResult']:
|
@@ -4775,6 +5287,22 @@ class GetEventDataResult(dict):
|
|
4775
5287
|
"""
|
4776
5288
|
return pulumi.get(self, "contents")
|
4777
5289
|
|
5290
|
+
@property
|
5291
|
+
@pulumi.getter(name="errorCause")
|
5292
|
+
def error_cause(self) -> str:
|
5293
|
+
"""
|
5294
|
+
The commands executed by the agent that caused the error.
|
5295
|
+
"""
|
5296
|
+
return pulumi.get(self, "error_cause")
|
5297
|
+
|
5298
|
+
@property
|
5299
|
+
@pulumi.getter(name="errorLog")
|
5300
|
+
def error_log(self) -> str:
|
5301
|
+
"""
|
5302
|
+
The output log of the error.
|
5303
|
+
"""
|
5304
|
+
return pulumi.get(self, "error_log")
|
5305
|
+
|
4778
5306
|
@property
|
4779
5307
|
@pulumi.getter(name="eventCount")
|
4780
5308
|
def event_count(self) -> int:
|
@@ -4791,6 +5319,14 @@ class GetEventDataResult(dict):
|
|
4791
5319
|
"""
|
4792
5320
|
return pulumi.get(self, "event_fingerprint")
|
4793
5321
|
|
5322
|
+
@property
|
5323
|
+
@pulumi.getter(name="healthState")
|
5324
|
+
def health_state(self) -> str:
|
5325
|
+
"""
|
5326
|
+
Health state of the management station
|
5327
|
+
"""
|
5328
|
+
return pulumi.get(self, "health_state")
|
5329
|
+
|
4794
5330
|
@property
|
4795
5331
|
@pulumi.getter(name="operationType")
|
4796
5332
|
def operation_type(self) -> str:
|
@@ -4807,6 +5343,30 @@ class GetEventDataResult(dict):
|
|
4807
5343
|
"""
|
4808
5344
|
return pulumi.get(self, "reason")
|
4809
5345
|
|
5346
|
+
@property
|
5347
|
+
@pulumi.getter(name="rebootStatus")
|
5348
|
+
def reboot_status(self) -> str:
|
5349
|
+
"""
|
5350
|
+
Reboot status for the current event
|
5351
|
+
"""
|
5352
|
+
return pulumi.get(self, "reboot_status")
|
5353
|
+
|
5354
|
+
@property
|
5355
|
+
@pulumi.getter(name="resolutionLog")
|
5356
|
+
def resolution_log(self) -> str:
|
5357
|
+
"""
|
5358
|
+
The log output after the resolutions.
|
5359
|
+
"""
|
5360
|
+
return pulumi.get(self, "resolution_log")
|
5361
|
+
|
5362
|
+
@property
|
5363
|
+
@pulumi.getter(name="resolutionStatus")
|
5364
|
+
def resolution_status(self) -> str:
|
5365
|
+
"""
|
5366
|
+
Indicates if the event succeeded.
|
5367
|
+
"""
|
5368
|
+
return pulumi.get(self, "resolution_status")
|
5369
|
+
|
4810
5370
|
@property
|
4811
5371
|
@pulumi.getter
|
4812
5372
|
def status(self) -> str:
|
@@ -4933,6 +5493,8 @@ class GetEventDataContentResult(dict):
|
|
4933
5493
|
* `SOFTWARE_SOURCE` - Software source
|
4934
5494
|
* `AGENT` - Agent
|
4935
5495
|
* `MANAGEMENT_STATION` - Management Station
|
5496
|
+
* `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
|
5497
|
+
* `REBOOT` - Reboot
|
4936
5498
|
"""
|
4937
5499
|
pulumi.set(__self__, "content_availability", content_availability)
|
4938
5500
|
pulumi.set(__self__, "content_location", content_location)
|
@@ -4999,6 +5561,8 @@ class GetEventDataContentResult(dict):
|
|
4999
5561
|
* `SOFTWARE_SOURCE` - Software source
|
5000
5562
|
* `AGENT` - Agent
|
5001
5563
|
* `MANAGEMENT_STATION` - Management Station
|
5564
|
+
* `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
|
5565
|
+
* `REBOOT` - Reboot
|
5002
5566
|
"""
|
5003
5567
|
return pulumi.get(self, "type")
|
5004
5568
|
|
@@ -5304,29 +5868,50 @@ class GetEventsEventCollectionItemResult(dict):
|
|
5304
5868
|
class GetEventsEventCollectionItemDataResult(dict):
|
5305
5869
|
def __init__(__self__, *,
|
5306
5870
|
additional_details: Sequence['outputs.GetEventsEventCollectionItemDataAdditionalDetailResult'],
|
5871
|
+
attempted_resolutions: Sequence[str],
|
5307
5872
|
contents: Sequence['outputs.GetEventsEventCollectionItemDataContentResult'],
|
5873
|
+
error_cause: str,
|
5874
|
+
error_log: str,
|
5308
5875
|
event_count: int,
|
5309
5876
|
event_fingerprint: str,
|
5877
|
+
health_state: str,
|
5310
5878
|
operation_type: str,
|
5311
5879
|
reason: str,
|
5880
|
+
reboot_status: str,
|
5881
|
+
resolution_log: str,
|
5882
|
+
resolution_status: str,
|
5312
5883
|
status: str,
|
5313
5884
|
time_first_occurred: str):
|
5314
5885
|
"""
|
5315
5886
|
:param Sequence['GetEventsEventCollectionItemDataAdditionalDetailArgs'] additional_details: Provides additional information for the work request associated with an event.
|
5887
|
+
:param Sequence[str] attempted_resolutions: The actions used to attempt fixing the error.
|
5316
5888
|
:param Sequence['GetEventsEventCollectionItemDataContentArgs'] contents: Provides information collected for the exploit attempt event.
|
5889
|
+
:param str error_cause: The commands executed by the agent that caused the error.
|
5890
|
+
:param str error_log: The output log of the error.
|
5317
5891
|
:param int event_count: Number of times the event has occurred.
|
5318
5892
|
:param str event_fingerprint: The eventFingerprint of the KernelEventData.
|
5893
|
+
:param str health_state: Health state of the management station
|
5319
5894
|
:param str operation_type: Type of management station operation.
|
5320
5895
|
:param str reason: Reason for the event.
|
5896
|
+
:param str reboot_status: Reboot status for the current event
|
5897
|
+
:param str resolution_log: The log output after the resolutions.
|
5898
|
+
:param str resolution_status: Indicates if the event succeeded.
|
5321
5899
|
:param str status: Status of the management station operation.
|
5322
5900
|
:param str time_first_occurred: The date and time that the event first occurred.
|
5323
5901
|
"""
|
5324
5902
|
pulumi.set(__self__, "additional_details", additional_details)
|
5903
|
+
pulumi.set(__self__, "attempted_resolutions", attempted_resolutions)
|
5325
5904
|
pulumi.set(__self__, "contents", contents)
|
5905
|
+
pulumi.set(__self__, "error_cause", error_cause)
|
5906
|
+
pulumi.set(__self__, "error_log", error_log)
|
5326
5907
|
pulumi.set(__self__, "event_count", event_count)
|
5327
5908
|
pulumi.set(__self__, "event_fingerprint", event_fingerprint)
|
5909
|
+
pulumi.set(__self__, "health_state", health_state)
|
5328
5910
|
pulumi.set(__self__, "operation_type", operation_type)
|
5329
5911
|
pulumi.set(__self__, "reason", reason)
|
5912
|
+
pulumi.set(__self__, "reboot_status", reboot_status)
|
5913
|
+
pulumi.set(__self__, "resolution_log", resolution_log)
|
5914
|
+
pulumi.set(__self__, "resolution_status", resolution_status)
|
5330
5915
|
pulumi.set(__self__, "status", status)
|
5331
5916
|
pulumi.set(__self__, "time_first_occurred", time_first_occurred)
|
5332
5917
|
|
@@ -5338,6 +5923,14 @@ class GetEventsEventCollectionItemDataResult(dict):
|
|
5338
5923
|
"""
|
5339
5924
|
return pulumi.get(self, "additional_details")
|
5340
5925
|
|
5926
|
+
@property
|
5927
|
+
@pulumi.getter(name="attemptedResolutions")
|
5928
|
+
def attempted_resolutions(self) -> Sequence[str]:
|
5929
|
+
"""
|
5930
|
+
The actions used to attempt fixing the error.
|
5931
|
+
"""
|
5932
|
+
return pulumi.get(self, "attempted_resolutions")
|
5933
|
+
|
5341
5934
|
@property
|
5342
5935
|
@pulumi.getter
|
5343
5936
|
def contents(self) -> Sequence['outputs.GetEventsEventCollectionItemDataContentResult']:
|
@@ -5346,6 +5939,22 @@ class GetEventsEventCollectionItemDataResult(dict):
|
|
5346
5939
|
"""
|
5347
5940
|
return pulumi.get(self, "contents")
|
5348
5941
|
|
5942
|
+
@property
|
5943
|
+
@pulumi.getter(name="errorCause")
|
5944
|
+
def error_cause(self) -> str:
|
5945
|
+
"""
|
5946
|
+
The commands executed by the agent that caused the error.
|
5947
|
+
"""
|
5948
|
+
return pulumi.get(self, "error_cause")
|
5949
|
+
|
5950
|
+
@property
|
5951
|
+
@pulumi.getter(name="errorLog")
|
5952
|
+
def error_log(self) -> str:
|
5953
|
+
"""
|
5954
|
+
The output log of the error.
|
5955
|
+
"""
|
5956
|
+
return pulumi.get(self, "error_log")
|
5957
|
+
|
5349
5958
|
@property
|
5350
5959
|
@pulumi.getter(name="eventCount")
|
5351
5960
|
def event_count(self) -> int:
|
@@ -5362,6 +5971,14 @@ class GetEventsEventCollectionItemDataResult(dict):
|
|
5362
5971
|
"""
|
5363
5972
|
return pulumi.get(self, "event_fingerprint")
|
5364
5973
|
|
5974
|
+
@property
|
5975
|
+
@pulumi.getter(name="healthState")
|
5976
|
+
def health_state(self) -> str:
|
5977
|
+
"""
|
5978
|
+
Health state of the management station
|
5979
|
+
"""
|
5980
|
+
return pulumi.get(self, "health_state")
|
5981
|
+
|
5365
5982
|
@property
|
5366
5983
|
@pulumi.getter(name="operationType")
|
5367
5984
|
def operation_type(self) -> str:
|
@@ -5378,6 +5995,30 @@ class GetEventsEventCollectionItemDataResult(dict):
|
|
5378
5995
|
"""
|
5379
5996
|
return pulumi.get(self, "reason")
|
5380
5997
|
|
5998
|
+
@property
|
5999
|
+
@pulumi.getter(name="rebootStatus")
|
6000
|
+
def reboot_status(self) -> str:
|
6001
|
+
"""
|
6002
|
+
Reboot status for the current event
|
6003
|
+
"""
|
6004
|
+
return pulumi.get(self, "reboot_status")
|
6005
|
+
|
6006
|
+
@property
|
6007
|
+
@pulumi.getter(name="resolutionLog")
|
6008
|
+
def resolution_log(self) -> str:
|
6009
|
+
"""
|
6010
|
+
The log output after the resolutions.
|
6011
|
+
"""
|
6012
|
+
return pulumi.get(self, "resolution_log")
|
6013
|
+
|
6014
|
+
@property
|
6015
|
+
@pulumi.getter(name="resolutionStatus")
|
6016
|
+
def resolution_status(self) -> str:
|
6017
|
+
"""
|
6018
|
+
Indicates if the event succeeded.
|
6019
|
+
"""
|
6020
|
+
return pulumi.get(self, "resolution_status")
|
6021
|
+
|
5381
6022
|
@property
|
5382
6023
|
@pulumi.getter
|
5383
6024
|
def status(self) -> str:
|
@@ -9348,6 +9989,7 @@ class GetManagedInstancesManagedInstanceCollectionResult(dict):
|
|
9348
9989
|
@pulumi.output_type
|
9349
9990
|
class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
9350
9991
|
def __init__(__self__, *,
|
9992
|
+
agent_version: str,
|
9351
9993
|
architecture: str,
|
9352
9994
|
autonomous_settings: Sequence['outputs.GetManagedInstancesManagedInstanceCollectionItemAutonomousSettingResult'],
|
9353
9995
|
bug_updates_available: int,
|
@@ -9375,6 +10017,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9375
10017
|
other_updates_available: int,
|
9376
10018
|
primary_management_station_id: str,
|
9377
10019
|
profile: str,
|
10020
|
+
profile_version: str,
|
9378
10021
|
scheduled_job_count: int,
|
9379
10022
|
secondary_management_station_id: str,
|
9380
10023
|
security_updates_available: int,
|
@@ -9388,6 +10031,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9388
10031
|
updates_available: int,
|
9389
10032
|
work_request_count: int):
|
9390
10033
|
"""
|
10034
|
+
:param str agent_version: A filter to return only managed instances with the specified version of osmh-agent running.
|
9391
10035
|
:param str architecture: The CPU architecture type of the managed instance.
|
9392
10036
|
:param Sequence['GetManagedInstancesManagedInstanceCollectionItemAutonomousSettingArgs'] autonomous_settings: Settings for the Autonomous Linux service.
|
9393
10037
|
:param int bug_updates_available: Number of bug fix type updates available for installation.
|
@@ -9400,7 +10044,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9400
10044
|
:param int installed_windows_updates: Number of Windows updates installed on the instance.
|
9401
10045
|
:param bool is_managed_by_autonomous_linux: Indicates whether to list only resources managed by the Autonomous Linux service.
|
9402
10046
|
:param bool is_management_station: A filter to return only managed instances that are acting as management stations.
|
9403
|
-
:param bool is_reboot_required:
|
10047
|
+
:param bool is_reboot_required: A filter to return only managed instances that require a reboot to install updates.
|
9404
10048
|
:param str ksplice_effective_kernel_version: The ksplice effective kernel version.
|
9405
10049
|
:param Sequence['GetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironmentArgs'] lifecycle_environments: A filter to return only managed instances in a specific lifecycle environment.
|
9406
10050
|
:param Sequence['GetManagedInstancesManagedInstanceCollectionItemLifecycleStageArgs'] lifecycle_stages: A filter to return only managed instances that are associated with the specified lifecycle environment.
|
@@ -9415,8 +10059,9 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9415
10059
|
:param int other_updates_available: Number of non-classified (other) updates available for installation.
|
9416
10060
|
:param str primary_management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as primary management station.
|
9417
10061
|
:param str profile: A multi filter to return only managed instances that match the given profile ids.
|
10062
|
+
:param str profile_version: The version of the profile that was used to register this instance with the service.
|
9418
10063
|
:param int scheduled_job_count: Number of scheduled jobs associated with this instance.
|
9419
|
-
:param str secondary_management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary
|
10064
|
+
:param str secondary_management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary management station.
|
9420
10065
|
:param int security_updates_available: Number of security type updates available for installation.
|
9421
10066
|
:param Sequence['GetManagedInstancesManagedInstanceCollectionItemSoftwareSourceArgs'] software_sources: The list of software sources currently attached to the managed instance.
|
9422
10067
|
:param str status: A filter to return only managed instances whose status matches the status provided.
|
@@ -9428,6 +10073,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9428
10073
|
:param int updates_available: Number of updates available for installation.
|
9429
10074
|
:param int work_request_count: Number of work requests associated with this instance.
|
9430
10075
|
"""
|
10076
|
+
pulumi.set(__self__, "agent_version", agent_version)
|
9431
10077
|
pulumi.set(__self__, "architecture", architecture)
|
9432
10078
|
pulumi.set(__self__, "autonomous_settings", autonomous_settings)
|
9433
10079
|
pulumi.set(__self__, "bug_updates_available", bug_updates_available)
|
@@ -9455,6 +10101,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9455
10101
|
pulumi.set(__self__, "other_updates_available", other_updates_available)
|
9456
10102
|
pulumi.set(__self__, "primary_management_station_id", primary_management_station_id)
|
9457
10103
|
pulumi.set(__self__, "profile", profile)
|
10104
|
+
pulumi.set(__self__, "profile_version", profile_version)
|
9458
10105
|
pulumi.set(__self__, "scheduled_job_count", scheduled_job_count)
|
9459
10106
|
pulumi.set(__self__, "secondary_management_station_id", secondary_management_station_id)
|
9460
10107
|
pulumi.set(__self__, "security_updates_available", security_updates_available)
|
@@ -9468,6 +10115,14 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9468
10115
|
pulumi.set(__self__, "updates_available", updates_available)
|
9469
10116
|
pulumi.set(__self__, "work_request_count", work_request_count)
|
9470
10117
|
|
10118
|
+
@property
|
10119
|
+
@pulumi.getter(name="agentVersion")
|
10120
|
+
def agent_version(self) -> str:
|
10121
|
+
"""
|
10122
|
+
A filter to return only managed instances with the specified version of osmh-agent running.
|
10123
|
+
"""
|
10124
|
+
return pulumi.get(self, "agent_version")
|
10125
|
+
|
9471
10126
|
@property
|
9472
10127
|
@pulumi.getter
|
9473
10128
|
def architecture(self) -> str:
|
@@ -9568,7 +10223,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9568
10223
|
@pulumi.getter(name="isRebootRequired")
|
9569
10224
|
def is_reboot_required(self) -> bool:
|
9570
10225
|
"""
|
9571
|
-
|
10226
|
+
A filter to return only managed instances that require a reboot to install updates.
|
9572
10227
|
"""
|
9573
10228
|
return pulumi.get(self, "is_reboot_required")
|
9574
10229
|
|
@@ -9684,6 +10339,14 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9684
10339
|
"""
|
9685
10340
|
return pulumi.get(self, "profile")
|
9686
10341
|
|
10342
|
+
@property
|
10343
|
+
@pulumi.getter(name="profileVersion")
|
10344
|
+
def profile_version(self) -> str:
|
10345
|
+
"""
|
10346
|
+
The version of the profile that was used to register this instance with the service.
|
10347
|
+
"""
|
10348
|
+
return pulumi.get(self, "profile_version")
|
10349
|
+
|
9687
10350
|
@property
|
9688
10351
|
@pulumi.getter(name="scheduledJobCount")
|
9689
10352
|
def scheduled_job_count(self) -> int:
|
@@ -9696,7 +10359,7 @@ class GetManagedInstancesManagedInstanceCollectionItemResult(dict):
|
|
9696
10359
|
@pulumi.getter(name="secondaryManagementStationId")
|
9697
10360
|
def secondary_management_station_id(self) -> str:
|
9698
10361
|
"""
|
9699
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary
|
10362
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary management station.
|
9700
10363
|
"""
|
9701
10364
|
return pulumi.get(self, "secondary_management_station_id")
|
9702
10365
|
|
@@ -9992,16 +10655,19 @@ class GetManagementStationHealthResult(dict):
|
|
9992
10655
|
class GetManagementStationMirrorResult(dict):
|
9993
10656
|
def __init__(__self__, *,
|
9994
10657
|
directory: str,
|
10658
|
+
is_sslverify_enabled: bool,
|
9995
10659
|
port: str,
|
9996
10660
|
sslcert: str,
|
9997
10661
|
sslport: str):
|
9998
10662
|
"""
|
9999
10663
|
:param str directory: Path to the data volume on the management station where software source mirrors are stored.
|
10664
|
+
:param bool is_sslverify_enabled: When enabled, the SSL certificate is verified whenever an instance installs or updates a package from a software source that is mirrored on the management station.
|
10000
10665
|
:param str port: Listening port used for the proxy.
|
10001
10666
|
:param str sslcert: Path to the SSL cerfificate.
|
10002
10667
|
:param str sslport: Default mirror listening port for https.
|
10003
10668
|
"""
|
10004
10669
|
pulumi.set(__self__, "directory", directory)
|
10670
|
+
pulumi.set(__self__, "is_sslverify_enabled", is_sslverify_enabled)
|
10005
10671
|
pulumi.set(__self__, "port", port)
|
10006
10672
|
pulumi.set(__self__, "sslcert", sslcert)
|
10007
10673
|
pulumi.set(__self__, "sslport", sslport)
|
@@ -10014,6 +10680,14 @@ class GetManagementStationMirrorResult(dict):
|
|
10014
10680
|
"""
|
10015
10681
|
return pulumi.get(self, "directory")
|
10016
10682
|
|
10683
|
+
@property
|
10684
|
+
@pulumi.getter(name="isSslverifyEnabled")
|
10685
|
+
def is_sslverify_enabled(self) -> bool:
|
10686
|
+
"""
|
10687
|
+
When enabled, the SSL certificate is verified whenever an instance installs or updates a package from a software source that is mirrored on the management station.
|
10688
|
+
"""
|
10689
|
+
return pulumi.get(self, "is_sslverify_enabled")
|
10690
|
+
|
10017
10691
|
@property
|
10018
10692
|
@pulumi.getter
|
10019
10693
|
def port(self) -> str:
|
@@ -10154,27 +10828,33 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10154
10828
|
id: str,
|
10155
10829
|
log: str,
|
10156
10830
|
os_family: str,
|
10831
|
+
package_count: int,
|
10157
10832
|
percentage: int,
|
10833
|
+
size: str,
|
10158
10834
|
state: str,
|
10159
10835
|
time_last_synced: str,
|
10160
10836
|
type: str):
|
10161
10837
|
"""
|
10162
|
-
:param str arch_type: The architecture type supported by the
|
10838
|
+
:param str arch_type: The architecture type supported by the software source.
|
10163
10839
|
:param str display_name: A filter to return resources that match the given user-friendly name.
|
10164
|
-
:param str id: OCID of
|
10840
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
10165
10841
|
:param str log: The current log from the management station plugin.
|
10166
|
-
:param str os_family: The OS family the
|
10167
|
-
:param int
|
10168
|
-
:param
|
10169
|
-
:param str
|
10170
|
-
:param str
|
10842
|
+
:param str os_family: The OS family of the software source.
|
10843
|
+
:param int package_count: The number of packages within the mirrored software source.
|
10844
|
+
:param int percentage: A decimal number representing the percentage of the software source that has been synced.
|
10845
|
+
:param str size: The size the mirrored software source in bytes.
|
10846
|
+
:param str state: Current state of the software source mirror.
|
10847
|
+
:param str time_last_synced: Time that the software source was last synced (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
10848
|
+
:param str type: Type of software source.
|
10171
10849
|
"""
|
10172
10850
|
pulumi.set(__self__, "arch_type", arch_type)
|
10173
10851
|
pulumi.set(__self__, "display_name", display_name)
|
10174
10852
|
pulumi.set(__self__, "id", id)
|
10175
10853
|
pulumi.set(__self__, "log", log)
|
10176
10854
|
pulumi.set(__self__, "os_family", os_family)
|
10855
|
+
pulumi.set(__self__, "package_count", package_count)
|
10177
10856
|
pulumi.set(__self__, "percentage", percentage)
|
10857
|
+
pulumi.set(__self__, "size", size)
|
10178
10858
|
pulumi.set(__self__, "state", state)
|
10179
10859
|
pulumi.set(__self__, "time_last_synced", time_last_synced)
|
10180
10860
|
pulumi.set(__self__, "type", type)
|
@@ -10183,7 +10863,7 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10183
10863
|
@pulumi.getter(name="archType")
|
10184
10864
|
def arch_type(self) -> str:
|
10185
10865
|
"""
|
10186
|
-
The architecture type supported by the
|
10866
|
+
The architecture type supported by the software source.
|
10187
10867
|
"""
|
10188
10868
|
return pulumi.get(self, "arch_type")
|
10189
10869
|
|
@@ -10199,7 +10879,7 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10199
10879
|
@pulumi.getter
|
10200
10880
|
def id(self) -> str:
|
10201
10881
|
"""
|
10202
|
-
OCID of
|
10882
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
10203
10883
|
"""
|
10204
10884
|
return pulumi.get(self, "id")
|
10205
10885
|
|
@@ -10215,23 +10895,39 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10215
10895
|
@pulumi.getter(name="osFamily")
|
10216
10896
|
def os_family(self) -> str:
|
10217
10897
|
"""
|
10218
|
-
The OS family the
|
10898
|
+
The OS family of the software source.
|
10219
10899
|
"""
|
10220
10900
|
return pulumi.get(self, "os_family")
|
10221
10901
|
|
10902
|
+
@property
|
10903
|
+
@pulumi.getter(name="packageCount")
|
10904
|
+
def package_count(self) -> int:
|
10905
|
+
"""
|
10906
|
+
The number of packages within the mirrored software source.
|
10907
|
+
"""
|
10908
|
+
return pulumi.get(self, "package_count")
|
10909
|
+
|
10222
10910
|
@property
|
10223
10911
|
@pulumi.getter
|
10224
10912
|
def percentage(self) -> int:
|
10225
10913
|
"""
|
10226
|
-
A decimal number representing the
|
10914
|
+
A decimal number representing the percentage of the software source that has been synced.
|
10227
10915
|
"""
|
10228
10916
|
return pulumi.get(self, "percentage")
|
10229
10917
|
|
10918
|
+
@property
|
10919
|
+
@pulumi.getter
|
10920
|
+
def size(self) -> str:
|
10921
|
+
"""
|
10922
|
+
The size the mirrored software source in bytes.
|
10923
|
+
"""
|
10924
|
+
return pulumi.get(self, "size")
|
10925
|
+
|
10230
10926
|
@property
|
10231
10927
|
@pulumi.getter
|
10232
10928
|
def state(self) -> str:
|
10233
10929
|
"""
|
10234
|
-
Current state of the mirror
|
10930
|
+
Current state of the software source mirror.
|
10235
10931
|
"""
|
10236
10932
|
return pulumi.get(self, "state")
|
10237
10933
|
|
@@ -10239,7 +10935,7 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10239
10935
|
@pulumi.getter(name="timeLastSynced")
|
10240
10936
|
def time_last_synced(self) -> str:
|
10241
10937
|
"""
|
10242
|
-
|
10938
|
+
Time that the software source was last synced (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
10243
10939
|
"""
|
10244
10940
|
return pulumi.get(self, "time_last_synced")
|
10245
10941
|
|
@@ -10247,11 +10943,40 @@ class GetManagementStationMirrorsMirrorsCollectionItemResult(dict):
|
|
10247
10943
|
@pulumi.getter
|
10248
10944
|
def type(self) -> str:
|
10249
10945
|
"""
|
10250
|
-
Type of
|
10946
|
+
Type of software source.
|
10251
10947
|
"""
|
10252
10948
|
return pulumi.get(self, "type")
|
10253
10949
|
|
10254
10950
|
|
10951
|
+
@pulumi.output_type
|
10952
|
+
class GetManagementStationPeerManagementStationResult(dict):
|
10953
|
+
def __init__(__self__, *,
|
10954
|
+
display_name: str,
|
10955
|
+
id: str):
|
10956
|
+
"""
|
10957
|
+
:param str display_name: User-friendly name for the management station.
|
10958
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
10959
|
+
"""
|
10960
|
+
pulumi.set(__self__, "display_name", display_name)
|
10961
|
+
pulumi.set(__self__, "id", id)
|
10962
|
+
|
10963
|
+
@property
|
10964
|
+
@pulumi.getter(name="displayName")
|
10965
|
+
def display_name(self) -> str:
|
10966
|
+
"""
|
10967
|
+
User-friendly name for the management station.
|
10968
|
+
"""
|
10969
|
+
return pulumi.get(self, "display_name")
|
10970
|
+
|
10971
|
+
@property
|
10972
|
+
@pulumi.getter
|
10973
|
+
def id(self) -> str:
|
10974
|
+
"""
|
10975
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
10976
|
+
"""
|
10977
|
+
return pulumi.get(self, "id")
|
10978
|
+
|
10979
|
+
|
10255
10980
|
@pulumi.output_type
|
10256
10981
|
class GetManagementStationProxyResult(dict):
|
10257
10982
|
def __init__(__self__, *,
|
@@ -10353,6 +11078,7 @@ class GetManagementStationsManagementStationCollectionItemResult(dict):
|
|
10353
11078
|
health_state: str,
|
10354
11079
|
hostname: str,
|
10355
11080
|
id: str,
|
11081
|
+
location: str,
|
10356
11082
|
managed_instance_id: str,
|
10357
11083
|
mirror_capacity: int,
|
10358
11084
|
overall_percentage: int,
|
@@ -10370,6 +11096,7 @@ class GetManagementStationsManagementStationCollectionItemResult(dict):
|
|
10370
11096
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
10371
11097
|
:param str hostname: Hostname of the management station.
|
10372
11098
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station. A filter that returns information about the specified management station.
|
11099
|
+
:param str location: A filter to return only resources whose location matches the given value.
|
10373
11100
|
:param str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. This filter returns resources associated with this managed instance.
|
10374
11101
|
:param int mirror_capacity: A decimal number representing the amount of mirror capacity used by the sync.
|
10375
11102
|
:param int overall_percentage: A decimal number representing the progress of the current mirror sync.
|
@@ -10387,6 +11114,7 @@ class GetManagementStationsManagementStationCollectionItemResult(dict):
|
|
10387
11114
|
pulumi.set(__self__, "health_state", health_state)
|
10388
11115
|
pulumi.set(__self__, "hostname", hostname)
|
10389
11116
|
pulumi.set(__self__, "id", id)
|
11117
|
+
pulumi.set(__self__, "location", location)
|
10390
11118
|
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
10391
11119
|
pulumi.set(__self__, "mirror_capacity", mirror_capacity)
|
10392
11120
|
pulumi.set(__self__, "overall_percentage", overall_percentage)
|
@@ -10459,6 +11187,14 @@ class GetManagementStationsManagementStationCollectionItemResult(dict):
|
|
10459
11187
|
"""
|
10460
11188
|
return pulumi.get(self, "id")
|
10461
11189
|
|
11190
|
+
@property
|
11191
|
+
@pulumi.getter
|
11192
|
+
def location(self) -> str:
|
11193
|
+
"""
|
11194
|
+
A filter to return only resources whose location matches the given value.
|
11195
|
+
"""
|
11196
|
+
return pulumi.get(self, "location")
|
11197
|
+
|
10462
11198
|
@property
|
10463
11199
|
@pulumi.getter(name="managedInstanceId")
|
10464
11200
|
def managed_instance_id(self) -> str:
|
@@ -10529,6 +11265,91 @@ class GetManagementStationsManagementStationCollectionItemResult(dict):
|
|
10529
11265
|
return pulumi.get(self, "time_next_execution")
|
10530
11266
|
|
10531
11267
|
|
11268
|
+
@pulumi.output_type
|
11269
|
+
class GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionResult(dict):
|
11270
|
+
def __init__(__self__, *,
|
11271
|
+
items: Sequence['outputs.GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionItemResult']):
|
11272
|
+
"""
|
11273
|
+
:param Sequence['GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionItemArgs'] items: List of available software sources.
|
11274
|
+
"""
|
11275
|
+
pulumi.set(__self__, "items", items)
|
11276
|
+
|
11277
|
+
@property
|
11278
|
+
@pulumi.getter
|
11279
|
+
def items(self) -> Sequence['outputs.GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionItemResult']:
|
11280
|
+
"""
|
11281
|
+
List of available software sources.
|
11282
|
+
"""
|
11283
|
+
return pulumi.get(self, "items")
|
11284
|
+
|
11285
|
+
|
11286
|
+
@pulumi.output_type
|
11287
|
+
class GetProfileAvailableSoftwareSourcesAvailableSoftwareSourceCollectionItemResult(dict):
|
11288
|
+
def __init__(__self__, *,
|
11289
|
+
compartment_id: str,
|
11290
|
+
display_name: str,
|
11291
|
+
id: str):
|
11292
|
+
"""
|
11293
|
+
:param str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
11294
|
+
:param str display_name: A filter to return resources that match the given display names.
|
11295
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11296
|
+
"""
|
11297
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
11298
|
+
pulumi.set(__self__, "display_name", display_name)
|
11299
|
+
pulumi.set(__self__, "id", id)
|
11300
|
+
|
11301
|
+
@property
|
11302
|
+
@pulumi.getter(name="compartmentId")
|
11303
|
+
def compartment_id(self) -> str:
|
11304
|
+
"""
|
11305
|
+
The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
11306
|
+
"""
|
11307
|
+
return pulumi.get(self, "compartment_id")
|
11308
|
+
|
11309
|
+
@property
|
11310
|
+
@pulumi.getter(name="displayName")
|
11311
|
+
def display_name(self) -> str:
|
11312
|
+
"""
|
11313
|
+
A filter to return resources that match the given display names.
|
11314
|
+
"""
|
11315
|
+
return pulumi.get(self, "display_name")
|
11316
|
+
|
11317
|
+
@property
|
11318
|
+
@pulumi.getter
|
11319
|
+
def id(self) -> str:
|
11320
|
+
"""
|
11321
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11322
|
+
"""
|
11323
|
+
return pulumi.get(self, "id")
|
11324
|
+
|
11325
|
+
|
11326
|
+
@pulumi.output_type
|
11327
|
+
class GetProfileAvailableSoftwareSourcesFilterResult(dict):
|
11328
|
+
def __init__(__self__, *,
|
11329
|
+
name: str,
|
11330
|
+
values: Sequence[str],
|
11331
|
+
regex: Optional[bool] = None):
|
11332
|
+
pulumi.set(__self__, "name", name)
|
11333
|
+
pulumi.set(__self__, "values", values)
|
11334
|
+
if regex is not None:
|
11335
|
+
pulumi.set(__self__, "regex", regex)
|
11336
|
+
|
11337
|
+
@property
|
11338
|
+
@pulumi.getter
|
11339
|
+
def name(self) -> str:
|
11340
|
+
return pulumi.get(self, "name")
|
11341
|
+
|
11342
|
+
@property
|
11343
|
+
@pulumi.getter
|
11344
|
+
def values(self) -> Sequence[str]:
|
11345
|
+
return pulumi.get(self, "values")
|
11346
|
+
|
11347
|
+
@property
|
11348
|
+
@pulumi.getter
|
11349
|
+
def regex(self) -> Optional[bool]:
|
11350
|
+
return pulumi.get(self, "regex")
|
11351
|
+
|
11352
|
+
|
10532
11353
|
@pulumi.output_type
|
10533
11354
|
class GetProfileLifecycleEnvironmentResult(dict):
|
10534
11355
|
def __init__(__self__, *,
|
@@ -10678,6 +11499,155 @@ class GetProfileSoftwareSourceResult(dict):
|
|
10678
11499
|
return pulumi.get(self, "software_source_type")
|
10679
11500
|
|
10680
11501
|
|
11502
|
+
@pulumi.output_type
|
11503
|
+
class GetProfileVersionLifecycleEnvironmentResult(dict):
|
11504
|
+
def __init__(__self__, *,
|
11505
|
+
display_name: str,
|
11506
|
+
id: str):
|
11507
|
+
"""
|
11508
|
+
:param str display_name: Software source name.
|
11509
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11510
|
+
"""
|
11511
|
+
pulumi.set(__self__, "display_name", display_name)
|
11512
|
+
pulumi.set(__self__, "id", id)
|
11513
|
+
|
11514
|
+
@property
|
11515
|
+
@pulumi.getter(name="displayName")
|
11516
|
+
def display_name(self) -> str:
|
11517
|
+
"""
|
11518
|
+
Software source name.
|
11519
|
+
"""
|
11520
|
+
return pulumi.get(self, "display_name")
|
11521
|
+
|
11522
|
+
@property
|
11523
|
+
@pulumi.getter
|
11524
|
+
def id(self) -> str:
|
11525
|
+
"""
|
11526
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11527
|
+
"""
|
11528
|
+
return pulumi.get(self, "id")
|
11529
|
+
|
11530
|
+
|
11531
|
+
@pulumi.output_type
|
11532
|
+
class GetProfileVersionLifecycleStageResult(dict):
|
11533
|
+
def __init__(__self__, *,
|
11534
|
+
display_name: str,
|
11535
|
+
id: str):
|
11536
|
+
"""
|
11537
|
+
:param str display_name: Software source name.
|
11538
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11539
|
+
"""
|
11540
|
+
pulumi.set(__self__, "display_name", display_name)
|
11541
|
+
pulumi.set(__self__, "id", id)
|
11542
|
+
|
11543
|
+
@property
|
11544
|
+
@pulumi.getter(name="displayName")
|
11545
|
+
def display_name(self) -> str:
|
11546
|
+
"""
|
11547
|
+
Software source name.
|
11548
|
+
"""
|
11549
|
+
return pulumi.get(self, "display_name")
|
11550
|
+
|
11551
|
+
@property
|
11552
|
+
@pulumi.getter
|
11553
|
+
def id(self) -> str:
|
11554
|
+
"""
|
11555
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11556
|
+
"""
|
11557
|
+
return pulumi.get(self, "id")
|
11558
|
+
|
11559
|
+
|
11560
|
+
@pulumi.output_type
|
11561
|
+
class GetProfileVersionManagedInstanceGroupResult(dict):
|
11562
|
+
def __init__(__self__, *,
|
11563
|
+
display_name: str,
|
11564
|
+
id: str):
|
11565
|
+
"""
|
11566
|
+
:param str display_name: Software source name.
|
11567
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11568
|
+
"""
|
11569
|
+
pulumi.set(__self__, "display_name", display_name)
|
11570
|
+
pulumi.set(__self__, "id", id)
|
11571
|
+
|
11572
|
+
@property
|
11573
|
+
@pulumi.getter(name="displayName")
|
11574
|
+
def display_name(self) -> str:
|
11575
|
+
"""
|
11576
|
+
Software source name.
|
11577
|
+
"""
|
11578
|
+
return pulumi.get(self, "display_name")
|
11579
|
+
|
11580
|
+
@property
|
11581
|
+
@pulumi.getter
|
11582
|
+
def id(self) -> str:
|
11583
|
+
"""
|
11584
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11585
|
+
"""
|
11586
|
+
return pulumi.get(self, "id")
|
11587
|
+
|
11588
|
+
|
11589
|
+
@pulumi.output_type
|
11590
|
+
class GetProfileVersionSoftwareSourceResult(dict):
|
11591
|
+
def __init__(__self__, *,
|
11592
|
+
description: str,
|
11593
|
+
display_name: str,
|
11594
|
+
id: str,
|
11595
|
+
is_mandatory_for_autonomous_linux: bool,
|
11596
|
+
software_source_type: str):
|
11597
|
+
"""
|
11598
|
+
:param str description: Software source description.
|
11599
|
+
:param str display_name: Software source name.
|
11600
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11601
|
+
:param bool is_mandatory_for_autonomous_linux: Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
|
11602
|
+
:param str software_source_type: Type of the software source.
|
11603
|
+
"""
|
11604
|
+
pulumi.set(__self__, "description", description)
|
11605
|
+
pulumi.set(__self__, "display_name", display_name)
|
11606
|
+
pulumi.set(__self__, "id", id)
|
11607
|
+
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
11608
|
+
pulumi.set(__self__, "software_source_type", software_source_type)
|
11609
|
+
|
11610
|
+
@property
|
11611
|
+
@pulumi.getter
|
11612
|
+
def description(self) -> str:
|
11613
|
+
"""
|
11614
|
+
Software source description.
|
11615
|
+
"""
|
11616
|
+
return pulumi.get(self, "description")
|
11617
|
+
|
11618
|
+
@property
|
11619
|
+
@pulumi.getter(name="displayName")
|
11620
|
+
def display_name(self) -> str:
|
11621
|
+
"""
|
11622
|
+
Software source name.
|
11623
|
+
"""
|
11624
|
+
return pulumi.get(self, "display_name")
|
11625
|
+
|
11626
|
+
@property
|
11627
|
+
@pulumi.getter
|
11628
|
+
def id(self) -> str:
|
11629
|
+
"""
|
11630
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
11631
|
+
"""
|
11632
|
+
return pulumi.get(self, "id")
|
11633
|
+
|
11634
|
+
@property
|
11635
|
+
@pulumi.getter(name="isMandatoryForAutonomousLinux")
|
11636
|
+
def is_mandatory_for_autonomous_linux(self) -> bool:
|
11637
|
+
"""
|
11638
|
+
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
|
11639
|
+
"""
|
11640
|
+
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
11641
|
+
|
11642
|
+
@property
|
11643
|
+
@pulumi.getter(name="softwareSourceType")
|
11644
|
+
def software_source_type(self) -> str:
|
11645
|
+
"""
|
11646
|
+
Type of the software source.
|
11647
|
+
"""
|
11648
|
+
return pulumi.get(self, "software_source_type")
|
11649
|
+
|
11650
|
+
|
10681
11651
|
@pulumi.output_type
|
10682
11652
|
class GetProfilesFilterResult(dict):
|
10683
11653
|
def __init__(__self__, *,
|
@@ -10737,12 +11707,14 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10737
11707
|
management_station_id: str,
|
10738
11708
|
os_family: str,
|
10739
11709
|
profile_type: str,
|
11710
|
+
profile_version: str,
|
10740
11711
|
registration_type: str,
|
10741
11712
|
software_source_ids: Sequence[str],
|
10742
11713
|
software_sources: Sequence['outputs.GetProfilesProfileCollectionItemSoftwareSourceResult'],
|
10743
11714
|
state: str,
|
10744
11715
|
system_tags: Mapping[str, str],
|
10745
11716
|
time_created: str,
|
11717
|
+
time_modified: str,
|
10746
11718
|
vendor_name: str):
|
10747
11719
|
"""
|
10748
11720
|
:param str arch_type: A filter to return only profiles that match the given archType.
|
@@ -10752,19 +11724,21 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10752
11724
|
:param str display_name: A filter to return resources that match the given display names.
|
10753
11725
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
10754
11726
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
10755
|
-
:param bool is_default_profile: A
|
11727
|
+
:param bool is_default_profile: A filter to return only default profiles.
|
10756
11728
|
:param bool is_service_provided_profile: A filter to return only service-provided profiles.
|
10757
11729
|
:param Sequence['GetProfilesProfileCollectionItemLifecycleEnvironmentArgs'] lifecycle_environments: Provides identifying information for the specified lifecycle environment.
|
10758
11730
|
:param Sequence['GetProfilesProfileCollectionItemLifecycleStageArgs'] lifecycle_stages: Provides identifying information for the specified lifecycle stage.
|
10759
11731
|
:param Sequence['GetProfilesProfileCollectionItemManagedInstanceGroupArgs'] managed_instance_groups: Provides identifying information for the specified managed instance group.
|
10760
|
-
:param str management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an
|
11732
|
+
:param str management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Management stations are only used by non-OCI instances.
|
10761
11733
|
:param str os_family: A filter to return only resources that match the given operating system family.
|
10762
11734
|
:param str profile_type: A filter to return registration profiles that match the given profile type.
|
11735
|
+
:param str profile_version: The version of the registration profile.
|
10763
11736
|
:param str registration_type: A filter to return profiles that match the given instance type.
|
10764
11737
|
:param Sequence['GetProfilesProfileCollectionItemSoftwareSourceArgs'] software_sources: The list of software sources that the registration profile will use.
|
10765
11738
|
:param str state: A filter to return only registration profiles in the given state.
|
10766
11739
|
: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"}`
|
10767
11740
|
:param str time_created: The time the registration profile was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
11741
|
+
:param str time_modified: The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
10768
11742
|
:param str vendor_name: A filter to return only resources that match the given vendor name.
|
10769
11743
|
"""
|
10770
11744
|
pulumi.set(__self__, "arch_type", arch_type)
|
@@ -10784,12 +11758,14 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10784
11758
|
pulumi.set(__self__, "management_station_id", management_station_id)
|
10785
11759
|
pulumi.set(__self__, "os_family", os_family)
|
10786
11760
|
pulumi.set(__self__, "profile_type", profile_type)
|
11761
|
+
pulumi.set(__self__, "profile_version", profile_version)
|
10787
11762
|
pulumi.set(__self__, "registration_type", registration_type)
|
10788
11763
|
pulumi.set(__self__, "software_source_ids", software_source_ids)
|
10789
11764
|
pulumi.set(__self__, "software_sources", software_sources)
|
10790
11765
|
pulumi.set(__self__, "state", state)
|
10791
11766
|
pulumi.set(__self__, "system_tags", system_tags)
|
10792
11767
|
pulumi.set(__self__, "time_created", time_created)
|
11768
|
+
pulumi.set(__self__, "time_modified", time_modified)
|
10793
11769
|
pulumi.set(__self__, "vendor_name", vendor_name)
|
10794
11770
|
|
10795
11771
|
@property
|
@@ -10852,7 +11828,7 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10852
11828
|
@pulumi.getter(name="isDefaultProfile")
|
10853
11829
|
def is_default_profile(self) -> bool:
|
10854
11830
|
"""
|
10855
|
-
A
|
11831
|
+
A filter to return only default profiles.
|
10856
11832
|
"""
|
10857
11833
|
return pulumi.get(self, "is_default_profile")
|
10858
11834
|
|
@@ -10902,7 +11878,7 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10902
11878
|
@pulumi.getter(name="managementStationId")
|
10903
11879
|
def management_station_id(self) -> str:
|
10904
11880
|
"""
|
10905
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an
|
11881
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Management stations are only used by non-OCI instances.
|
10906
11882
|
"""
|
10907
11883
|
return pulumi.get(self, "management_station_id")
|
10908
11884
|
|
@@ -10918,9 +11894,17 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10918
11894
|
@pulumi.getter(name="profileType")
|
10919
11895
|
def profile_type(self) -> str:
|
10920
11896
|
"""
|
10921
|
-
A filter to return registration profiles that match the given profile type.
|
11897
|
+
A filter to return registration profiles that match the given profile type.
|
11898
|
+
"""
|
11899
|
+
return pulumi.get(self, "profile_type")
|
11900
|
+
|
11901
|
+
@property
|
11902
|
+
@pulumi.getter(name="profileVersion")
|
11903
|
+
def profile_version(self) -> str:
|
11904
|
+
"""
|
11905
|
+
The version of the registration profile.
|
10922
11906
|
"""
|
10923
|
-
return pulumi.get(self, "
|
11907
|
+
return pulumi.get(self, "profile_version")
|
10924
11908
|
|
10925
11909
|
@property
|
10926
11910
|
@pulumi.getter(name="registrationType")
|
@@ -10967,6 +11951,14 @@ class GetProfilesProfileCollectionItemResult(dict):
|
|
10967
11951
|
"""
|
10968
11952
|
return pulumi.get(self, "time_created")
|
10969
11953
|
|
11954
|
+
@property
|
11955
|
+
@pulumi.getter(name="timeModified")
|
11956
|
+
def time_modified(self) -> str:
|
11957
|
+
"""
|
11958
|
+
The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
11959
|
+
"""
|
11960
|
+
return pulumi.get(self, "time_modified")
|
11961
|
+
|
10970
11962
|
@property
|
10971
11963
|
@pulumi.getter(name="vendorName")
|
10972
11964
|
def vendor_name(self) -> str:
|
@@ -11131,6 +12123,7 @@ class GetScheduledJobOperationResult(dict):
|
|
11131
12123
|
manage_module_streams_details: Sequence['outputs.GetScheduledJobOperationManageModuleStreamsDetailResult'],
|
11132
12124
|
operation_type: str,
|
11133
12125
|
package_names: Sequence[str],
|
12126
|
+
reboot_timeout_in_mins: int,
|
11134
12127
|
software_source_ids: Sequence[str],
|
11135
12128
|
switch_module_streams_details: Sequence['outputs.GetScheduledJobOperationSwitchModuleStreamsDetailResult'],
|
11136
12129
|
windows_update_names: Sequence[str]):
|
@@ -11138,6 +12131,7 @@ class GetScheduledJobOperationResult(dict):
|
|
11138
12131
|
:param Sequence['GetScheduledJobOperationManageModuleStreamsDetailArgs'] manage_module_streams_details: The set of changes to make to the state of the modules, streams, and profiles on the managed target.
|
11139
12132
|
:param str operation_type: The type of operation this scheduled job performs.
|
11140
12133
|
:param Sequence[str] package_names: The names of the target packages. This parameter only applies when the scheduled job is for installing, updating, or removing packages.
|
12134
|
+
:param int reboot_timeout_in_mins: The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
11141
12135
|
:param Sequence[str] software_source_ids: The software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). This parameter only applies when the scheduled job is for attaching or detaching software sources.
|
11142
12136
|
:param Sequence['GetScheduledJobOperationSwitchModuleStreamsDetailArgs'] switch_module_streams_details: Provides the information used to update a module stream.
|
11143
12137
|
:param Sequence[str] windows_update_names: Unique identifier for the Windows update. This parameter only applies if the scheduled job is for installing Windows updates. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. For example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed'.
|
@@ -11145,6 +12139,7 @@ class GetScheduledJobOperationResult(dict):
|
|
11145
12139
|
pulumi.set(__self__, "manage_module_streams_details", manage_module_streams_details)
|
11146
12140
|
pulumi.set(__self__, "operation_type", operation_type)
|
11147
12141
|
pulumi.set(__self__, "package_names", package_names)
|
12142
|
+
pulumi.set(__self__, "reboot_timeout_in_mins", reboot_timeout_in_mins)
|
11148
12143
|
pulumi.set(__self__, "software_source_ids", software_source_ids)
|
11149
12144
|
pulumi.set(__self__, "switch_module_streams_details", switch_module_streams_details)
|
11150
12145
|
pulumi.set(__self__, "windows_update_names", windows_update_names)
|
@@ -11173,6 +12168,14 @@ class GetScheduledJobOperationResult(dict):
|
|
11173
12168
|
"""
|
11174
12169
|
return pulumi.get(self, "package_names")
|
11175
12170
|
|
12171
|
+
@property
|
12172
|
+
@pulumi.getter(name="rebootTimeoutInMins")
|
12173
|
+
def reboot_timeout_in_mins(self) -> int:
|
12174
|
+
"""
|
12175
|
+
The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
12176
|
+
"""
|
12177
|
+
return pulumi.get(self, "reboot_timeout_in_mins")
|
12178
|
+
|
11176
12179
|
@property
|
11177
12180
|
@pulumi.getter(name="softwareSourceIds")
|
11178
12181
|
def software_source_ids(self) -> Sequence[str]:
|
@@ -11537,6 +12540,7 @@ class GetScheduledJobsScheduledJobCollectionItemResult(dict):
|
|
11537
12540
|
time_last_execution: str,
|
11538
12541
|
time_next_execution: str,
|
11539
12542
|
time_updated: str,
|
12543
|
+
work_request_id: str,
|
11540
12544
|
work_request_ids: Sequence[str]):
|
11541
12545
|
"""
|
11542
12546
|
:param str compartment_id: (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
@@ -11571,6 +12575,7 @@ class GetScheduledJobsScheduledJobCollectionItemResult(dict):
|
|
11571
12575
|
:param str time_last_execution: The time of the last execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
11572
12576
|
:param str time_next_execution: The time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
11573
12577
|
:param str time_updated: The time this scheduled job was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
12578
|
+
:param str work_request_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
11574
12579
|
:param Sequence[str] work_request_ids: The list of work request [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this scheduled job.
|
11575
12580
|
"""
|
11576
12581
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -11597,6 +12602,7 @@ class GetScheduledJobsScheduledJobCollectionItemResult(dict):
|
|
11597
12602
|
pulumi.set(__self__, "time_last_execution", time_last_execution)
|
11598
12603
|
pulumi.set(__self__, "time_next_execution", time_next_execution)
|
11599
12604
|
pulumi.set(__self__, "time_updated", time_updated)
|
12605
|
+
pulumi.set(__self__, "work_request_id", work_request_id)
|
11600
12606
|
pulumi.set(__self__, "work_request_ids", work_request_ids)
|
11601
12607
|
|
11602
12608
|
@property
|
@@ -11799,6 +12805,14 @@ class GetScheduledJobsScheduledJobCollectionItemResult(dict):
|
|
11799
12805
|
"""
|
11800
12806
|
return pulumi.get(self, "time_updated")
|
11801
12807
|
|
12808
|
+
@property
|
12809
|
+
@pulumi.getter(name="workRequestId")
|
12810
|
+
def work_request_id(self) -> str:
|
12811
|
+
"""
|
12812
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
12813
|
+
"""
|
12814
|
+
return pulumi.get(self, "work_request_id")
|
12815
|
+
|
11802
12816
|
@property
|
11803
12817
|
@pulumi.getter(name="workRequestIds")
|
11804
12818
|
def work_request_ids(self) -> Sequence[str]:
|
@@ -11814,6 +12828,7 @@ class GetScheduledJobsScheduledJobCollectionItemOperationResult(dict):
|
|
11814
12828
|
manage_module_streams_details: Sequence['outputs.GetScheduledJobsScheduledJobCollectionItemOperationManageModuleStreamsDetailResult'],
|
11815
12829
|
operation_type: str,
|
11816
12830
|
package_names: Sequence[str],
|
12831
|
+
reboot_timeout_in_mins: int,
|
11817
12832
|
software_source_ids: Sequence[str],
|
11818
12833
|
switch_module_streams_details: Sequence['outputs.GetScheduledJobsScheduledJobCollectionItemOperationSwitchModuleStreamsDetailResult'],
|
11819
12834
|
windows_update_names: Sequence[str]):
|
@@ -11821,6 +12836,7 @@ class GetScheduledJobsScheduledJobCollectionItemOperationResult(dict):
|
|
11821
12836
|
:param Sequence['GetScheduledJobsScheduledJobCollectionItemOperationManageModuleStreamsDetailArgs'] manage_module_streams_details: The set of changes to make to the state of the modules, streams, and profiles on the managed target.
|
11822
12837
|
:param str operation_type: A filter to return only scheduled jobs with the given operation type.
|
11823
12838
|
:param Sequence[str] package_names: The names of the target packages. This parameter only applies when the scheduled job is for installing, updating, or removing packages.
|
12839
|
+
:param int reboot_timeout_in_mins: The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
11824
12840
|
:param Sequence[str] software_source_ids: The software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). This parameter only applies when the scheduled job is for attaching or detaching software sources.
|
11825
12841
|
:param Sequence['GetScheduledJobsScheduledJobCollectionItemOperationSwitchModuleStreamsDetailArgs'] switch_module_streams_details: Provides the information used to update a module stream.
|
11826
12842
|
:param Sequence[str] windows_update_names: Unique identifier for the Windows update. This parameter only applies if the scheduled job is for installing Windows updates. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. For example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed'.
|
@@ -11828,6 +12844,7 @@ class GetScheduledJobsScheduledJobCollectionItemOperationResult(dict):
|
|
11828
12844
|
pulumi.set(__self__, "manage_module_streams_details", manage_module_streams_details)
|
11829
12845
|
pulumi.set(__self__, "operation_type", operation_type)
|
11830
12846
|
pulumi.set(__self__, "package_names", package_names)
|
12847
|
+
pulumi.set(__self__, "reboot_timeout_in_mins", reboot_timeout_in_mins)
|
11831
12848
|
pulumi.set(__self__, "software_source_ids", software_source_ids)
|
11832
12849
|
pulumi.set(__self__, "switch_module_streams_details", switch_module_streams_details)
|
11833
12850
|
pulumi.set(__self__, "windows_update_names", windows_update_names)
|
@@ -11856,6 +12873,14 @@ class GetScheduledJobsScheduledJobCollectionItemOperationResult(dict):
|
|
11856
12873
|
"""
|
11857
12874
|
return pulumi.get(self, "package_names")
|
11858
12875
|
|
12876
|
+
@property
|
12877
|
+
@pulumi.getter(name="rebootTimeoutInMins")
|
12878
|
+
def reboot_timeout_in_mins(self) -> int:
|
12879
|
+
"""
|
12880
|
+
The number of minutes the service waits for the reboot to complete. If the instance doesn't reboot within the timeout, the service marks the reboot job as failed.
|
12881
|
+
"""
|
12882
|
+
return pulumi.get(self, "reboot_timeout_in_mins")
|
12883
|
+
|
11859
12884
|
@property
|
11860
12885
|
@pulumi.getter(name="softwareSourceIds")
|
11861
12886
|
def software_source_ids(self) -> Sequence[str]:
|
@@ -12387,10 +13412,12 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12387
13412
|
freeform_tags: Mapping[str, str],
|
12388
13413
|
id: str,
|
12389
13414
|
is_mandatory_for_autonomous_linux: bool,
|
13415
|
+
is_mirror_sync_allowed: bool,
|
12390
13416
|
os_family: str,
|
12391
13417
|
package_count: str,
|
12392
13418
|
repo_id: str,
|
12393
13419
|
size: float,
|
13420
|
+
software_source_sub_type: str,
|
12394
13421
|
software_source_type: str,
|
12395
13422
|
software_source_version: str,
|
12396
13423
|
state: str,
|
@@ -12402,8 +13429,8 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12402
13429
|
vendor_software_sources: Sequence['outputs.GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemVendorSoftwareSourceResult']):
|
12403
13430
|
"""
|
12404
13431
|
:param str arch_type: A filter to return only instances whose architecture type matches the given architecture.
|
12405
|
-
:param str availability: The
|
12406
|
-
:param str availability_at_oci: The
|
13432
|
+
:param str availability: The availability of the software source in a non-OCI environment for a tenancy.
|
13433
|
+
:param str availability_at_oci: The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
12407
13434
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
|
12408
13435
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
12409
13436
|
:param str description: Description of the software source. For custom software sources, this is user-specified.
|
@@ -12411,10 +13438,12 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12411
13438
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
12412
13439
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource that is immutable on creation.
|
12413
13440
|
:param bool is_mandatory_for_autonomous_linux: Indicates whether the software source is required for the Autonomous Linux service.
|
13441
|
+
:param bool is_mirror_sync_allowed: Indicates if this software source can be mirrored to a management station.
|
12414
13442
|
:param str os_family: A filter to return only resources that match the given operating system family.
|
12415
13443
|
:param str package_count: Number of packages the software source contains.
|
12416
13444
|
:param str repo_id: The repository ID for the software source.
|
12417
|
-
:param float size: The size of the software source in
|
13445
|
+
:param float size: The size of the software source in bytes (B).
|
13446
|
+
:param str software_source_sub_type: Identifies how the versioned custom software source was created.
|
12418
13447
|
:param str software_source_type: The type of the software source.
|
12419
13448
|
:param str software_source_version: The version to assign to this custom software source.
|
12420
13449
|
:param str state: A filter to return only software sources whose state matches the given state.
|
@@ -12435,10 +13464,12 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12435
13464
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
12436
13465
|
pulumi.set(__self__, "id", id)
|
12437
13466
|
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
13467
|
+
pulumi.set(__self__, "is_mirror_sync_allowed", is_mirror_sync_allowed)
|
12438
13468
|
pulumi.set(__self__, "os_family", os_family)
|
12439
13469
|
pulumi.set(__self__, "package_count", package_count)
|
12440
13470
|
pulumi.set(__self__, "repo_id", repo_id)
|
12441
13471
|
pulumi.set(__self__, "size", size)
|
13472
|
+
pulumi.set(__self__, "software_source_sub_type", software_source_sub_type)
|
12442
13473
|
pulumi.set(__self__, "software_source_type", software_source_type)
|
12443
13474
|
pulumi.set(__self__, "software_source_version", software_source_version)
|
12444
13475
|
pulumi.set(__self__, "state", state)
|
@@ -12461,7 +13492,7 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12461
13492
|
@pulumi.getter
|
12462
13493
|
def availability(self) -> str:
|
12463
13494
|
"""
|
12464
|
-
The
|
13495
|
+
The availability of the software source in a non-OCI environment for a tenancy.
|
12465
13496
|
"""
|
12466
13497
|
return pulumi.get(self, "availability")
|
12467
13498
|
|
@@ -12469,7 +13500,7 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12469
13500
|
@pulumi.getter(name="availabilityAtOci")
|
12470
13501
|
def availability_at_oci(self) -> str:
|
12471
13502
|
"""
|
12472
|
-
The
|
13503
|
+
The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
12473
13504
|
"""
|
12474
13505
|
return pulumi.get(self, "availability_at_oci")
|
12475
13506
|
|
@@ -12529,6 +13560,14 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12529
13560
|
"""
|
12530
13561
|
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
12531
13562
|
|
13563
|
+
@property
|
13564
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
13565
|
+
def is_mirror_sync_allowed(self) -> bool:
|
13566
|
+
"""
|
13567
|
+
Indicates if this software source can be mirrored to a management station.
|
13568
|
+
"""
|
13569
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
13570
|
+
|
12532
13571
|
@property
|
12533
13572
|
@pulumi.getter(name="osFamily")
|
12534
13573
|
def os_family(self) -> str:
|
@@ -12557,10 +13596,18 @@ class GetSoftwarePackageSoftwareSourceSoftwareSourceCollectionItemResult(dict):
|
|
12557
13596
|
@pulumi.getter
|
12558
13597
|
def size(self) -> float:
|
12559
13598
|
"""
|
12560
|
-
The size of the software source in
|
13599
|
+
The size of the software source in bytes (B).
|
12561
13600
|
"""
|
12562
13601
|
return pulumi.get(self, "size")
|
12563
13602
|
|
13603
|
+
@property
|
13604
|
+
@pulumi.getter(name="softwareSourceSubType")
|
13605
|
+
def software_source_sub_type(self) -> str:
|
13606
|
+
"""
|
13607
|
+
Identifies how the versioned custom software source was created.
|
13608
|
+
"""
|
13609
|
+
return pulumi.get(self, "software_source_sub_type")
|
13610
|
+
|
12564
13611
|
@property
|
12565
13612
|
@pulumi.getter(name="softwareSourceType")
|
12566
13613
|
def software_source_type(self) -> str:
|
@@ -13055,6 +14102,236 @@ class GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult(dict)
|
|
13055
14102
|
return pulumi.get(self, "software_source_type")
|
13056
14103
|
|
13057
14104
|
|
14105
|
+
@pulumi.output_type
|
14106
|
+
class GetSoftwareSourceAvailableSoftwarePackagesFilterResult(dict):
|
14107
|
+
def __init__(__self__, *,
|
14108
|
+
name: str,
|
14109
|
+
values: Sequence[str],
|
14110
|
+
regex: Optional[bool] = None):
|
14111
|
+
"""
|
14112
|
+
:param str name: Unique identifier for the package. Note that this is not an OCID.
|
14113
|
+
"""
|
14114
|
+
pulumi.set(__self__, "name", name)
|
14115
|
+
pulumi.set(__self__, "values", values)
|
14116
|
+
if regex is not None:
|
14117
|
+
pulumi.set(__self__, "regex", regex)
|
14118
|
+
|
14119
|
+
@property
|
14120
|
+
@pulumi.getter
|
14121
|
+
def name(self) -> str:
|
14122
|
+
"""
|
14123
|
+
Unique identifier for the package. Note that this is not an OCID.
|
14124
|
+
"""
|
14125
|
+
return pulumi.get(self, "name")
|
14126
|
+
|
14127
|
+
@property
|
14128
|
+
@pulumi.getter
|
14129
|
+
def values(self) -> Sequence[str]:
|
14130
|
+
return pulumi.get(self, "values")
|
14131
|
+
|
14132
|
+
@property
|
14133
|
+
@pulumi.getter
|
14134
|
+
def regex(self) -> Optional[bool]:
|
14135
|
+
return pulumi.get(self, "regex")
|
14136
|
+
|
14137
|
+
|
14138
|
+
@pulumi.output_type
|
14139
|
+
class GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionResult(dict):
|
14140
|
+
def __init__(__self__, *,
|
14141
|
+
items: Sequence['outputs.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemResult']):
|
14142
|
+
"""
|
14143
|
+
:param Sequence['GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemArgs'] items: List of software packages.
|
14144
|
+
"""
|
14145
|
+
pulumi.set(__self__, "items", items)
|
14146
|
+
|
14147
|
+
@property
|
14148
|
+
@pulumi.getter
|
14149
|
+
def items(self) -> Sequence['outputs.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemResult']:
|
14150
|
+
"""
|
14151
|
+
List of software packages.
|
14152
|
+
"""
|
14153
|
+
return pulumi.get(self, "items")
|
14154
|
+
|
14155
|
+
|
14156
|
+
@pulumi.output_type
|
14157
|
+
class GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemResult(dict):
|
14158
|
+
def __init__(__self__, *,
|
14159
|
+
architecture: str,
|
14160
|
+
checksum: str,
|
14161
|
+
checksum_type: str,
|
14162
|
+
display_name: str,
|
14163
|
+
is_latest: bool,
|
14164
|
+
name: str,
|
14165
|
+
os_families: Sequence[str],
|
14166
|
+
software_sources: Sequence['outputs.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult'],
|
14167
|
+
type: str,
|
14168
|
+
version: str):
|
14169
|
+
"""
|
14170
|
+
:param str architecture: The architecture for which this software was built.
|
14171
|
+
:param str checksum: Checksum of the package.
|
14172
|
+
:param str checksum_type: Type of the checksum.
|
14173
|
+
:param str display_name: A filter to return resources that match the given user-friendly name.
|
14174
|
+
:param bool is_latest: Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
14175
|
+
:param str name: Unique identifier for the package. Note that this is not an OCID.
|
14176
|
+
:param Sequence[str] os_families: The OS families the package belongs to.
|
14177
|
+
:param Sequence['GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceArgs'] software_sources: List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
|
14178
|
+
:param str type: Type of the package.
|
14179
|
+
:param str version: Version of the package.
|
14180
|
+
"""
|
14181
|
+
pulumi.set(__self__, "architecture", architecture)
|
14182
|
+
pulumi.set(__self__, "checksum", checksum)
|
14183
|
+
pulumi.set(__self__, "checksum_type", checksum_type)
|
14184
|
+
pulumi.set(__self__, "display_name", display_name)
|
14185
|
+
pulumi.set(__self__, "is_latest", is_latest)
|
14186
|
+
pulumi.set(__self__, "name", name)
|
14187
|
+
pulumi.set(__self__, "os_families", os_families)
|
14188
|
+
pulumi.set(__self__, "software_sources", software_sources)
|
14189
|
+
pulumi.set(__self__, "type", type)
|
14190
|
+
pulumi.set(__self__, "version", version)
|
14191
|
+
|
14192
|
+
@property
|
14193
|
+
@pulumi.getter
|
14194
|
+
def architecture(self) -> str:
|
14195
|
+
"""
|
14196
|
+
The architecture for which this software was built.
|
14197
|
+
"""
|
14198
|
+
return pulumi.get(self, "architecture")
|
14199
|
+
|
14200
|
+
@property
|
14201
|
+
@pulumi.getter
|
14202
|
+
def checksum(self) -> str:
|
14203
|
+
"""
|
14204
|
+
Checksum of the package.
|
14205
|
+
"""
|
14206
|
+
return pulumi.get(self, "checksum")
|
14207
|
+
|
14208
|
+
@property
|
14209
|
+
@pulumi.getter(name="checksumType")
|
14210
|
+
def checksum_type(self) -> str:
|
14211
|
+
"""
|
14212
|
+
Type of the checksum.
|
14213
|
+
"""
|
14214
|
+
return pulumi.get(self, "checksum_type")
|
14215
|
+
|
14216
|
+
@property
|
14217
|
+
@pulumi.getter(name="displayName")
|
14218
|
+
def display_name(self) -> str:
|
14219
|
+
"""
|
14220
|
+
A filter to return resources that match the given user-friendly name.
|
14221
|
+
"""
|
14222
|
+
return pulumi.get(self, "display_name")
|
14223
|
+
|
14224
|
+
@property
|
14225
|
+
@pulumi.getter(name="isLatest")
|
14226
|
+
def is_latest(self) -> bool:
|
14227
|
+
"""
|
14228
|
+
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
14229
|
+
"""
|
14230
|
+
return pulumi.get(self, "is_latest")
|
14231
|
+
|
14232
|
+
@property
|
14233
|
+
@pulumi.getter
|
14234
|
+
def name(self) -> str:
|
14235
|
+
"""
|
14236
|
+
Unique identifier for the package. Note that this is not an OCID.
|
14237
|
+
"""
|
14238
|
+
return pulumi.get(self, "name")
|
14239
|
+
|
14240
|
+
@property
|
14241
|
+
@pulumi.getter(name="osFamilies")
|
14242
|
+
def os_families(self) -> Sequence[str]:
|
14243
|
+
"""
|
14244
|
+
The OS families the package belongs to.
|
14245
|
+
"""
|
14246
|
+
return pulumi.get(self, "os_families")
|
14247
|
+
|
14248
|
+
@property
|
14249
|
+
@pulumi.getter(name="softwareSources")
|
14250
|
+
def software_sources(self) -> Sequence['outputs.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult']:
|
14251
|
+
"""
|
14252
|
+
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
|
14253
|
+
"""
|
14254
|
+
return pulumi.get(self, "software_sources")
|
14255
|
+
|
14256
|
+
@property
|
14257
|
+
@pulumi.getter
|
14258
|
+
def type(self) -> str:
|
14259
|
+
"""
|
14260
|
+
Type of the package.
|
14261
|
+
"""
|
14262
|
+
return pulumi.get(self, "type")
|
14263
|
+
|
14264
|
+
@property
|
14265
|
+
@pulumi.getter
|
14266
|
+
def version(self) -> str:
|
14267
|
+
"""
|
14268
|
+
Version of the package.
|
14269
|
+
"""
|
14270
|
+
return pulumi.get(self, "version")
|
14271
|
+
|
14272
|
+
|
14273
|
+
@pulumi.output_type
|
14274
|
+
class GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSourceResult(dict):
|
14275
|
+
def __init__(__self__, *,
|
14276
|
+
description: str,
|
14277
|
+
display_name: str,
|
14278
|
+
id: str,
|
14279
|
+
is_mandatory_for_autonomous_linux: bool,
|
14280
|
+
software_source_type: str):
|
14281
|
+
"""
|
14282
|
+
:param str description: Software source description.
|
14283
|
+
:param str display_name: A filter to return resources that match the given user-friendly name.
|
14284
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
14285
|
+
:param bool is_mandatory_for_autonomous_linux: Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
|
14286
|
+
:param str software_source_type: Type of the software source.
|
14287
|
+
"""
|
14288
|
+
pulumi.set(__self__, "description", description)
|
14289
|
+
pulumi.set(__self__, "display_name", display_name)
|
14290
|
+
pulumi.set(__self__, "id", id)
|
14291
|
+
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
14292
|
+
pulumi.set(__self__, "software_source_type", software_source_type)
|
14293
|
+
|
14294
|
+
@property
|
14295
|
+
@pulumi.getter
|
14296
|
+
def description(self) -> str:
|
14297
|
+
"""
|
14298
|
+
Software source description.
|
14299
|
+
"""
|
14300
|
+
return pulumi.get(self, "description")
|
14301
|
+
|
14302
|
+
@property
|
14303
|
+
@pulumi.getter(name="displayName")
|
14304
|
+
def display_name(self) -> str:
|
14305
|
+
"""
|
14306
|
+
A filter to return resources that match the given user-friendly name.
|
14307
|
+
"""
|
14308
|
+
return pulumi.get(self, "display_name")
|
14309
|
+
|
14310
|
+
@property
|
14311
|
+
@pulumi.getter
|
14312
|
+
def id(self) -> str:
|
14313
|
+
"""
|
14314
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
14315
|
+
"""
|
14316
|
+
return pulumi.get(self, "id")
|
14317
|
+
|
14318
|
+
@property
|
14319
|
+
@pulumi.getter(name="isMandatoryForAutonomousLinux")
|
14320
|
+
def is_mandatory_for_autonomous_linux(self) -> bool:
|
14321
|
+
"""
|
14322
|
+
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
|
14323
|
+
"""
|
14324
|
+
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
14325
|
+
|
14326
|
+
@property
|
14327
|
+
@pulumi.getter(name="softwareSourceType")
|
14328
|
+
def software_source_type(self) -> str:
|
14329
|
+
"""
|
14330
|
+
Type of the software source.
|
14331
|
+
"""
|
14332
|
+
return pulumi.get(self, "software_source_type")
|
14333
|
+
|
14334
|
+
|
13058
14335
|
@pulumi.output_type
|
13059
14336
|
class GetSoftwareSourceCustomSoftwareSourceFilterResult(dict):
|
13060
14337
|
def __init__(__self__, *,
|
@@ -14385,10 +15662,12 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14385
15662
|
freeform_tags: Mapping[str, str],
|
14386
15663
|
id: str,
|
14387
15664
|
is_mandatory_for_autonomous_linux: bool,
|
15665
|
+
is_mirror_sync_allowed: bool,
|
14388
15666
|
os_family: str,
|
14389
15667
|
package_count: str,
|
14390
15668
|
repo_id: str,
|
14391
15669
|
size: float,
|
15670
|
+
software_source_sub_type: str,
|
14392
15671
|
software_source_type: str,
|
14393
15672
|
software_source_version: str,
|
14394
15673
|
state: str,
|
@@ -14400,8 +15679,8 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14400
15679
|
vendor_software_sources: Sequence['outputs.GetSoftwareSourcesSoftwareSourceCollectionItemVendorSoftwareSourceResult']):
|
14401
15680
|
"""
|
14402
15681
|
:param str arch_type: A filter to return only instances whose architecture type matches the given architecture.
|
14403
|
-
:param str availability: The
|
14404
|
-
:param str availability_at_oci: The
|
15682
|
+
:param str availability: The availability of the software source in a non-OCI environment for a tenancy.
|
15683
|
+
:param str availability_at_oci: The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
14405
15684
|
:param str compartment_id: (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
14406
15685
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
14407
15686
|
:param str description: User-specified description for the software source.
|
@@ -14409,10 +15688,12 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14409
15688
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
14410
15689
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource that is immutable on creation.
|
14411
15690
|
:param bool is_mandatory_for_autonomous_linux: Indicates whether the software source is mandatory for the Autonomous Linux service.
|
15691
|
+
:param bool is_mirror_sync_allowed: A filter to return software sources which can be synced to a management station.
|
14412
15692
|
:param str os_family: A filter to return only resources that match the given operating system family.
|
14413
15693
|
:param str package_count: Number of packages the software source contains.
|
14414
15694
|
:param str repo_id: The repository ID for the software source.
|
14415
|
-
:param float size: The size of the software source in
|
15695
|
+
:param float size: The size of the software source in bytes (B).
|
15696
|
+
:param str software_source_sub_type: Identifies how the versioned custom software source was created.
|
14416
15697
|
:param str software_source_type: The type of the software source.
|
14417
15698
|
:param str software_source_version: The version to assign to this custom software source.
|
14418
15699
|
:param str state: A filter to return only software sources whose state matches the given state.
|
@@ -14432,10 +15713,12 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14432
15713
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
14433
15714
|
pulumi.set(__self__, "id", id)
|
14434
15715
|
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
15716
|
+
pulumi.set(__self__, "is_mirror_sync_allowed", is_mirror_sync_allowed)
|
14435
15717
|
pulumi.set(__self__, "os_family", os_family)
|
14436
15718
|
pulumi.set(__self__, "package_count", package_count)
|
14437
15719
|
pulumi.set(__self__, "repo_id", repo_id)
|
14438
15720
|
pulumi.set(__self__, "size", size)
|
15721
|
+
pulumi.set(__self__, "software_source_sub_type", software_source_sub_type)
|
14439
15722
|
pulumi.set(__self__, "software_source_type", software_source_type)
|
14440
15723
|
pulumi.set(__self__, "software_source_version", software_source_version)
|
14441
15724
|
pulumi.set(__self__, "state", state)
|
@@ -14458,7 +15741,7 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14458
15741
|
@pulumi.getter
|
14459
15742
|
def availability(self) -> str:
|
14460
15743
|
"""
|
14461
|
-
The
|
15744
|
+
The availability of the software source in a non-OCI environment for a tenancy.
|
14462
15745
|
"""
|
14463
15746
|
return pulumi.get(self, "availability")
|
14464
15747
|
|
@@ -14466,7 +15749,7 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14466
15749
|
@pulumi.getter(name="availabilityAtOci")
|
14467
15750
|
def availability_at_oci(self) -> str:
|
14468
15751
|
"""
|
14469
|
-
The
|
15752
|
+
The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
14470
15753
|
"""
|
14471
15754
|
return pulumi.get(self, "availability_at_oci")
|
14472
15755
|
|
@@ -14526,6 +15809,14 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14526
15809
|
"""
|
14527
15810
|
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
14528
15811
|
|
15812
|
+
@property
|
15813
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
15814
|
+
def is_mirror_sync_allowed(self) -> bool:
|
15815
|
+
"""
|
15816
|
+
A filter to return software sources which can be synced to a management station.
|
15817
|
+
"""
|
15818
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
15819
|
+
|
14529
15820
|
@property
|
14530
15821
|
@pulumi.getter(name="osFamily")
|
14531
15822
|
def os_family(self) -> str:
|
@@ -14554,10 +15845,18 @@ class GetSoftwareSourcesSoftwareSourceCollectionItemResult(dict):
|
|
14554
15845
|
@pulumi.getter
|
14555
15846
|
def size(self) -> float:
|
14556
15847
|
"""
|
14557
|
-
The size of the software source in
|
15848
|
+
The size of the software source in bytes (B).
|
14558
15849
|
"""
|
14559
15850
|
return pulumi.get(self, "size")
|
14560
15851
|
|
15852
|
+
@property
|
15853
|
+
@pulumi.getter(name="softwareSourceSubType")
|
15854
|
+
def software_source_sub_type(self) -> str:
|
15855
|
+
"""
|
15856
|
+
Identifies how the versioned custom software source was created.
|
15857
|
+
"""
|
15858
|
+
return pulumi.get(self, "software_source_sub_type")
|
15859
|
+
|
14561
15860
|
@property
|
14562
15861
|
@pulumi.getter(name="softwareSourceType")
|
14563
15862
|
def software_source_type(self) -> str:
|