pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__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.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class GetProfilesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getProfiles.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, arch_type=None, compartment_id=None, display_name_contains=None, display_names=None, filters=None, id=None, is_default_profile=None, is_service_provided_profile=None, os_family=None, profile_collections=None, profile_id=None, profile_types=None, registration_types=None, state=None, vendor_name=None):
|
31
|
+
def __init__(__self__, arch_type=None, compartment_id=None, display_name_contains=None, display_names=None, filters=None, id=None, is_default_profile=None, is_service_provided_profile=None, management_station_not_equal_tos=None, management_stations=None, os_family=None, profile_collections=None, profile_id=None, profile_types=None, profile_version=None, registration_types=None, state=None, vendor_name=None):
|
32
32
|
if arch_type and not isinstance(arch_type, str):
|
33
33
|
raise TypeError("Expected argument 'arch_type' to be a str")
|
34
34
|
pulumi.set(__self__, "arch_type", arch_type)
|
@@ -53,6 +53,12 @@ class GetProfilesResult:
|
|
53
53
|
if is_service_provided_profile and not isinstance(is_service_provided_profile, bool):
|
54
54
|
raise TypeError("Expected argument 'is_service_provided_profile' to be a bool")
|
55
55
|
pulumi.set(__self__, "is_service_provided_profile", is_service_provided_profile)
|
56
|
+
if management_station_not_equal_tos and not isinstance(management_station_not_equal_tos, list):
|
57
|
+
raise TypeError("Expected argument 'management_station_not_equal_tos' to be a list")
|
58
|
+
pulumi.set(__self__, "management_station_not_equal_tos", management_station_not_equal_tos)
|
59
|
+
if management_stations and not isinstance(management_stations, list):
|
60
|
+
raise TypeError("Expected argument 'management_stations' to be a list")
|
61
|
+
pulumi.set(__self__, "management_stations", management_stations)
|
56
62
|
if os_family and not isinstance(os_family, str):
|
57
63
|
raise TypeError("Expected argument 'os_family' to be a str")
|
58
64
|
pulumi.set(__self__, "os_family", os_family)
|
@@ -65,6 +71,9 @@ class GetProfilesResult:
|
|
65
71
|
if profile_types and not isinstance(profile_types, list):
|
66
72
|
raise TypeError("Expected argument 'profile_types' to be a list")
|
67
73
|
pulumi.set(__self__, "profile_types", profile_types)
|
74
|
+
if profile_version and not isinstance(profile_version, str):
|
75
|
+
raise TypeError("Expected argument 'profile_version' to be a str")
|
76
|
+
pulumi.set(__self__, "profile_version", profile_version)
|
68
77
|
if registration_types and not isinstance(registration_types, list):
|
69
78
|
raise TypeError("Expected argument 'registration_types' to be a list")
|
70
79
|
pulumi.set(__self__, "registration_types", registration_types)
|
@@ -133,6 +142,16 @@ class GetProfilesResult:
|
|
133
142
|
"""
|
134
143
|
return pulumi.get(self, "is_service_provided_profile")
|
135
144
|
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="managementStationNotEqualTos")
|
147
|
+
def management_station_not_equal_tos(self) -> Optional[Sequence[str]]:
|
148
|
+
return pulumi.get(self, "management_station_not_equal_tos")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="managementStations")
|
152
|
+
def management_stations(self) -> Optional[Sequence[str]]:
|
153
|
+
return pulumi.get(self, "management_stations")
|
154
|
+
|
136
155
|
@property
|
137
156
|
@pulumi.getter(name="osFamily")
|
138
157
|
def os_family(self) -> Optional[str]:
|
@@ -162,6 +181,14 @@ class GetProfilesResult:
|
|
162
181
|
"""
|
163
182
|
return pulumi.get(self, "profile_types")
|
164
183
|
|
184
|
+
@property
|
185
|
+
@pulumi.getter(name="profileVersion")
|
186
|
+
def profile_version(self) -> Optional[str]:
|
187
|
+
"""
|
188
|
+
The version of the profile. The version is automatically incremented each time the profiled is edited.
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "profile_version")
|
191
|
+
|
165
192
|
@property
|
166
193
|
@pulumi.getter(name="registrationTypes")
|
167
194
|
def registration_types(self) -> Optional[Sequence[str]]:
|
@@ -201,10 +228,13 @@ class AwaitableGetProfilesResult(GetProfilesResult):
|
|
201
228
|
id=self.id,
|
202
229
|
is_default_profile=self.is_default_profile,
|
203
230
|
is_service_provided_profile=self.is_service_provided_profile,
|
231
|
+
management_station_not_equal_tos=self.management_station_not_equal_tos,
|
232
|
+
management_stations=self.management_stations,
|
204
233
|
os_family=self.os_family,
|
205
234
|
profile_collections=self.profile_collections,
|
206
235
|
profile_id=self.profile_id,
|
207
236
|
profile_types=self.profile_types,
|
237
|
+
profile_version=self.profile_version,
|
208
238
|
registration_types=self.registration_types,
|
209
239
|
state=self.state,
|
210
240
|
vendor_name=self.vendor_name)
|
@@ -217,9 +247,12 @@ def get_profiles(arch_type: Optional[str] = None,
|
|
217
247
|
filters: Optional[Sequence[Union['GetProfilesFilterArgs', 'GetProfilesFilterArgsDict']]] = None,
|
218
248
|
is_default_profile: Optional[bool] = None,
|
219
249
|
is_service_provided_profile: Optional[bool] = None,
|
250
|
+
management_station_not_equal_tos: Optional[Sequence[str]] = None,
|
251
|
+
management_stations: Optional[Sequence[str]] = None,
|
220
252
|
os_family: Optional[str] = None,
|
221
253
|
profile_id: Optional[str] = None,
|
222
254
|
profile_types: Optional[Sequence[str]] = None,
|
255
|
+
profile_version: Optional[str] = None,
|
223
256
|
registration_types: Optional[Sequence[str]] = None,
|
224
257
|
state: Optional[str] = None,
|
225
258
|
vendor_name: Optional[str] = None,
|
@@ -242,9 +275,12 @@ def get_profiles(arch_type: Optional[str] = None,
|
|
242
275
|
display_name_contains=profile_display_name_contains,
|
243
276
|
is_default_profile=profile_is_default_profile,
|
244
277
|
is_service_provided_profile=profile_is_service_provided_profile,
|
278
|
+
management_stations=profile_management_station,
|
279
|
+
management_station_not_equal_tos=profile_management_station_not_equal_to,
|
245
280
|
os_family=profile_os_family,
|
246
281
|
profile_id=test_profile["id"],
|
247
282
|
profile_types=profile_profile_type,
|
283
|
+
profile_version=profile_profile_version,
|
248
284
|
registration_types=profile_registration_type,
|
249
285
|
state=profile_state,
|
250
286
|
vendor_name=profile_vendor_name)
|
@@ -255,11 +291,14 @@ def get_profiles(arch_type: Optional[str] = None,
|
|
255
291
|
: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.
|
256
292
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
257
293
|
:param Sequence[str] display_names: A filter to return resources that match the given display names.
|
258
|
-
:param bool is_default_profile: A
|
294
|
+
:param bool is_default_profile: A filter to return only default profiles.
|
259
295
|
:param bool is_service_provided_profile: A filter to return only service-provided profiles.
|
296
|
+
:param Sequence[str] management_station_not_equal_tos: A filter to return resources that aren't associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
297
|
+
:param Sequence[str] management_stations: A filter to return resources that are associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
260
298
|
:param str os_family: A filter to return only resources that match the given operating system family.
|
261
299
|
:param str profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. A filter used to return the specified profile.
|
262
300
|
:param Sequence[str] profile_types: A filter to return registration profiles that match the given profile type.
|
301
|
+
:param str profile_version: The version of the registration profile.
|
263
302
|
:param Sequence[str] registration_types: A filter to return profiles that match the given instance type.
|
264
303
|
:param str state: A filter to return only registration profiles in the given state.
|
265
304
|
:param str vendor_name: A filter to return only resources that match the given vendor name.
|
@@ -272,9 +311,12 @@ def get_profiles(arch_type: Optional[str] = None,
|
|
272
311
|
__args__['filters'] = filters
|
273
312
|
__args__['isDefaultProfile'] = is_default_profile
|
274
313
|
__args__['isServiceProvidedProfile'] = is_service_provided_profile
|
314
|
+
__args__['managementStationNotEqualTos'] = management_station_not_equal_tos
|
315
|
+
__args__['managementStations'] = management_stations
|
275
316
|
__args__['osFamily'] = os_family
|
276
317
|
__args__['profileId'] = profile_id
|
277
318
|
__args__['profileTypes'] = profile_types
|
319
|
+
__args__['profileVersion'] = profile_version
|
278
320
|
__args__['registrationTypes'] = registration_types
|
279
321
|
__args__['state'] = state
|
280
322
|
__args__['vendorName'] = vendor_name
|
@@ -290,10 +332,13 @@ def get_profiles(arch_type: Optional[str] = None,
|
|
290
332
|
id=pulumi.get(__ret__, 'id'),
|
291
333
|
is_default_profile=pulumi.get(__ret__, 'is_default_profile'),
|
292
334
|
is_service_provided_profile=pulumi.get(__ret__, 'is_service_provided_profile'),
|
335
|
+
management_station_not_equal_tos=pulumi.get(__ret__, 'management_station_not_equal_tos'),
|
336
|
+
management_stations=pulumi.get(__ret__, 'management_stations'),
|
293
337
|
os_family=pulumi.get(__ret__, 'os_family'),
|
294
338
|
profile_collections=pulumi.get(__ret__, 'profile_collections'),
|
295
339
|
profile_id=pulumi.get(__ret__, 'profile_id'),
|
296
340
|
profile_types=pulumi.get(__ret__, 'profile_types'),
|
341
|
+
profile_version=pulumi.get(__ret__, 'profile_version'),
|
297
342
|
registration_types=pulumi.get(__ret__, 'registration_types'),
|
298
343
|
state=pulumi.get(__ret__, 'state'),
|
299
344
|
vendor_name=pulumi.get(__ret__, 'vendor_name'))
|
@@ -304,9 +349,12 @@ def get_profiles_output(arch_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
304
349
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetProfilesFilterArgs', 'GetProfilesFilterArgsDict']]]]] = None,
|
305
350
|
is_default_profile: Optional[pulumi.Input[Optional[bool]]] = None,
|
306
351
|
is_service_provided_profile: Optional[pulumi.Input[Optional[bool]]] = None,
|
352
|
+
management_station_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
353
|
+
management_stations: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
307
354
|
os_family: Optional[pulumi.Input[Optional[str]]] = None,
|
308
355
|
profile_id: Optional[pulumi.Input[Optional[str]]] = None,
|
309
356
|
profile_types: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
357
|
+
profile_version: Optional[pulumi.Input[Optional[str]]] = None,
|
310
358
|
registration_types: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
311
359
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
312
360
|
vendor_name: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -329,9 +377,12 @@ def get_profiles_output(arch_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
329
377
|
display_name_contains=profile_display_name_contains,
|
330
378
|
is_default_profile=profile_is_default_profile,
|
331
379
|
is_service_provided_profile=profile_is_service_provided_profile,
|
380
|
+
management_stations=profile_management_station,
|
381
|
+
management_station_not_equal_tos=profile_management_station_not_equal_to,
|
332
382
|
os_family=profile_os_family,
|
333
383
|
profile_id=test_profile["id"],
|
334
384
|
profile_types=profile_profile_type,
|
385
|
+
profile_version=profile_profile_version,
|
335
386
|
registration_types=profile_registration_type,
|
336
387
|
state=profile_state,
|
337
388
|
vendor_name=profile_vendor_name)
|
@@ -342,11 +393,14 @@ def get_profiles_output(arch_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
342
393
|
: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.
|
343
394
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
344
395
|
:param Sequence[str] display_names: A filter to return resources that match the given display names.
|
345
|
-
:param bool is_default_profile: A
|
396
|
+
:param bool is_default_profile: A filter to return only default profiles.
|
346
397
|
:param bool is_service_provided_profile: A filter to return only service-provided profiles.
|
398
|
+
:param Sequence[str] management_station_not_equal_tos: A filter to return resources that aren't associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
399
|
+
:param Sequence[str] management_stations: A filter to return resources that are associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
347
400
|
:param str os_family: A filter to return only resources that match the given operating system family.
|
348
401
|
:param str profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. A filter used to return the specified profile.
|
349
402
|
:param Sequence[str] profile_types: A filter to return registration profiles that match the given profile type.
|
403
|
+
:param str profile_version: The version of the registration profile.
|
350
404
|
:param Sequence[str] registration_types: A filter to return profiles that match the given instance type.
|
351
405
|
:param str state: A filter to return only registration profiles in the given state.
|
352
406
|
:param str vendor_name: A filter to return only resources that match the given vendor name.
|
@@ -359,9 +413,12 @@ def get_profiles_output(arch_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
359
413
|
__args__['filters'] = filters
|
360
414
|
__args__['isDefaultProfile'] = is_default_profile
|
361
415
|
__args__['isServiceProvidedProfile'] = is_service_provided_profile
|
416
|
+
__args__['managementStationNotEqualTos'] = management_station_not_equal_tos
|
417
|
+
__args__['managementStations'] = management_stations
|
362
418
|
__args__['osFamily'] = os_family
|
363
419
|
__args__['profileId'] = profile_id
|
364
420
|
__args__['profileTypes'] = profile_types
|
421
|
+
__args__['profileVersion'] = profile_version
|
365
422
|
__args__['registrationTypes'] = registration_types
|
366
423
|
__args__['state'] = state
|
367
424
|
__args__['vendorName'] = vendor_name
|
@@ -376,10 +433,13 @@ def get_profiles_output(arch_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
376
433
|
id=pulumi.get(__response__, 'id'),
|
377
434
|
is_default_profile=pulumi.get(__response__, 'is_default_profile'),
|
378
435
|
is_service_provided_profile=pulumi.get(__response__, 'is_service_provided_profile'),
|
436
|
+
management_station_not_equal_tos=pulumi.get(__response__, 'management_station_not_equal_tos'),
|
437
|
+
management_stations=pulumi.get(__response__, 'management_stations'),
|
379
438
|
os_family=pulumi.get(__response__, 'os_family'),
|
380
439
|
profile_collections=pulumi.get(__response__, 'profile_collections'),
|
381
440
|
profile_id=pulumi.get(__response__, 'profile_id'),
|
382
441
|
profile_types=pulumi.get(__response__, 'profile_types'),
|
442
|
+
profile_version=pulumi.get(__response__, 'profile_version'),
|
383
443
|
registration_types=pulumi.get(__response__, 'registration_types'),
|
384
444
|
state=pulumi.get(__response__, 'state'),
|
385
445
|
vendor_name=pulumi.get(__response__, 'vendor_name')))
|
@@ -27,7 +27,7 @@ class GetScheduledJobResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getScheduledJob.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_managed_by_autonomous_linux=None, is_restricted=None, is_subcompartment_included=None, lifecycle_stage_ids=None, locations=None, managed_compartment_ids=None, managed_instance_group_ids=None, managed_instance_ids=None, operations=None, recurring_rule=None, retry_intervals=None, schedule_type=None, scheduled_job_id=None, state=None, system_tags=None, time_created=None, time_last_execution=None, time_next_execution=None, time_updated=None, work_request_ids=None):
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_managed_by_autonomous_linux=None, is_restricted=None, is_subcompartment_included=None, lifecycle_stage_ids=None, locations=None, managed_compartment_ids=None, managed_instance_group_ids=None, managed_instance_ids=None, operations=None, recurring_rule=None, retry_intervals=None, schedule_type=None, scheduled_job_id=None, state=None, system_tags=None, time_created=None, time_last_execution=None, time_next_execution=None, time_updated=None, work_request_id=None, work_request_ids=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -103,6 +103,9 @@ class GetScheduledJobResult:
|
|
103
103
|
if time_updated and not isinstance(time_updated, str):
|
104
104
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
105
105
|
pulumi.set(__self__, "time_updated", time_updated)
|
106
|
+
if work_request_id and not isinstance(work_request_id, str):
|
107
|
+
raise TypeError("Expected argument 'work_request_id' to be a str")
|
108
|
+
pulumi.set(__self__, "work_request_id", work_request_id)
|
106
109
|
if work_request_ids and not isinstance(work_request_ids, list):
|
107
110
|
raise TypeError("Expected argument 'work_request_ids' to be a list")
|
108
111
|
pulumi.set(__self__, "work_request_ids", work_request_ids)
|
@@ -312,6 +315,14 @@ class GetScheduledJobResult:
|
|
312
315
|
"""
|
313
316
|
return pulumi.get(self, "time_updated")
|
314
317
|
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="workRequestId")
|
320
|
+
def work_request_id(self) -> str:
|
321
|
+
"""
|
322
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "work_request_id")
|
325
|
+
|
315
326
|
@property
|
316
327
|
@pulumi.getter(name="workRequestIds")
|
317
328
|
def work_request_ids(self) -> Sequence[str]:
|
@@ -352,6 +363,7 @@ class AwaitableGetScheduledJobResult(GetScheduledJobResult):
|
|
352
363
|
time_last_execution=self.time_last_execution,
|
353
364
|
time_next_execution=self.time_next_execution,
|
354
365
|
time_updated=self.time_updated,
|
366
|
+
work_request_id=self.work_request_id,
|
355
367
|
work_request_ids=self.work_request_ids)
|
356
368
|
|
357
369
|
|
@@ -405,6 +417,7 @@ def get_scheduled_job(scheduled_job_id: Optional[str] = None,
|
|
405
417
|
time_last_execution=pulumi.get(__ret__, 'time_last_execution'),
|
406
418
|
time_next_execution=pulumi.get(__ret__, 'time_next_execution'),
|
407
419
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
420
|
+
work_request_id=pulumi.get(__ret__, 'work_request_id'),
|
408
421
|
work_request_ids=pulumi.get(__ret__, 'work_request_ids'))
|
409
422
|
def get_scheduled_job_output(scheduled_job_id: Optional[pulumi.Input[str]] = None,
|
410
423
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetScheduledJobResult]:
|
@@ -455,4 +468,5 @@ def get_scheduled_job_output(scheduled_job_id: Optional[pulumi.Input[str]] = Non
|
|
455
468
|
time_last_execution=pulumi.get(__response__, 'time_last_execution'),
|
456
469
|
time_next_execution=pulumi.get(__response__, 'time_next_execution'),
|
457
470
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
471
|
+
work_request_id=pulumi.get(__response__, 'work_request_id'),
|
458
472
|
work_request_ids=pulumi.get(__response__, 'work_request_ids')))
|
@@ -244,7 +244,7 @@ def get_software_package(software_package_name: Optional[str] = None,
|
|
244
244
|
"""
|
245
245
|
This data source provides details about a specific Software Package resource in Oracle Cloud Infrastructure Os Management Hub service.
|
246
246
|
|
247
|
-
Returns information about the specified software package based on its fully qualified name.
|
247
|
+
Returns information about the specified software package based on its fully qualified name (NVRA or NEVRA).
|
248
248
|
|
249
249
|
## Example Usage
|
250
250
|
|
@@ -286,7 +286,7 @@ def get_software_package_output(software_package_name: Optional[pulumi.Input[str
|
|
286
286
|
"""
|
287
287
|
This data source provides details about a specific Software Package resource in Oracle Cloud Infrastructure Os Management Hub service.
|
288
288
|
|
289
|
-
Returns information about the specified software package based on its fully qualified name.
|
289
|
+
Returns information about the specified software package based on its fully qualified name (NVRA or NEVRA).
|
290
290
|
|
291
291
|
## Example Usage
|
292
292
|
|
@@ -139,7 +139,7 @@ class GetSoftwarePackageSoftwareSourceResult:
|
|
139
139
|
@pulumi.getter(name="osFamilies")
|
140
140
|
def os_families(self) -> Optional[Sequence[str]]:
|
141
141
|
"""
|
142
|
-
The OS family the software source
|
142
|
+
The OS family of the software source.
|
143
143
|
"""
|
144
144
|
return pulumi.get(self, "os_families")
|
145
145
|
|
@@ -235,9 +235,9 @@ def get_software_package_software_source(arch_types: Optional[Sequence[str]] = N
|
|
235
235
|
|
236
236
|
|
237
237
|
:param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
|
238
|
-
:param Sequence[str] availabilities: The
|
239
|
-
:param Sequence[str] availability_anywheres: The
|
240
|
-
:param Sequence[str] availability_at_ocis: The
|
238
|
+
:param Sequence[str] availabilities: The availability of the software source in a non-OCI environment for a tenancy.
|
239
|
+
:param Sequence[str] availability_anywheres: The availability of the software source. Use this query parameter to filter across availabilities in different environments.
|
240
|
+
:param Sequence[str] availability_at_ocis: The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
241
241
|
: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.
|
242
242
|
:param str display_name: A filter to return resources that match the given user-friendly name.
|
243
243
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
@@ -317,9 +317,9 @@ def get_software_package_software_source_output(arch_types: Optional[pulumi.Inpu
|
|
317
317
|
|
318
318
|
|
319
319
|
:param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
|
320
|
-
:param Sequence[str] availabilities: The
|
321
|
-
:param Sequence[str] availability_anywheres: The
|
322
|
-
:param Sequence[str] availability_at_ocis: The
|
320
|
+
:param Sequence[str] availabilities: The availability of the software source in a non-OCI environment for a tenancy.
|
321
|
+
:param Sequence[str] availability_anywheres: The availability of the software source. Use this query parameter to filter across availabilities in different environments.
|
322
|
+
:param Sequence[str] availability_at_ocis: The availability of the software source in an Oracle Cloud Infrastructure environment for a tenancy.
|
323
323
|
: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.
|
324
324
|
:param str display_name: A filter to return resources that match the given user-friendly name.
|
325
325
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
@@ -27,7 +27,10 @@ class GetSoftwareSourceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getSoftwareSource.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, arch_type=None, availability=None, availability_at_oci=None, checksum_type=None, compartment_id=None, custom_software_source_filters=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, gpg_key_fingerprint=None, gpg_key_id=None, gpg_key_url=None, id=None, is_auto_resolve_dependencies=None, is_automatically_updated=None, is_created_from_package_list=None, is_latest_content_only=None, is_mandatory_for_autonomous_linux=None, origin_software_source_id=None, os_family=None, package_count=None, packages=None, repo_id=None, size=None, software_source_id=None, software_source_type=None, software_source_version=None, state=None, system_tags=None, time_created=None, url=None, vendor_name=None, vendor_software_sources=None):
|
30
|
+
def __init__(__self__, advanced_repo_options=None, arch_type=None, availability=None, availability_at_oci=None, checksum_type=None, compartment_id=None, custom_software_source_filters=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, gpg_key_fingerprint=None, gpg_key_id=None, gpg_key_url=None, id=None, is_auto_resolve_dependencies=None, is_automatically_updated=None, is_created_from_package_list=None, is_gpg_check_enabled=None, is_latest_content_only=None, is_mandatory_for_autonomous_linux=None, is_mirror_sync_allowed=None, is_ssl_verify_enabled=None, origin_software_source_id=None, os_family=None, package_count=None, packages=None, repo_id=None, size=None, software_source_id=None, software_source_sub_type=None, software_source_type=None, software_source_version=None, state=None, system_tags=None, time_created=None, time_metadata_updated=None, url=None, vendor_name=None, vendor_software_sources=None):
|
31
|
+
if advanced_repo_options and not isinstance(advanced_repo_options, str):
|
32
|
+
raise TypeError("Expected argument 'advanced_repo_options' to be a str")
|
33
|
+
pulumi.set(__self__, "advanced_repo_options", advanced_repo_options)
|
31
34
|
if arch_type and not isinstance(arch_type, str):
|
32
35
|
raise TypeError("Expected argument 'arch_type' to be a str")
|
33
36
|
pulumi.set(__self__, "arch_type", arch_type)
|
@@ -79,12 +82,21 @@ class GetSoftwareSourceResult:
|
|
79
82
|
if is_created_from_package_list and not isinstance(is_created_from_package_list, bool):
|
80
83
|
raise TypeError("Expected argument 'is_created_from_package_list' to be a bool")
|
81
84
|
pulumi.set(__self__, "is_created_from_package_list", is_created_from_package_list)
|
85
|
+
if is_gpg_check_enabled and not isinstance(is_gpg_check_enabled, bool):
|
86
|
+
raise TypeError("Expected argument 'is_gpg_check_enabled' to be a bool")
|
87
|
+
pulumi.set(__self__, "is_gpg_check_enabled", is_gpg_check_enabled)
|
82
88
|
if is_latest_content_only and not isinstance(is_latest_content_only, bool):
|
83
89
|
raise TypeError("Expected argument 'is_latest_content_only' to be a bool")
|
84
90
|
pulumi.set(__self__, "is_latest_content_only", is_latest_content_only)
|
85
91
|
if is_mandatory_for_autonomous_linux and not isinstance(is_mandatory_for_autonomous_linux, bool):
|
86
92
|
raise TypeError("Expected argument 'is_mandatory_for_autonomous_linux' to be a bool")
|
87
93
|
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
94
|
+
if is_mirror_sync_allowed and not isinstance(is_mirror_sync_allowed, bool):
|
95
|
+
raise TypeError("Expected argument 'is_mirror_sync_allowed' to be a bool")
|
96
|
+
pulumi.set(__self__, "is_mirror_sync_allowed", is_mirror_sync_allowed)
|
97
|
+
if is_ssl_verify_enabled and not isinstance(is_ssl_verify_enabled, bool):
|
98
|
+
raise TypeError("Expected argument 'is_ssl_verify_enabled' to be a bool")
|
99
|
+
pulumi.set(__self__, "is_ssl_verify_enabled", is_ssl_verify_enabled)
|
88
100
|
if origin_software_source_id and not isinstance(origin_software_source_id, str):
|
89
101
|
raise TypeError("Expected argument 'origin_software_source_id' to be a str")
|
90
102
|
pulumi.set(__self__, "origin_software_source_id", origin_software_source_id)
|
@@ -106,6 +118,9 @@ class GetSoftwareSourceResult:
|
|
106
118
|
if software_source_id and not isinstance(software_source_id, str):
|
107
119
|
raise TypeError("Expected argument 'software_source_id' to be a str")
|
108
120
|
pulumi.set(__self__, "software_source_id", software_source_id)
|
121
|
+
if software_source_sub_type and not isinstance(software_source_sub_type, str):
|
122
|
+
raise TypeError("Expected argument 'software_source_sub_type' to be a str")
|
123
|
+
pulumi.set(__self__, "software_source_sub_type", software_source_sub_type)
|
109
124
|
if software_source_type and not isinstance(software_source_type, str):
|
110
125
|
raise TypeError("Expected argument 'software_source_type' to be a str")
|
111
126
|
pulumi.set(__self__, "software_source_type", software_source_type)
|
@@ -121,6 +136,9 @@ class GetSoftwareSourceResult:
|
|
121
136
|
if time_created and not isinstance(time_created, str):
|
122
137
|
raise TypeError("Expected argument 'time_created' to be a str")
|
123
138
|
pulumi.set(__self__, "time_created", time_created)
|
139
|
+
if time_metadata_updated and not isinstance(time_metadata_updated, str):
|
140
|
+
raise TypeError("Expected argument 'time_metadata_updated' to be a str")
|
141
|
+
pulumi.set(__self__, "time_metadata_updated", time_metadata_updated)
|
124
142
|
if url and not isinstance(url, str):
|
125
143
|
raise TypeError("Expected argument 'url' to be a str")
|
126
144
|
pulumi.set(__self__, "url", url)
|
@@ -131,6 +149,14 @@ class GetSoftwareSourceResult:
|
|
131
149
|
raise TypeError("Expected argument 'vendor_software_sources' to be a list")
|
132
150
|
pulumi.set(__self__, "vendor_software_sources", vendor_software_sources)
|
133
151
|
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="advancedRepoOptions")
|
154
|
+
def advanced_repo_options(self) -> str:
|
155
|
+
"""
|
156
|
+
Advanced repository options for the software source
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "advanced_repo_options")
|
159
|
+
|
134
160
|
@property
|
135
161
|
@pulumi.getter(name="archType")
|
136
162
|
def arch_type(self) -> str:
|
@@ -231,7 +257,7 @@ class GetSoftwareSourceResult:
|
|
231
257
|
@pulumi.getter(name="gpgKeyUrl")
|
232
258
|
def gpg_key_url(self) -> str:
|
233
259
|
"""
|
234
|
-
|
260
|
+
URI of the GPG key for this software source.
|
235
261
|
"""
|
236
262
|
return pulumi.get(self, "gpg_key_url")
|
237
263
|
|
@@ -267,6 +293,14 @@ class GetSoftwareSourceResult:
|
|
267
293
|
"""
|
268
294
|
return pulumi.get(self, "is_created_from_package_list")
|
269
295
|
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="isGpgCheckEnabled")
|
298
|
+
def is_gpg_check_enabled(self) -> bool:
|
299
|
+
"""
|
300
|
+
Whether signature verification should be done for the software source
|
301
|
+
"""
|
302
|
+
return pulumi.get(self, "is_gpg_check_enabled")
|
303
|
+
|
270
304
|
@property
|
271
305
|
@pulumi.getter(name="isLatestContentOnly")
|
272
306
|
def is_latest_content_only(self) -> bool:
|
@@ -288,11 +322,27 @@ class GetSoftwareSourceResult:
|
|
288
322
|
"""
|
289
323
|
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
290
324
|
|
325
|
+
@property
|
326
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
327
|
+
def is_mirror_sync_allowed(self) -> bool:
|
328
|
+
"""
|
329
|
+
Indicates if this software source can be mirrored to a management station.
|
330
|
+
"""
|
331
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="isSslVerifyEnabled")
|
335
|
+
def is_ssl_verify_enabled(self) -> bool:
|
336
|
+
"""
|
337
|
+
Indicates if SSL validation is enabled for the software source.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "is_ssl_verify_enabled")
|
340
|
+
|
291
341
|
@property
|
292
342
|
@pulumi.getter(name="originSoftwareSourceId")
|
293
343
|
def origin_software_source_id(self) -> str:
|
294
344
|
"""
|
295
|
-
|
345
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vendor software source in the root compartment. This property applies only to replicated vendor software sources.
|
296
346
|
"""
|
297
347
|
return pulumi.get(self, "origin_software_source_id")
|
298
348
|
|
@@ -300,7 +350,7 @@ class GetSoftwareSourceResult:
|
|
300
350
|
@pulumi.getter(name="osFamily")
|
301
351
|
def os_family(self) -> str:
|
302
352
|
"""
|
303
|
-
The OS family the software source
|
353
|
+
The OS family of the software source.
|
304
354
|
"""
|
305
355
|
return pulumi.get(self, "os_family")
|
306
356
|
|
@@ -332,7 +382,7 @@ class GetSoftwareSourceResult:
|
|
332
382
|
@pulumi.getter
|
333
383
|
def size(self) -> float:
|
334
384
|
"""
|
335
|
-
The size of the software source in
|
385
|
+
The size of the software source in bytes (B).
|
336
386
|
"""
|
337
387
|
return pulumi.get(self, "size")
|
338
388
|
|
@@ -341,6 +391,14 @@ class GetSoftwareSourceResult:
|
|
341
391
|
def software_source_id(self) -> str:
|
342
392
|
return pulumi.get(self, "software_source_id")
|
343
393
|
|
394
|
+
@property
|
395
|
+
@pulumi.getter(name="softwareSourceSubType")
|
396
|
+
def software_source_sub_type(self) -> str:
|
397
|
+
"""
|
398
|
+
Identifies how the versioned custom software source was created.
|
399
|
+
"""
|
400
|
+
return pulumi.get(self, "software_source_sub_type")
|
401
|
+
|
344
402
|
@property
|
345
403
|
@pulumi.getter(name="softwareSourceType")
|
346
404
|
def software_source_type(self) -> str:
|
@@ -381,6 +439,14 @@ class GetSoftwareSourceResult:
|
|
381
439
|
"""
|
382
440
|
return pulumi.get(self, "time_created")
|
383
441
|
|
442
|
+
@property
|
443
|
+
@pulumi.getter(name="timeMetadataUpdated")
|
444
|
+
def time_metadata_updated(self) -> str:
|
445
|
+
"""
|
446
|
+
The date and time the metadata for this software source was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
447
|
+
"""
|
448
|
+
return pulumi.get(self, "time_metadata_updated")
|
449
|
+
|
384
450
|
@property
|
385
451
|
@pulumi.getter
|
386
452
|
def url(self) -> str:
|
@@ -412,6 +478,7 @@ class AwaitableGetSoftwareSourceResult(GetSoftwareSourceResult):
|
|
412
478
|
if False:
|
413
479
|
yield self
|
414
480
|
return GetSoftwareSourceResult(
|
481
|
+
advanced_repo_options=self.advanced_repo_options,
|
415
482
|
arch_type=self.arch_type,
|
416
483
|
availability=self.availability,
|
417
484
|
availability_at_oci=self.availability_at_oci,
|
@@ -429,8 +496,11 @@ class AwaitableGetSoftwareSourceResult(GetSoftwareSourceResult):
|
|
429
496
|
is_auto_resolve_dependencies=self.is_auto_resolve_dependencies,
|
430
497
|
is_automatically_updated=self.is_automatically_updated,
|
431
498
|
is_created_from_package_list=self.is_created_from_package_list,
|
499
|
+
is_gpg_check_enabled=self.is_gpg_check_enabled,
|
432
500
|
is_latest_content_only=self.is_latest_content_only,
|
433
501
|
is_mandatory_for_autonomous_linux=self.is_mandatory_for_autonomous_linux,
|
502
|
+
is_mirror_sync_allowed=self.is_mirror_sync_allowed,
|
503
|
+
is_ssl_verify_enabled=self.is_ssl_verify_enabled,
|
434
504
|
origin_software_source_id=self.origin_software_source_id,
|
435
505
|
os_family=self.os_family,
|
436
506
|
package_count=self.package_count,
|
@@ -438,11 +508,13 @@ class AwaitableGetSoftwareSourceResult(GetSoftwareSourceResult):
|
|
438
508
|
repo_id=self.repo_id,
|
439
509
|
size=self.size,
|
440
510
|
software_source_id=self.software_source_id,
|
511
|
+
software_source_sub_type=self.software_source_sub_type,
|
441
512
|
software_source_type=self.software_source_type,
|
442
513
|
software_source_version=self.software_source_version,
|
443
514
|
state=self.state,
|
444
515
|
system_tags=self.system_tags,
|
445
516
|
time_created=self.time_created,
|
517
|
+
time_metadata_updated=self.time_metadata_updated,
|
446
518
|
url=self.url,
|
447
519
|
vendor_name=self.vendor_name,
|
448
520
|
vendor_software_sources=self.vendor_software_sources)
|
@@ -473,6 +545,7 @@ def get_software_source(software_source_id: Optional[str] = None,
|
|
473
545
|
__ret__ = pulumi.runtime.invoke('oci:OsManagementHub/getSoftwareSource:getSoftwareSource', __args__, opts=opts, typ=GetSoftwareSourceResult).value
|
474
546
|
|
475
547
|
return AwaitableGetSoftwareSourceResult(
|
548
|
+
advanced_repo_options=pulumi.get(__ret__, 'advanced_repo_options'),
|
476
549
|
arch_type=pulumi.get(__ret__, 'arch_type'),
|
477
550
|
availability=pulumi.get(__ret__, 'availability'),
|
478
551
|
availability_at_oci=pulumi.get(__ret__, 'availability_at_oci'),
|
@@ -490,8 +563,11 @@ def get_software_source(software_source_id: Optional[str] = None,
|
|
490
563
|
is_auto_resolve_dependencies=pulumi.get(__ret__, 'is_auto_resolve_dependencies'),
|
491
564
|
is_automatically_updated=pulumi.get(__ret__, 'is_automatically_updated'),
|
492
565
|
is_created_from_package_list=pulumi.get(__ret__, 'is_created_from_package_list'),
|
566
|
+
is_gpg_check_enabled=pulumi.get(__ret__, 'is_gpg_check_enabled'),
|
493
567
|
is_latest_content_only=pulumi.get(__ret__, 'is_latest_content_only'),
|
494
568
|
is_mandatory_for_autonomous_linux=pulumi.get(__ret__, 'is_mandatory_for_autonomous_linux'),
|
569
|
+
is_mirror_sync_allowed=pulumi.get(__ret__, 'is_mirror_sync_allowed'),
|
570
|
+
is_ssl_verify_enabled=pulumi.get(__ret__, 'is_ssl_verify_enabled'),
|
495
571
|
origin_software_source_id=pulumi.get(__ret__, 'origin_software_source_id'),
|
496
572
|
os_family=pulumi.get(__ret__, 'os_family'),
|
497
573
|
package_count=pulumi.get(__ret__, 'package_count'),
|
@@ -499,11 +575,13 @@ def get_software_source(software_source_id: Optional[str] = None,
|
|
499
575
|
repo_id=pulumi.get(__ret__, 'repo_id'),
|
500
576
|
size=pulumi.get(__ret__, 'size'),
|
501
577
|
software_source_id=pulumi.get(__ret__, 'software_source_id'),
|
578
|
+
software_source_sub_type=pulumi.get(__ret__, 'software_source_sub_type'),
|
502
579
|
software_source_type=pulumi.get(__ret__, 'software_source_type'),
|
503
580
|
software_source_version=pulumi.get(__ret__, 'software_source_version'),
|
504
581
|
state=pulumi.get(__ret__, 'state'),
|
505
582
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
506
583
|
time_created=pulumi.get(__ret__, 'time_created'),
|
584
|
+
time_metadata_updated=pulumi.get(__ret__, 'time_metadata_updated'),
|
507
585
|
url=pulumi.get(__ret__, 'url'),
|
508
586
|
vendor_name=pulumi.get(__ret__, 'vendor_name'),
|
509
587
|
vendor_software_sources=pulumi.get(__ret__, 'vendor_software_sources'))
|
@@ -531,6 +609,7 @@ def get_software_source_output(software_source_id: Optional[pulumi.Input[str]] =
|
|
531
609
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
532
610
|
__ret__ = pulumi.runtime.invoke_output('oci:OsManagementHub/getSoftwareSource:getSoftwareSource', __args__, opts=opts, typ=GetSoftwareSourceResult)
|
533
611
|
return __ret__.apply(lambda __response__: GetSoftwareSourceResult(
|
612
|
+
advanced_repo_options=pulumi.get(__response__, 'advanced_repo_options'),
|
534
613
|
arch_type=pulumi.get(__response__, 'arch_type'),
|
535
614
|
availability=pulumi.get(__response__, 'availability'),
|
536
615
|
availability_at_oci=pulumi.get(__response__, 'availability_at_oci'),
|
@@ -548,8 +627,11 @@ def get_software_source_output(software_source_id: Optional[pulumi.Input[str]] =
|
|
548
627
|
is_auto_resolve_dependencies=pulumi.get(__response__, 'is_auto_resolve_dependencies'),
|
549
628
|
is_automatically_updated=pulumi.get(__response__, 'is_automatically_updated'),
|
550
629
|
is_created_from_package_list=pulumi.get(__response__, 'is_created_from_package_list'),
|
630
|
+
is_gpg_check_enabled=pulumi.get(__response__, 'is_gpg_check_enabled'),
|
551
631
|
is_latest_content_only=pulumi.get(__response__, 'is_latest_content_only'),
|
552
632
|
is_mandatory_for_autonomous_linux=pulumi.get(__response__, 'is_mandatory_for_autonomous_linux'),
|
633
|
+
is_mirror_sync_allowed=pulumi.get(__response__, 'is_mirror_sync_allowed'),
|
634
|
+
is_ssl_verify_enabled=pulumi.get(__response__, 'is_ssl_verify_enabled'),
|
553
635
|
origin_software_source_id=pulumi.get(__response__, 'origin_software_source_id'),
|
554
636
|
os_family=pulumi.get(__response__, 'os_family'),
|
555
637
|
package_count=pulumi.get(__response__, 'package_count'),
|
@@ -557,11 +639,13 @@ def get_software_source_output(software_source_id: Optional[pulumi.Input[str]] =
|
|
557
639
|
repo_id=pulumi.get(__response__, 'repo_id'),
|
558
640
|
size=pulumi.get(__response__, 'size'),
|
559
641
|
software_source_id=pulumi.get(__response__, 'software_source_id'),
|
642
|
+
software_source_sub_type=pulumi.get(__response__, 'software_source_sub_type'),
|
560
643
|
software_source_type=pulumi.get(__response__, 'software_source_type'),
|
561
644
|
software_source_version=pulumi.get(__response__, 'software_source_version'),
|
562
645
|
state=pulumi.get(__response__, 'state'),
|
563
646
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
564
647
|
time_created=pulumi.get(__response__, 'time_created'),
|
648
|
+
time_metadata_updated=pulumi.get(__response__, 'time_metadata_updated'),
|
565
649
|
url=pulumi.get(__response__, 'url'),
|
566
650
|
vendor_name=pulumi.get(__response__, 'vendor_name'),
|
567
651
|
vendor_software_sources=pulumi.get(__response__, 'vendor_software_sources')))
|