pulumi-oci 2.27.0a1742279484__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.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
@@ -23,44 +23,66 @@ class SoftwareSourceArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
compartment_id: pulumi.Input[str],
|
25
25
|
software_source_type: pulumi.Input[str],
|
26
|
+
advanced_repo_options: Optional[pulumi.Input[str]] = None,
|
27
|
+
arch_type: Optional[pulumi.Input[str]] = None,
|
26
28
|
custom_software_source_filter: Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']] = None,
|
27
29
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
30
|
description: Optional[pulumi.Input[str]] = None,
|
29
31
|
display_name: Optional[pulumi.Input[str]] = None,
|
30
32
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
33
|
+
gpg_key_url: Optional[pulumi.Input[str]] = None,
|
31
34
|
is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
|
32
35
|
is_automatically_updated: Optional[pulumi.Input[bool]] = None,
|
33
36
|
is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
|
37
|
+
is_gpg_check_enabled: Optional[pulumi.Input[bool]] = None,
|
34
38
|
is_latest_content_only: Optional[pulumi.Input[bool]] = None,
|
39
|
+
is_mirror_sync_allowed: Optional[pulumi.Input[bool]] = None,
|
40
|
+
is_ssl_verify_enabled: Optional[pulumi.Input[bool]] = None,
|
35
41
|
origin_software_source_id: Optional[pulumi.Input[str]] = None,
|
42
|
+
os_family: Optional[pulumi.Input[str]] = None,
|
36
43
|
packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
44
|
+
software_source_sub_type: Optional[pulumi.Input[str]] = None,
|
37
45
|
software_source_version: Optional[pulumi.Input[str]] = None,
|
46
|
+
url: Optional[pulumi.Input[str]] = None,
|
38
47
|
vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]] = None):
|
39
48
|
"""
|
40
49
|
The set of arguments for constructing a SoftwareSource resource.
|
41
50
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source.
|
42
51
|
:param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
|
52
|
+
:param pulumi.Input[str] advanced_repo_options: (Updatable) Advanced repository options for the software source
|
53
|
+
:param pulumi.Input[str] arch_type: The architecture type supported by the third-party software source.
|
43
54
|
:param pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs'] custom_software_source_filter: (Updatable) Provides the information used to apply filters to a vendor software source to create or update a custom software source.
|
44
55
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
45
56
|
:param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
|
46
57
|
:param pulumi.Input[str] display_name: (Updatable) User-friendly name for the software source. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
47
58
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
59
|
+
:param pulumi.Input[str] gpg_key_url: (Updatable) URI of the GPG key for this software source.
|
48
60
|
:param pulumi.Input[bool] is_auto_resolve_dependencies: (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
|
49
61
|
:param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether the service should automatically update the custom software source to use the latest package versions available. The service reviews packages levels once a day.
|
50
62
|
:param pulumi.Input[bool] is_created_from_package_list: Indicates whether the service should create the software source from a list of packages provided by the user.
|
63
|
+
:param pulumi.Input[bool] is_gpg_check_enabled: (Updatable) Whether signature verification should be done for the software source.
|
51
64
|
:param pulumi.Input[bool] is_latest_content_only: (Updatable) Indicates whether the software source will include only the latest versions of content from vendor software sources, while accounting for other constraints set in the custom or versioned custom software source (such as a package list or filters).
|
52
65
|
* For a module filter that does not specify a stream, this will include all available streams, and within each stream only the latest version of packages.
|
53
66
|
* For a module filter that does specify a stream, this will include only the latest version of packages for the specified stream.
|
54
67
|
* For a package filter that does not specify a version, this will include only the latest available version of the package.
|
55
68
|
* For a package filter that does specify a version, this will include only the specified version of the package (the isLatestContentOnly attribute is ignored).
|
56
69
|
* For a package list, this will include only the specified version of packages and modules in the list (the isLatestContentOnly attribute is ignored).
|
70
|
+
:param pulumi.Input[bool] is_mirror_sync_allowed: (Updatable) Whether this software source can be synced to a management station
|
71
|
+
:param pulumi.Input[bool] is_ssl_verify_enabled: (Updatable) Whether SSL validation needs to be turned on
|
57
72
|
:param pulumi.Input[str] origin_software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vendor software source in the root compartment that is being replicated.
|
73
|
+
:param pulumi.Input[str] os_family: The OS family for the third-party software source.
|
58
74
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] packages: A property used for compatibility only. It doesn't provide a complete list of packages. See [AddPackagesToSoftwareSourceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/osmh/latest/datatypes/AddPackagesToSoftwareSourceDetails) for providing the list of packages used to create the software source when isCreatedFromPackageList is set to true.
|
75
|
+
:param pulumi.Input[str] software_source_sub_type: The creation type of a software source.
|
59
76
|
:param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
|
77
|
+
:param pulumi.Input[str] url: (Updatable) URL for the third-party software source.
|
60
78
|
:param pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]] vendor_software_sources: (Updatable) List of vendor software sources.
|
61
79
|
"""
|
62
80
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
63
81
|
pulumi.set(__self__, "software_source_type", software_source_type)
|
82
|
+
if advanced_repo_options is not None:
|
83
|
+
pulumi.set(__self__, "advanced_repo_options", advanced_repo_options)
|
84
|
+
if arch_type is not None:
|
85
|
+
pulumi.set(__self__, "arch_type", arch_type)
|
64
86
|
if custom_software_source_filter is not None:
|
65
87
|
pulumi.set(__self__, "custom_software_source_filter", custom_software_source_filter)
|
66
88
|
if defined_tags is not None:
|
@@ -71,20 +93,34 @@ class SoftwareSourceArgs:
|
|
71
93
|
pulumi.set(__self__, "display_name", display_name)
|
72
94
|
if freeform_tags is not None:
|
73
95
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
96
|
+
if gpg_key_url is not None:
|
97
|
+
pulumi.set(__self__, "gpg_key_url", gpg_key_url)
|
74
98
|
if is_auto_resolve_dependencies is not None:
|
75
99
|
pulumi.set(__self__, "is_auto_resolve_dependencies", is_auto_resolve_dependencies)
|
76
100
|
if is_automatically_updated is not None:
|
77
101
|
pulumi.set(__self__, "is_automatically_updated", is_automatically_updated)
|
78
102
|
if is_created_from_package_list is not None:
|
79
103
|
pulumi.set(__self__, "is_created_from_package_list", is_created_from_package_list)
|
104
|
+
if is_gpg_check_enabled is not None:
|
105
|
+
pulumi.set(__self__, "is_gpg_check_enabled", is_gpg_check_enabled)
|
80
106
|
if is_latest_content_only is not None:
|
81
107
|
pulumi.set(__self__, "is_latest_content_only", is_latest_content_only)
|
108
|
+
if is_mirror_sync_allowed is not None:
|
109
|
+
pulumi.set(__self__, "is_mirror_sync_allowed", is_mirror_sync_allowed)
|
110
|
+
if is_ssl_verify_enabled is not None:
|
111
|
+
pulumi.set(__self__, "is_ssl_verify_enabled", is_ssl_verify_enabled)
|
82
112
|
if origin_software_source_id is not None:
|
83
113
|
pulumi.set(__self__, "origin_software_source_id", origin_software_source_id)
|
114
|
+
if os_family is not None:
|
115
|
+
pulumi.set(__self__, "os_family", os_family)
|
84
116
|
if packages is not None:
|
85
117
|
pulumi.set(__self__, "packages", packages)
|
118
|
+
if software_source_sub_type is not None:
|
119
|
+
pulumi.set(__self__, "software_source_sub_type", software_source_sub_type)
|
86
120
|
if software_source_version is not None:
|
87
121
|
pulumi.set(__self__, "software_source_version", software_source_version)
|
122
|
+
if url is not None:
|
123
|
+
pulumi.set(__self__, "url", url)
|
88
124
|
if vendor_software_sources is not None:
|
89
125
|
pulumi.set(__self__, "vendor_software_sources", vendor_software_sources)
|
90
126
|
|
@@ -112,6 +148,30 @@ class SoftwareSourceArgs:
|
|
112
148
|
def software_source_type(self, value: pulumi.Input[str]):
|
113
149
|
pulumi.set(self, "software_source_type", value)
|
114
150
|
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="advancedRepoOptions")
|
153
|
+
def advanced_repo_options(self) -> Optional[pulumi.Input[str]]:
|
154
|
+
"""
|
155
|
+
(Updatable) Advanced repository options for the software source
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "advanced_repo_options")
|
158
|
+
|
159
|
+
@advanced_repo_options.setter
|
160
|
+
def advanced_repo_options(self, value: Optional[pulumi.Input[str]]):
|
161
|
+
pulumi.set(self, "advanced_repo_options", value)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="archType")
|
165
|
+
def arch_type(self) -> Optional[pulumi.Input[str]]:
|
166
|
+
"""
|
167
|
+
The architecture type supported by the third-party software source.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "arch_type")
|
170
|
+
|
171
|
+
@arch_type.setter
|
172
|
+
def arch_type(self, value: Optional[pulumi.Input[str]]):
|
173
|
+
pulumi.set(self, "arch_type", value)
|
174
|
+
|
115
175
|
@property
|
116
176
|
@pulumi.getter(name="customSoftwareSourceFilter")
|
117
177
|
def custom_software_source_filter(self) -> Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']]:
|
@@ -172,6 +232,18 @@ class SoftwareSourceArgs:
|
|
172
232
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
173
233
|
pulumi.set(self, "freeform_tags", value)
|
174
234
|
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="gpgKeyUrl")
|
237
|
+
def gpg_key_url(self) -> Optional[pulumi.Input[str]]:
|
238
|
+
"""
|
239
|
+
(Updatable) URI of the GPG key for this software source.
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "gpg_key_url")
|
242
|
+
|
243
|
+
@gpg_key_url.setter
|
244
|
+
def gpg_key_url(self, value: Optional[pulumi.Input[str]]):
|
245
|
+
pulumi.set(self, "gpg_key_url", value)
|
246
|
+
|
175
247
|
@property
|
176
248
|
@pulumi.getter(name="isAutoResolveDependencies")
|
177
249
|
def is_auto_resolve_dependencies(self) -> Optional[pulumi.Input[bool]]:
|
@@ -208,6 +280,18 @@ class SoftwareSourceArgs:
|
|
208
280
|
def is_created_from_package_list(self, value: Optional[pulumi.Input[bool]]):
|
209
281
|
pulumi.set(self, "is_created_from_package_list", value)
|
210
282
|
|
283
|
+
@property
|
284
|
+
@pulumi.getter(name="isGpgCheckEnabled")
|
285
|
+
def is_gpg_check_enabled(self) -> Optional[pulumi.Input[bool]]:
|
286
|
+
"""
|
287
|
+
(Updatable) Whether signature verification should be done for the software source.
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "is_gpg_check_enabled")
|
290
|
+
|
291
|
+
@is_gpg_check_enabled.setter
|
292
|
+
def is_gpg_check_enabled(self, value: Optional[pulumi.Input[bool]]):
|
293
|
+
pulumi.set(self, "is_gpg_check_enabled", value)
|
294
|
+
|
211
295
|
@property
|
212
296
|
@pulumi.getter(name="isLatestContentOnly")
|
213
297
|
def is_latest_content_only(self) -> Optional[pulumi.Input[bool]]:
|
@@ -225,6 +309,30 @@ class SoftwareSourceArgs:
|
|
225
309
|
def is_latest_content_only(self, value: Optional[pulumi.Input[bool]]):
|
226
310
|
pulumi.set(self, "is_latest_content_only", value)
|
227
311
|
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
314
|
+
def is_mirror_sync_allowed(self) -> Optional[pulumi.Input[bool]]:
|
315
|
+
"""
|
316
|
+
(Updatable) Whether this software source can be synced to a management station
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
319
|
+
|
320
|
+
@is_mirror_sync_allowed.setter
|
321
|
+
def is_mirror_sync_allowed(self, value: Optional[pulumi.Input[bool]]):
|
322
|
+
pulumi.set(self, "is_mirror_sync_allowed", value)
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="isSslVerifyEnabled")
|
326
|
+
def is_ssl_verify_enabled(self) -> Optional[pulumi.Input[bool]]:
|
327
|
+
"""
|
328
|
+
(Updatable) Whether SSL validation needs to be turned on
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "is_ssl_verify_enabled")
|
331
|
+
|
332
|
+
@is_ssl_verify_enabled.setter
|
333
|
+
def is_ssl_verify_enabled(self, value: Optional[pulumi.Input[bool]]):
|
334
|
+
pulumi.set(self, "is_ssl_verify_enabled", value)
|
335
|
+
|
228
336
|
@property
|
229
337
|
@pulumi.getter(name="originSoftwareSourceId")
|
230
338
|
def origin_software_source_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -237,6 +345,18 @@ class SoftwareSourceArgs:
|
|
237
345
|
def origin_software_source_id(self, value: Optional[pulumi.Input[str]]):
|
238
346
|
pulumi.set(self, "origin_software_source_id", value)
|
239
347
|
|
348
|
+
@property
|
349
|
+
@pulumi.getter(name="osFamily")
|
350
|
+
def os_family(self) -> Optional[pulumi.Input[str]]:
|
351
|
+
"""
|
352
|
+
The OS family for the third-party software source.
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "os_family")
|
355
|
+
|
356
|
+
@os_family.setter
|
357
|
+
def os_family(self, value: Optional[pulumi.Input[str]]):
|
358
|
+
pulumi.set(self, "os_family", value)
|
359
|
+
|
240
360
|
@property
|
241
361
|
@pulumi.getter
|
242
362
|
def packages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -249,6 +369,18 @@ class SoftwareSourceArgs:
|
|
249
369
|
def packages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
250
370
|
pulumi.set(self, "packages", value)
|
251
371
|
|
372
|
+
@property
|
373
|
+
@pulumi.getter(name="softwareSourceSubType")
|
374
|
+
def software_source_sub_type(self) -> Optional[pulumi.Input[str]]:
|
375
|
+
"""
|
376
|
+
The creation type of a software source.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "software_source_sub_type")
|
379
|
+
|
380
|
+
@software_source_sub_type.setter
|
381
|
+
def software_source_sub_type(self, value: Optional[pulumi.Input[str]]):
|
382
|
+
pulumi.set(self, "software_source_sub_type", value)
|
383
|
+
|
252
384
|
@property
|
253
385
|
@pulumi.getter(name="softwareSourceVersion")
|
254
386
|
def software_source_version(self) -> Optional[pulumi.Input[str]]:
|
@@ -261,6 +393,18 @@ class SoftwareSourceArgs:
|
|
261
393
|
def software_source_version(self, value: Optional[pulumi.Input[str]]):
|
262
394
|
pulumi.set(self, "software_source_version", value)
|
263
395
|
|
396
|
+
@property
|
397
|
+
@pulumi.getter
|
398
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
399
|
+
"""
|
400
|
+
(Updatable) URL for the third-party software source.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "url")
|
403
|
+
|
404
|
+
@url.setter
|
405
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
406
|
+
pulumi.set(self, "url", value)
|
407
|
+
|
264
408
|
@property
|
265
409
|
@pulumi.getter(name="vendorSoftwareSources")
|
266
410
|
def vendor_software_sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]]:
|
@@ -277,6 +421,7 @@ class SoftwareSourceArgs:
|
|
277
421
|
@pulumi.input_type
|
278
422
|
class _SoftwareSourceState:
|
279
423
|
def __init__(__self__, *,
|
424
|
+
advanced_repo_options: Optional[pulumi.Input[str]] = None,
|
280
425
|
arch_type: Optional[pulumi.Input[str]] = None,
|
281
426
|
availability: Optional[pulumi.Input[str]] = None,
|
282
427
|
availability_at_oci: Optional[pulumi.Input[str]] = None,
|
@@ -293,25 +438,31 @@ class _SoftwareSourceState:
|
|
293
438
|
is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
|
294
439
|
is_automatically_updated: Optional[pulumi.Input[bool]] = None,
|
295
440
|
is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
|
441
|
+
is_gpg_check_enabled: Optional[pulumi.Input[bool]] = None,
|
296
442
|
is_latest_content_only: Optional[pulumi.Input[bool]] = None,
|
297
443
|
is_mandatory_for_autonomous_linux: Optional[pulumi.Input[bool]] = None,
|
444
|
+
is_mirror_sync_allowed: Optional[pulumi.Input[bool]] = None,
|
445
|
+
is_ssl_verify_enabled: Optional[pulumi.Input[bool]] = None,
|
298
446
|
origin_software_source_id: Optional[pulumi.Input[str]] = None,
|
299
447
|
os_family: Optional[pulumi.Input[str]] = None,
|
300
448
|
package_count: Optional[pulumi.Input[str]] = None,
|
301
449
|
packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
302
450
|
repo_id: Optional[pulumi.Input[str]] = None,
|
303
451
|
size: Optional[pulumi.Input[float]] = None,
|
452
|
+
software_source_sub_type: Optional[pulumi.Input[str]] = None,
|
304
453
|
software_source_type: Optional[pulumi.Input[str]] = None,
|
305
454
|
software_source_version: Optional[pulumi.Input[str]] = None,
|
306
455
|
state: Optional[pulumi.Input[str]] = None,
|
307
456
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
308
457
|
time_created: Optional[pulumi.Input[str]] = None,
|
458
|
+
time_metadata_updated: Optional[pulumi.Input[str]] = None,
|
309
459
|
url: Optional[pulumi.Input[str]] = None,
|
310
460
|
vendor_name: Optional[pulumi.Input[str]] = None,
|
311
461
|
vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]] = None):
|
312
462
|
"""
|
313
463
|
Input properties used for looking up and filtering SoftwareSource resources.
|
314
|
-
:param pulumi.Input[str]
|
464
|
+
:param pulumi.Input[str] advanced_repo_options: (Updatable) Advanced repository options for the software source
|
465
|
+
:param pulumi.Input[str] arch_type: The architecture type supported by the third-party software source.
|
315
466
|
:param pulumi.Input[str] availability: Availability of the software source (for non-OCI environments).
|
316
467
|
:param pulumi.Input[str] availability_at_oci: Availability of the software source (for Oracle Cloud Infrastructure environments).
|
317
468
|
:param pulumi.Input[str] checksum_type: The yum repository checksum type used by this software source.
|
@@ -323,10 +474,11 @@ class _SoftwareSourceState:
|
|
323
474
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
324
475
|
:param pulumi.Input[str] gpg_key_fingerprint: Fingerprint of the GPG key for this software source.
|
325
476
|
:param pulumi.Input[str] gpg_key_id: ID of the GPG key for this software source.
|
326
|
-
:param pulumi.Input[str] gpg_key_url:
|
477
|
+
:param pulumi.Input[str] gpg_key_url: (Updatable) URI of the GPG key for this software source.
|
327
478
|
:param pulumi.Input[bool] is_auto_resolve_dependencies: (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
|
328
479
|
:param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether the service should automatically update the custom software source to use the latest package versions available. The service reviews packages levels once a day.
|
329
480
|
:param pulumi.Input[bool] is_created_from_package_list: Indicates whether the service should create the software source from a list of packages provided by the user.
|
481
|
+
:param pulumi.Input[bool] is_gpg_check_enabled: (Updatable) Whether signature verification should be done for the software source.
|
330
482
|
:param pulumi.Input[bool] is_latest_content_only: (Updatable) Indicates whether the software source will include only the latest versions of content from vendor software sources, while accounting for other constraints set in the custom or versioned custom software source (such as a package list or filters).
|
331
483
|
* For a module filter that does not specify a stream, this will include all available streams, and within each stream only the latest version of packages.
|
332
484
|
* For a module filter that does specify a stream, this will include only the latest version of packages for the specified stream.
|
@@ -334,21 +486,27 @@ class _SoftwareSourceState:
|
|
334
486
|
* For a package filter that does specify a version, this will include only the specified version of the package (the isLatestContentOnly attribute is ignored).
|
335
487
|
* For a package list, this will include only the specified version of packages and modules in the list (the isLatestContentOnly attribute is ignored).
|
336
488
|
:param pulumi.Input[bool] is_mandatory_for_autonomous_linux: Indicates whether the software source is required for the Autonomous Linux service.
|
489
|
+
:param pulumi.Input[bool] is_mirror_sync_allowed: (Updatable) Whether this software source can be synced to a management station
|
490
|
+
:param pulumi.Input[bool] is_ssl_verify_enabled: (Updatable) Whether SSL validation needs to be turned on
|
337
491
|
:param pulumi.Input[str] origin_software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vendor software source in the root compartment that is being replicated.
|
338
|
-
:param pulumi.Input[str] os_family: The OS family the software source
|
492
|
+
:param pulumi.Input[str] os_family: The OS family for the third-party software source.
|
339
493
|
:param pulumi.Input[str] package_count: Number of packages the software source contains.
|
340
494
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] packages: A property used for compatibility only. It doesn't provide a complete list of packages. See [AddPackagesToSoftwareSourceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/osmh/latest/datatypes/AddPackagesToSoftwareSourceDetails) for providing the list of packages used to create the software source when isCreatedFromPackageList is set to true.
|
341
495
|
:param pulumi.Input[str] repo_id: The repository ID for the software source.
|
342
|
-
:param pulumi.Input[float] size: The size of the software source in
|
496
|
+
:param pulumi.Input[float] size: The size of the software source in bytes (B).
|
497
|
+
:param pulumi.Input[str] software_source_sub_type: The creation type of a software source.
|
343
498
|
:param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
|
344
499
|
:param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
|
345
500
|
:param pulumi.Input[str] state: The current state of the software source.
|
346
501
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
347
502
|
:param pulumi.Input[str] time_created: The date and time the software source was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
348
|
-
:param pulumi.Input[str]
|
503
|
+
:param pulumi.Input[str] time_metadata_updated: The date and time the metadata for this software source was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
504
|
+
:param pulumi.Input[str] url: (Updatable) URL for the third-party software source.
|
349
505
|
:param pulumi.Input[str] vendor_name: Name of the vendor providing the software source.
|
350
506
|
:param pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]] vendor_software_sources: (Updatable) List of vendor software sources.
|
351
507
|
"""
|
508
|
+
if advanced_repo_options is not None:
|
509
|
+
pulumi.set(__self__, "advanced_repo_options", advanced_repo_options)
|
352
510
|
if arch_type is not None:
|
353
511
|
pulumi.set(__self__, "arch_type", arch_type)
|
354
512
|
if availability is not None:
|
@@ -381,10 +539,16 @@ class _SoftwareSourceState:
|
|
381
539
|
pulumi.set(__self__, "is_automatically_updated", is_automatically_updated)
|
382
540
|
if is_created_from_package_list is not None:
|
383
541
|
pulumi.set(__self__, "is_created_from_package_list", is_created_from_package_list)
|
542
|
+
if is_gpg_check_enabled is not None:
|
543
|
+
pulumi.set(__self__, "is_gpg_check_enabled", is_gpg_check_enabled)
|
384
544
|
if is_latest_content_only is not None:
|
385
545
|
pulumi.set(__self__, "is_latest_content_only", is_latest_content_only)
|
386
546
|
if is_mandatory_for_autonomous_linux is not None:
|
387
547
|
pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
|
548
|
+
if is_mirror_sync_allowed is not None:
|
549
|
+
pulumi.set(__self__, "is_mirror_sync_allowed", is_mirror_sync_allowed)
|
550
|
+
if is_ssl_verify_enabled is not None:
|
551
|
+
pulumi.set(__self__, "is_ssl_verify_enabled", is_ssl_verify_enabled)
|
388
552
|
if origin_software_source_id is not None:
|
389
553
|
pulumi.set(__self__, "origin_software_source_id", origin_software_source_id)
|
390
554
|
if os_family is not None:
|
@@ -397,6 +561,8 @@ class _SoftwareSourceState:
|
|
397
561
|
pulumi.set(__self__, "repo_id", repo_id)
|
398
562
|
if size is not None:
|
399
563
|
pulumi.set(__self__, "size", size)
|
564
|
+
if software_source_sub_type is not None:
|
565
|
+
pulumi.set(__self__, "software_source_sub_type", software_source_sub_type)
|
400
566
|
if software_source_type is not None:
|
401
567
|
pulumi.set(__self__, "software_source_type", software_source_type)
|
402
568
|
if software_source_version is not None:
|
@@ -407,6 +573,8 @@ class _SoftwareSourceState:
|
|
407
573
|
pulumi.set(__self__, "system_tags", system_tags)
|
408
574
|
if time_created is not None:
|
409
575
|
pulumi.set(__self__, "time_created", time_created)
|
576
|
+
if time_metadata_updated is not None:
|
577
|
+
pulumi.set(__self__, "time_metadata_updated", time_metadata_updated)
|
410
578
|
if url is not None:
|
411
579
|
pulumi.set(__self__, "url", url)
|
412
580
|
if vendor_name is not None:
|
@@ -414,11 +582,23 @@ class _SoftwareSourceState:
|
|
414
582
|
if vendor_software_sources is not None:
|
415
583
|
pulumi.set(__self__, "vendor_software_sources", vendor_software_sources)
|
416
584
|
|
585
|
+
@property
|
586
|
+
@pulumi.getter(name="advancedRepoOptions")
|
587
|
+
def advanced_repo_options(self) -> Optional[pulumi.Input[str]]:
|
588
|
+
"""
|
589
|
+
(Updatable) Advanced repository options for the software source
|
590
|
+
"""
|
591
|
+
return pulumi.get(self, "advanced_repo_options")
|
592
|
+
|
593
|
+
@advanced_repo_options.setter
|
594
|
+
def advanced_repo_options(self, value: Optional[pulumi.Input[str]]):
|
595
|
+
pulumi.set(self, "advanced_repo_options", value)
|
596
|
+
|
417
597
|
@property
|
418
598
|
@pulumi.getter(name="archType")
|
419
599
|
def arch_type(self) -> Optional[pulumi.Input[str]]:
|
420
600
|
"""
|
421
|
-
The architecture type supported by the software source.
|
601
|
+
The architecture type supported by the third-party software source.
|
422
602
|
"""
|
423
603
|
return pulumi.get(self, "arch_type")
|
424
604
|
|
@@ -562,7 +742,7 @@ class _SoftwareSourceState:
|
|
562
742
|
@pulumi.getter(name="gpgKeyUrl")
|
563
743
|
def gpg_key_url(self) -> Optional[pulumi.Input[str]]:
|
564
744
|
"""
|
565
|
-
|
745
|
+
(Updatable) URI of the GPG key for this software source.
|
566
746
|
"""
|
567
747
|
return pulumi.get(self, "gpg_key_url")
|
568
748
|
|
@@ -606,6 +786,18 @@ class _SoftwareSourceState:
|
|
606
786
|
def is_created_from_package_list(self, value: Optional[pulumi.Input[bool]]):
|
607
787
|
pulumi.set(self, "is_created_from_package_list", value)
|
608
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="isGpgCheckEnabled")
|
791
|
+
def is_gpg_check_enabled(self) -> Optional[pulumi.Input[bool]]:
|
792
|
+
"""
|
793
|
+
(Updatable) Whether signature verification should be done for the software source.
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "is_gpg_check_enabled")
|
796
|
+
|
797
|
+
@is_gpg_check_enabled.setter
|
798
|
+
def is_gpg_check_enabled(self, value: Optional[pulumi.Input[bool]]):
|
799
|
+
pulumi.set(self, "is_gpg_check_enabled", value)
|
800
|
+
|
609
801
|
@property
|
610
802
|
@pulumi.getter(name="isLatestContentOnly")
|
611
803
|
def is_latest_content_only(self) -> Optional[pulumi.Input[bool]]:
|
@@ -635,6 +827,30 @@ class _SoftwareSourceState:
|
|
635
827
|
def is_mandatory_for_autonomous_linux(self, value: Optional[pulumi.Input[bool]]):
|
636
828
|
pulumi.set(self, "is_mandatory_for_autonomous_linux", value)
|
637
829
|
|
830
|
+
@property
|
831
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
832
|
+
def is_mirror_sync_allowed(self) -> Optional[pulumi.Input[bool]]:
|
833
|
+
"""
|
834
|
+
(Updatable) Whether this software source can be synced to a management station
|
835
|
+
"""
|
836
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
837
|
+
|
838
|
+
@is_mirror_sync_allowed.setter
|
839
|
+
def is_mirror_sync_allowed(self, value: Optional[pulumi.Input[bool]]):
|
840
|
+
pulumi.set(self, "is_mirror_sync_allowed", value)
|
841
|
+
|
842
|
+
@property
|
843
|
+
@pulumi.getter(name="isSslVerifyEnabled")
|
844
|
+
def is_ssl_verify_enabled(self) -> Optional[pulumi.Input[bool]]:
|
845
|
+
"""
|
846
|
+
(Updatable) Whether SSL validation needs to be turned on
|
847
|
+
"""
|
848
|
+
return pulumi.get(self, "is_ssl_verify_enabled")
|
849
|
+
|
850
|
+
@is_ssl_verify_enabled.setter
|
851
|
+
def is_ssl_verify_enabled(self, value: Optional[pulumi.Input[bool]]):
|
852
|
+
pulumi.set(self, "is_ssl_verify_enabled", value)
|
853
|
+
|
638
854
|
@property
|
639
855
|
@pulumi.getter(name="originSoftwareSourceId")
|
640
856
|
def origin_software_source_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -651,7 +867,7 @@ class _SoftwareSourceState:
|
|
651
867
|
@pulumi.getter(name="osFamily")
|
652
868
|
def os_family(self) -> Optional[pulumi.Input[str]]:
|
653
869
|
"""
|
654
|
-
The OS family the software source
|
870
|
+
The OS family for the third-party software source.
|
655
871
|
"""
|
656
872
|
return pulumi.get(self, "os_family")
|
657
873
|
|
@@ -699,7 +915,7 @@ class _SoftwareSourceState:
|
|
699
915
|
@pulumi.getter
|
700
916
|
def size(self) -> Optional[pulumi.Input[float]]:
|
701
917
|
"""
|
702
|
-
The size of the software source in
|
918
|
+
The size of the software source in bytes (B).
|
703
919
|
"""
|
704
920
|
return pulumi.get(self, "size")
|
705
921
|
|
@@ -707,6 +923,18 @@ class _SoftwareSourceState:
|
|
707
923
|
def size(self, value: Optional[pulumi.Input[float]]):
|
708
924
|
pulumi.set(self, "size", value)
|
709
925
|
|
926
|
+
@property
|
927
|
+
@pulumi.getter(name="softwareSourceSubType")
|
928
|
+
def software_source_sub_type(self) -> Optional[pulumi.Input[str]]:
|
929
|
+
"""
|
930
|
+
The creation type of a software source.
|
931
|
+
"""
|
932
|
+
return pulumi.get(self, "software_source_sub_type")
|
933
|
+
|
934
|
+
@software_source_sub_type.setter
|
935
|
+
def software_source_sub_type(self, value: Optional[pulumi.Input[str]]):
|
936
|
+
pulumi.set(self, "software_source_sub_type", value)
|
937
|
+
|
710
938
|
@property
|
711
939
|
@pulumi.getter(name="softwareSourceType")
|
712
940
|
def software_source_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -767,11 +995,23 @@ class _SoftwareSourceState:
|
|
767
995
|
def time_created(self, value: Optional[pulumi.Input[str]]):
|
768
996
|
pulumi.set(self, "time_created", value)
|
769
997
|
|
998
|
+
@property
|
999
|
+
@pulumi.getter(name="timeMetadataUpdated")
|
1000
|
+
def time_metadata_updated(self) -> Optional[pulumi.Input[str]]:
|
1001
|
+
"""
|
1002
|
+
The date and time the metadata for this software source was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1003
|
+
"""
|
1004
|
+
return pulumi.get(self, "time_metadata_updated")
|
1005
|
+
|
1006
|
+
@time_metadata_updated.setter
|
1007
|
+
def time_metadata_updated(self, value: Optional[pulumi.Input[str]]):
|
1008
|
+
pulumi.set(self, "time_metadata_updated", value)
|
1009
|
+
|
770
1010
|
@property
|
771
1011
|
@pulumi.getter
|
772
1012
|
def url(self) -> Optional[pulumi.Input[str]]:
|
773
1013
|
"""
|
774
|
-
URL for the
|
1014
|
+
(Updatable) URL for the third-party software source.
|
775
1015
|
"""
|
776
1016
|
return pulumi.get(self, "url")
|
777
1017
|
|
@@ -809,26 +1049,35 @@ class SoftwareSource(pulumi.CustomResource):
|
|
809
1049
|
def __init__(__self__,
|
810
1050
|
resource_name: str,
|
811
1051
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1052
|
+
advanced_repo_options: Optional[pulumi.Input[str]] = None,
|
1053
|
+
arch_type: Optional[pulumi.Input[str]] = None,
|
812
1054
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
813
1055
|
custom_software_source_filter: Optional[pulumi.Input[Union['SoftwareSourceCustomSoftwareSourceFilterArgs', 'SoftwareSourceCustomSoftwareSourceFilterArgsDict']]] = None,
|
814
1056
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
815
1057
|
description: Optional[pulumi.Input[str]] = None,
|
816
1058
|
display_name: Optional[pulumi.Input[str]] = None,
|
817
1059
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1060
|
+
gpg_key_url: Optional[pulumi.Input[str]] = None,
|
818
1061
|
is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
|
819
1062
|
is_automatically_updated: Optional[pulumi.Input[bool]] = None,
|
820
1063
|
is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
|
1064
|
+
is_gpg_check_enabled: Optional[pulumi.Input[bool]] = None,
|
821
1065
|
is_latest_content_only: Optional[pulumi.Input[bool]] = None,
|
1066
|
+
is_mirror_sync_allowed: Optional[pulumi.Input[bool]] = None,
|
1067
|
+
is_ssl_verify_enabled: Optional[pulumi.Input[bool]] = None,
|
822
1068
|
origin_software_source_id: Optional[pulumi.Input[str]] = None,
|
1069
|
+
os_family: Optional[pulumi.Input[str]] = None,
|
823
1070
|
packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1071
|
+
software_source_sub_type: Optional[pulumi.Input[str]] = None,
|
824
1072
|
software_source_type: Optional[pulumi.Input[str]] = None,
|
825
1073
|
software_source_version: Optional[pulumi.Input[str]] = None,
|
1074
|
+
url: Optional[pulumi.Input[str]] = None,
|
826
1075
|
vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SoftwareSourceVendorSoftwareSourceArgs', 'SoftwareSourceVendorSoftwareSourceArgsDict']]]]] = None,
|
827
1076
|
__props__=None):
|
828
1077
|
"""
|
829
1078
|
This resource provides the Software Source resource in Oracle Cloud Infrastructure Os Management Hub service.
|
830
1079
|
|
831
|
-
Creates a new
|
1080
|
+
Creates a new software source.
|
832
1081
|
|
833
1082
|
## Import
|
834
1083
|
|
@@ -840,25 +1089,34 @@ class SoftwareSource(pulumi.CustomResource):
|
|
840
1089
|
|
841
1090
|
:param str resource_name: The name of the resource.
|
842
1091
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1092
|
+
:param pulumi.Input[str] advanced_repo_options: (Updatable) Advanced repository options for the software source
|
1093
|
+
:param pulumi.Input[str] arch_type: The architecture type supported by the third-party software source.
|
843
1094
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source.
|
844
1095
|
:param pulumi.Input[Union['SoftwareSourceCustomSoftwareSourceFilterArgs', 'SoftwareSourceCustomSoftwareSourceFilterArgsDict']] custom_software_source_filter: (Updatable) Provides the information used to apply filters to a vendor software source to create or update a custom software source.
|
845
1096
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
846
1097
|
:param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
|
847
1098
|
:param pulumi.Input[str] display_name: (Updatable) User-friendly name for the software source. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
848
1099
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
1100
|
+
:param pulumi.Input[str] gpg_key_url: (Updatable) URI of the GPG key for this software source.
|
849
1101
|
:param pulumi.Input[bool] is_auto_resolve_dependencies: (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
|
850
1102
|
:param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether the service should automatically update the custom software source to use the latest package versions available. The service reviews packages levels once a day.
|
851
1103
|
:param pulumi.Input[bool] is_created_from_package_list: Indicates whether the service should create the software source from a list of packages provided by the user.
|
1104
|
+
:param pulumi.Input[bool] is_gpg_check_enabled: (Updatable) Whether signature verification should be done for the software source.
|
852
1105
|
:param pulumi.Input[bool] is_latest_content_only: (Updatable) Indicates whether the software source will include only the latest versions of content from vendor software sources, while accounting for other constraints set in the custom or versioned custom software source (such as a package list or filters).
|
853
1106
|
* For a module filter that does not specify a stream, this will include all available streams, and within each stream only the latest version of packages.
|
854
1107
|
* For a module filter that does specify a stream, this will include only the latest version of packages for the specified stream.
|
855
1108
|
* For a package filter that does not specify a version, this will include only the latest available version of the package.
|
856
1109
|
* For a package filter that does specify a version, this will include only the specified version of the package (the isLatestContentOnly attribute is ignored).
|
857
1110
|
* For a package list, this will include only the specified version of packages and modules in the list (the isLatestContentOnly attribute is ignored).
|
1111
|
+
:param pulumi.Input[bool] is_mirror_sync_allowed: (Updatable) Whether this software source can be synced to a management station
|
1112
|
+
:param pulumi.Input[bool] is_ssl_verify_enabled: (Updatable) Whether SSL validation needs to be turned on
|
858
1113
|
:param pulumi.Input[str] origin_software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vendor software source in the root compartment that is being replicated.
|
1114
|
+
:param pulumi.Input[str] os_family: The OS family for the third-party software source.
|
859
1115
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] packages: A property used for compatibility only. It doesn't provide a complete list of packages. See [AddPackagesToSoftwareSourceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/osmh/latest/datatypes/AddPackagesToSoftwareSourceDetails) for providing the list of packages used to create the software source when isCreatedFromPackageList is set to true.
|
1116
|
+
:param pulumi.Input[str] software_source_sub_type: The creation type of a software source.
|
860
1117
|
:param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
|
861
1118
|
:param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
|
1119
|
+
:param pulumi.Input[str] url: (Updatable) URL for the third-party software source.
|
862
1120
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SoftwareSourceVendorSoftwareSourceArgs', 'SoftwareSourceVendorSoftwareSourceArgsDict']]]] vendor_software_sources: (Updatable) List of vendor software sources.
|
863
1121
|
"""
|
864
1122
|
...
|
@@ -870,7 +1128,7 @@ class SoftwareSource(pulumi.CustomResource):
|
|
870
1128
|
"""
|
871
1129
|
This resource provides the Software Source resource in Oracle Cloud Infrastructure Os Management Hub service.
|
872
1130
|
|
873
|
-
Creates a new
|
1131
|
+
Creates a new software source.
|
874
1132
|
|
875
1133
|
## Import
|
876
1134
|
|
@@ -895,20 +1153,29 @@ class SoftwareSource(pulumi.CustomResource):
|
|
895
1153
|
def _internal_init(__self__,
|
896
1154
|
resource_name: str,
|
897
1155
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1156
|
+
advanced_repo_options: Optional[pulumi.Input[str]] = None,
|
1157
|
+
arch_type: Optional[pulumi.Input[str]] = None,
|
898
1158
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
899
1159
|
custom_software_source_filter: Optional[pulumi.Input[Union['SoftwareSourceCustomSoftwareSourceFilterArgs', 'SoftwareSourceCustomSoftwareSourceFilterArgsDict']]] = None,
|
900
1160
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
901
1161
|
description: Optional[pulumi.Input[str]] = None,
|
902
1162
|
display_name: Optional[pulumi.Input[str]] = None,
|
903
1163
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1164
|
+
gpg_key_url: Optional[pulumi.Input[str]] = None,
|
904
1165
|
is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
|
905
1166
|
is_automatically_updated: Optional[pulumi.Input[bool]] = None,
|
906
1167
|
is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
|
1168
|
+
is_gpg_check_enabled: Optional[pulumi.Input[bool]] = None,
|
907
1169
|
is_latest_content_only: Optional[pulumi.Input[bool]] = None,
|
1170
|
+
is_mirror_sync_allowed: Optional[pulumi.Input[bool]] = None,
|
1171
|
+
is_ssl_verify_enabled: Optional[pulumi.Input[bool]] = None,
|
908
1172
|
origin_software_source_id: Optional[pulumi.Input[str]] = None,
|
1173
|
+
os_family: Optional[pulumi.Input[str]] = None,
|
909
1174
|
packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1175
|
+
software_source_sub_type: Optional[pulumi.Input[str]] = None,
|
910
1176
|
software_source_type: Optional[pulumi.Input[str]] = None,
|
911
1177
|
software_source_version: Optional[pulumi.Input[str]] = None,
|
1178
|
+
url: Optional[pulumi.Input[str]] = None,
|
912
1179
|
vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SoftwareSourceVendorSoftwareSourceArgs', 'SoftwareSourceVendorSoftwareSourceArgsDict']]]]] = None,
|
913
1180
|
__props__=None):
|
914
1181
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -919,6 +1186,8 @@ class SoftwareSource(pulumi.CustomResource):
|
|
919
1186
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
920
1187
|
__props__ = SoftwareSourceArgs.__new__(SoftwareSourceArgs)
|
921
1188
|
|
1189
|
+
__props__.__dict__["advanced_repo_options"] = advanced_repo_options
|
1190
|
+
__props__.__dict__["arch_type"] = arch_type
|
922
1191
|
if compartment_id is None and not opts.urn:
|
923
1192
|
raise TypeError("Missing required property 'compartment_id'")
|
924
1193
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -927,33 +1196,37 @@ class SoftwareSource(pulumi.CustomResource):
|
|
927
1196
|
__props__.__dict__["description"] = description
|
928
1197
|
__props__.__dict__["display_name"] = display_name
|
929
1198
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1199
|
+
__props__.__dict__["gpg_key_url"] = gpg_key_url
|
930
1200
|
__props__.__dict__["is_auto_resolve_dependencies"] = is_auto_resolve_dependencies
|
931
1201
|
__props__.__dict__["is_automatically_updated"] = is_automatically_updated
|
932
1202
|
__props__.__dict__["is_created_from_package_list"] = is_created_from_package_list
|
1203
|
+
__props__.__dict__["is_gpg_check_enabled"] = is_gpg_check_enabled
|
933
1204
|
__props__.__dict__["is_latest_content_only"] = is_latest_content_only
|
1205
|
+
__props__.__dict__["is_mirror_sync_allowed"] = is_mirror_sync_allowed
|
1206
|
+
__props__.__dict__["is_ssl_verify_enabled"] = is_ssl_verify_enabled
|
934
1207
|
__props__.__dict__["origin_software_source_id"] = origin_software_source_id
|
1208
|
+
__props__.__dict__["os_family"] = os_family
|
935
1209
|
__props__.__dict__["packages"] = packages
|
1210
|
+
__props__.__dict__["software_source_sub_type"] = software_source_sub_type
|
936
1211
|
if software_source_type is None and not opts.urn:
|
937
1212
|
raise TypeError("Missing required property 'software_source_type'")
|
938
1213
|
__props__.__dict__["software_source_type"] = software_source_type
|
939
1214
|
__props__.__dict__["software_source_version"] = software_source_version
|
1215
|
+
__props__.__dict__["url"] = url
|
940
1216
|
__props__.__dict__["vendor_software_sources"] = vendor_software_sources
|
941
|
-
__props__.__dict__["arch_type"] = None
|
942
1217
|
__props__.__dict__["availability"] = None
|
943
1218
|
__props__.__dict__["availability_at_oci"] = None
|
944
1219
|
__props__.__dict__["checksum_type"] = None
|
945
1220
|
__props__.__dict__["gpg_key_fingerprint"] = None
|
946
1221
|
__props__.__dict__["gpg_key_id"] = None
|
947
|
-
__props__.__dict__["gpg_key_url"] = None
|
948
1222
|
__props__.__dict__["is_mandatory_for_autonomous_linux"] = None
|
949
|
-
__props__.__dict__["os_family"] = None
|
950
1223
|
__props__.__dict__["package_count"] = None
|
951
1224
|
__props__.__dict__["repo_id"] = None
|
952
1225
|
__props__.__dict__["size"] = None
|
953
1226
|
__props__.__dict__["state"] = None
|
954
1227
|
__props__.__dict__["system_tags"] = None
|
955
1228
|
__props__.__dict__["time_created"] = None
|
956
|
-
__props__.__dict__["
|
1229
|
+
__props__.__dict__["time_metadata_updated"] = None
|
957
1230
|
__props__.__dict__["vendor_name"] = None
|
958
1231
|
super(SoftwareSource, __self__).__init__(
|
959
1232
|
'oci:OsManagementHub/softwareSource:SoftwareSource',
|
@@ -965,6 +1238,7 @@ class SoftwareSource(pulumi.CustomResource):
|
|
965
1238
|
def get(resource_name: str,
|
966
1239
|
id: pulumi.Input[str],
|
967
1240
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1241
|
+
advanced_repo_options: Optional[pulumi.Input[str]] = None,
|
968
1242
|
arch_type: Optional[pulumi.Input[str]] = None,
|
969
1243
|
availability: Optional[pulumi.Input[str]] = None,
|
970
1244
|
availability_at_oci: Optional[pulumi.Input[str]] = None,
|
@@ -981,19 +1255,24 @@ class SoftwareSource(pulumi.CustomResource):
|
|
981
1255
|
is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
|
982
1256
|
is_automatically_updated: Optional[pulumi.Input[bool]] = None,
|
983
1257
|
is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
|
1258
|
+
is_gpg_check_enabled: Optional[pulumi.Input[bool]] = None,
|
984
1259
|
is_latest_content_only: Optional[pulumi.Input[bool]] = None,
|
985
1260
|
is_mandatory_for_autonomous_linux: Optional[pulumi.Input[bool]] = None,
|
1261
|
+
is_mirror_sync_allowed: Optional[pulumi.Input[bool]] = None,
|
1262
|
+
is_ssl_verify_enabled: Optional[pulumi.Input[bool]] = None,
|
986
1263
|
origin_software_source_id: Optional[pulumi.Input[str]] = None,
|
987
1264
|
os_family: Optional[pulumi.Input[str]] = None,
|
988
1265
|
package_count: Optional[pulumi.Input[str]] = None,
|
989
1266
|
packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
990
1267
|
repo_id: Optional[pulumi.Input[str]] = None,
|
991
1268
|
size: Optional[pulumi.Input[float]] = None,
|
1269
|
+
software_source_sub_type: Optional[pulumi.Input[str]] = None,
|
992
1270
|
software_source_type: Optional[pulumi.Input[str]] = None,
|
993
1271
|
software_source_version: Optional[pulumi.Input[str]] = None,
|
994
1272
|
state: Optional[pulumi.Input[str]] = None,
|
995
1273
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
996
1274
|
time_created: Optional[pulumi.Input[str]] = None,
|
1275
|
+
time_metadata_updated: Optional[pulumi.Input[str]] = None,
|
997
1276
|
url: Optional[pulumi.Input[str]] = None,
|
998
1277
|
vendor_name: Optional[pulumi.Input[str]] = None,
|
999
1278
|
vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SoftwareSourceVendorSoftwareSourceArgs', 'SoftwareSourceVendorSoftwareSourceArgsDict']]]]] = None) -> 'SoftwareSource':
|
@@ -1004,7 +1283,8 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1004
1283
|
:param str resource_name: The unique name of the resulting resource.
|
1005
1284
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1006
1285
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1007
|
-
:param pulumi.Input[str]
|
1286
|
+
:param pulumi.Input[str] advanced_repo_options: (Updatable) Advanced repository options for the software source
|
1287
|
+
:param pulumi.Input[str] arch_type: The architecture type supported by the third-party software source.
|
1008
1288
|
:param pulumi.Input[str] availability: Availability of the software source (for non-OCI environments).
|
1009
1289
|
:param pulumi.Input[str] availability_at_oci: Availability of the software source (for Oracle Cloud Infrastructure environments).
|
1010
1290
|
:param pulumi.Input[str] checksum_type: The yum repository checksum type used by this software source.
|
@@ -1016,10 +1296,11 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1016
1296
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
1017
1297
|
:param pulumi.Input[str] gpg_key_fingerprint: Fingerprint of the GPG key for this software source.
|
1018
1298
|
:param pulumi.Input[str] gpg_key_id: ID of the GPG key for this software source.
|
1019
|
-
:param pulumi.Input[str] gpg_key_url:
|
1299
|
+
:param pulumi.Input[str] gpg_key_url: (Updatable) URI of the GPG key for this software source.
|
1020
1300
|
:param pulumi.Input[bool] is_auto_resolve_dependencies: (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
|
1021
1301
|
:param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether the service should automatically update the custom software source to use the latest package versions available. The service reviews packages levels once a day.
|
1022
1302
|
:param pulumi.Input[bool] is_created_from_package_list: Indicates whether the service should create the software source from a list of packages provided by the user.
|
1303
|
+
:param pulumi.Input[bool] is_gpg_check_enabled: (Updatable) Whether signature verification should be done for the software source.
|
1023
1304
|
:param pulumi.Input[bool] is_latest_content_only: (Updatable) Indicates whether the software source will include only the latest versions of content from vendor software sources, while accounting for other constraints set in the custom or versioned custom software source (such as a package list or filters).
|
1024
1305
|
* For a module filter that does not specify a stream, this will include all available streams, and within each stream only the latest version of packages.
|
1025
1306
|
* For a module filter that does specify a stream, this will include only the latest version of packages for the specified stream.
|
@@ -1027,18 +1308,22 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1027
1308
|
* For a package filter that does specify a version, this will include only the specified version of the package (the isLatestContentOnly attribute is ignored).
|
1028
1309
|
* For a package list, this will include only the specified version of packages and modules in the list (the isLatestContentOnly attribute is ignored).
|
1029
1310
|
:param pulumi.Input[bool] is_mandatory_for_autonomous_linux: Indicates whether the software source is required for the Autonomous Linux service.
|
1311
|
+
:param pulumi.Input[bool] is_mirror_sync_allowed: (Updatable) Whether this software source can be synced to a management station
|
1312
|
+
:param pulumi.Input[bool] is_ssl_verify_enabled: (Updatable) Whether SSL validation needs to be turned on
|
1030
1313
|
:param pulumi.Input[str] origin_software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vendor software source in the root compartment that is being replicated.
|
1031
|
-
:param pulumi.Input[str] os_family: The OS family the software source
|
1314
|
+
:param pulumi.Input[str] os_family: The OS family for the third-party software source.
|
1032
1315
|
:param pulumi.Input[str] package_count: Number of packages the software source contains.
|
1033
1316
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] packages: A property used for compatibility only. It doesn't provide a complete list of packages. See [AddPackagesToSoftwareSourceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/osmh/latest/datatypes/AddPackagesToSoftwareSourceDetails) for providing the list of packages used to create the software source when isCreatedFromPackageList is set to true.
|
1034
1317
|
:param pulumi.Input[str] repo_id: The repository ID for the software source.
|
1035
|
-
:param pulumi.Input[float] size: The size of the software source in
|
1318
|
+
:param pulumi.Input[float] size: The size of the software source in bytes (B).
|
1319
|
+
:param pulumi.Input[str] software_source_sub_type: The creation type of a software source.
|
1036
1320
|
:param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
|
1037
1321
|
:param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
|
1038
1322
|
:param pulumi.Input[str] state: The current state of the software source.
|
1039
1323
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1040
1324
|
:param pulumi.Input[str] time_created: The date and time the software source was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1041
|
-
:param pulumi.Input[str]
|
1325
|
+
:param pulumi.Input[str] time_metadata_updated: The date and time the metadata for this software source was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1326
|
+
:param pulumi.Input[str] url: (Updatable) URL for the third-party software source.
|
1042
1327
|
:param pulumi.Input[str] vendor_name: Name of the vendor providing the software source.
|
1043
1328
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SoftwareSourceVendorSoftwareSourceArgs', 'SoftwareSourceVendorSoftwareSourceArgsDict']]]] vendor_software_sources: (Updatable) List of vendor software sources.
|
1044
1329
|
"""
|
@@ -1046,6 +1331,7 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1046
1331
|
|
1047
1332
|
__props__ = _SoftwareSourceState.__new__(_SoftwareSourceState)
|
1048
1333
|
|
1334
|
+
__props__.__dict__["advanced_repo_options"] = advanced_repo_options
|
1049
1335
|
__props__.__dict__["arch_type"] = arch_type
|
1050
1336
|
__props__.__dict__["availability"] = availability
|
1051
1337
|
__props__.__dict__["availability_at_oci"] = availability_at_oci
|
@@ -1062,29 +1348,42 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1062
1348
|
__props__.__dict__["is_auto_resolve_dependencies"] = is_auto_resolve_dependencies
|
1063
1349
|
__props__.__dict__["is_automatically_updated"] = is_automatically_updated
|
1064
1350
|
__props__.__dict__["is_created_from_package_list"] = is_created_from_package_list
|
1351
|
+
__props__.__dict__["is_gpg_check_enabled"] = is_gpg_check_enabled
|
1065
1352
|
__props__.__dict__["is_latest_content_only"] = is_latest_content_only
|
1066
1353
|
__props__.__dict__["is_mandatory_for_autonomous_linux"] = is_mandatory_for_autonomous_linux
|
1354
|
+
__props__.__dict__["is_mirror_sync_allowed"] = is_mirror_sync_allowed
|
1355
|
+
__props__.__dict__["is_ssl_verify_enabled"] = is_ssl_verify_enabled
|
1067
1356
|
__props__.__dict__["origin_software_source_id"] = origin_software_source_id
|
1068
1357
|
__props__.__dict__["os_family"] = os_family
|
1069
1358
|
__props__.__dict__["package_count"] = package_count
|
1070
1359
|
__props__.__dict__["packages"] = packages
|
1071
1360
|
__props__.__dict__["repo_id"] = repo_id
|
1072
1361
|
__props__.__dict__["size"] = size
|
1362
|
+
__props__.__dict__["software_source_sub_type"] = software_source_sub_type
|
1073
1363
|
__props__.__dict__["software_source_type"] = software_source_type
|
1074
1364
|
__props__.__dict__["software_source_version"] = software_source_version
|
1075
1365
|
__props__.__dict__["state"] = state
|
1076
1366
|
__props__.__dict__["system_tags"] = system_tags
|
1077
1367
|
__props__.__dict__["time_created"] = time_created
|
1368
|
+
__props__.__dict__["time_metadata_updated"] = time_metadata_updated
|
1078
1369
|
__props__.__dict__["url"] = url
|
1079
1370
|
__props__.__dict__["vendor_name"] = vendor_name
|
1080
1371
|
__props__.__dict__["vendor_software_sources"] = vendor_software_sources
|
1081
1372
|
return SoftwareSource(resource_name, opts=opts, __props__=__props__)
|
1082
1373
|
|
1374
|
+
@property
|
1375
|
+
@pulumi.getter(name="advancedRepoOptions")
|
1376
|
+
def advanced_repo_options(self) -> pulumi.Output[str]:
|
1377
|
+
"""
|
1378
|
+
(Updatable) Advanced repository options for the software source
|
1379
|
+
"""
|
1380
|
+
return pulumi.get(self, "advanced_repo_options")
|
1381
|
+
|
1083
1382
|
@property
|
1084
1383
|
@pulumi.getter(name="archType")
|
1085
1384
|
def arch_type(self) -> pulumi.Output[str]:
|
1086
1385
|
"""
|
1087
|
-
The architecture type supported by the software source.
|
1386
|
+
The architecture type supported by the third-party software source.
|
1088
1387
|
"""
|
1089
1388
|
return pulumi.get(self, "arch_type")
|
1090
1389
|
|
@@ -1180,7 +1479,7 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1180
1479
|
@pulumi.getter(name="gpgKeyUrl")
|
1181
1480
|
def gpg_key_url(self) -> pulumi.Output[str]:
|
1182
1481
|
"""
|
1183
|
-
|
1482
|
+
(Updatable) URI of the GPG key for this software source.
|
1184
1483
|
"""
|
1185
1484
|
return pulumi.get(self, "gpg_key_url")
|
1186
1485
|
|
@@ -1208,6 +1507,14 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1208
1507
|
"""
|
1209
1508
|
return pulumi.get(self, "is_created_from_package_list")
|
1210
1509
|
|
1510
|
+
@property
|
1511
|
+
@pulumi.getter(name="isGpgCheckEnabled")
|
1512
|
+
def is_gpg_check_enabled(self) -> pulumi.Output[bool]:
|
1513
|
+
"""
|
1514
|
+
(Updatable) Whether signature verification should be done for the software source.
|
1515
|
+
"""
|
1516
|
+
return pulumi.get(self, "is_gpg_check_enabled")
|
1517
|
+
|
1211
1518
|
@property
|
1212
1519
|
@pulumi.getter(name="isLatestContentOnly")
|
1213
1520
|
def is_latest_content_only(self) -> pulumi.Output[bool]:
|
@@ -1229,6 +1536,22 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1229
1536
|
"""
|
1230
1537
|
return pulumi.get(self, "is_mandatory_for_autonomous_linux")
|
1231
1538
|
|
1539
|
+
@property
|
1540
|
+
@pulumi.getter(name="isMirrorSyncAllowed")
|
1541
|
+
def is_mirror_sync_allowed(self) -> pulumi.Output[bool]:
|
1542
|
+
"""
|
1543
|
+
(Updatable) Whether this software source can be synced to a management station
|
1544
|
+
"""
|
1545
|
+
return pulumi.get(self, "is_mirror_sync_allowed")
|
1546
|
+
|
1547
|
+
@property
|
1548
|
+
@pulumi.getter(name="isSslVerifyEnabled")
|
1549
|
+
def is_ssl_verify_enabled(self) -> pulumi.Output[bool]:
|
1550
|
+
"""
|
1551
|
+
(Updatable) Whether SSL validation needs to be turned on
|
1552
|
+
"""
|
1553
|
+
return pulumi.get(self, "is_ssl_verify_enabled")
|
1554
|
+
|
1232
1555
|
@property
|
1233
1556
|
@pulumi.getter(name="originSoftwareSourceId")
|
1234
1557
|
def origin_software_source_id(self) -> pulumi.Output[str]:
|
@@ -1241,7 +1564,7 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1241
1564
|
@pulumi.getter(name="osFamily")
|
1242
1565
|
def os_family(self) -> pulumi.Output[str]:
|
1243
1566
|
"""
|
1244
|
-
The OS family the software source
|
1567
|
+
The OS family for the third-party software source.
|
1245
1568
|
"""
|
1246
1569
|
return pulumi.get(self, "os_family")
|
1247
1570
|
|
@@ -1273,10 +1596,18 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1273
1596
|
@pulumi.getter
|
1274
1597
|
def size(self) -> pulumi.Output[float]:
|
1275
1598
|
"""
|
1276
|
-
The size of the software source in
|
1599
|
+
The size of the software source in bytes (B).
|
1277
1600
|
"""
|
1278
1601
|
return pulumi.get(self, "size")
|
1279
1602
|
|
1603
|
+
@property
|
1604
|
+
@pulumi.getter(name="softwareSourceSubType")
|
1605
|
+
def software_source_sub_type(self) -> pulumi.Output[str]:
|
1606
|
+
"""
|
1607
|
+
The creation type of a software source.
|
1608
|
+
"""
|
1609
|
+
return pulumi.get(self, "software_source_sub_type")
|
1610
|
+
|
1280
1611
|
@property
|
1281
1612
|
@pulumi.getter(name="softwareSourceType")
|
1282
1613
|
def software_source_type(self) -> pulumi.Output[str]:
|
@@ -1317,11 +1648,19 @@ class SoftwareSource(pulumi.CustomResource):
|
|
1317
1648
|
"""
|
1318
1649
|
return pulumi.get(self, "time_created")
|
1319
1650
|
|
1651
|
+
@property
|
1652
|
+
@pulumi.getter(name="timeMetadataUpdated")
|
1653
|
+
def time_metadata_updated(self) -> pulumi.Output[str]:
|
1654
|
+
"""
|
1655
|
+
The date and time the metadata for this software source was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1656
|
+
"""
|
1657
|
+
return pulumi.get(self, "time_metadata_updated")
|
1658
|
+
|
1320
1659
|
@property
|
1321
1660
|
@pulumi.getter
|
1322
1661
|
def url(self) -> pulumi.Output[str]:
|
1323
1662
|
"""
|
1324
|
-
URL for the
|
1663
|
+
(Updatable) URL for the third-party software source.
|
1325
1664
|
"""
|
1326
1665
|
return pulumi.get(self, "url")
|
1327
1666
|
|