pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.0__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.
Files changed (130) hide show
  1. pulumi_oci/__init__.py +208 -0
  2. pulumi_oci/core/__init__.py +3 -0
  3. pulumi_oci/core/_inputs.py +40 -0
  4. pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
  5. pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
  6. pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
  7. pulumi_oci/core/outputs.py +261 -0
  8. pulumi_oci/database/_inputs.py +304 -0
  9. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  10. pulumi_oci/database/cloud_vm_cluster.py +55 -0
  11. pulumi_oci/database/exadata_infrastructure.py +28 -0
  12. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  13. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  14. pulumi_oci/database/get_exadata_infrastructure.py +14 -1
  15. pulumi_oci/database/get_vm_cluster.py +14 -1
  16. pulumi_oci/database/outputs.py +734 -6
  17. pulumi_oci/database/vm_cluster.py +55 -0
  18. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  19. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  20. pulumi_oci/datasafe/__init__.py +1 -0
  21. pulumi_oci/datasafe/masking_report_management.py +693 -0
  22. pulumi_oci/disasterrecovery/_inputs.py +16 -0
  23. pulumi_oci/disasterrecovery/outputs.py +36 -0
  24. pulumi_oci/email/__init__.py +3 -0
  25. pulumi_oci/email/_inputs.py +46 -0
  26. pulumi_oci/email/dkim.py +4 -4
  27. pulumi_oci/email/email_domain.py +77 -0
  28. pulumi_oci/email/email_return_path.py +642 -0
  29. pulumi_oci/email/get_email_domain.py +27 -1
  30. pulumi_oci/email/get_email_return_path.py +274 -0
  31. pulumi_oci/email/get_email_return_paths.py +203 -0
  32. pulumi_oci/email/outputs.py +231 -0
  33. pulumi_oci/loadbalancer/_inputs.py +160 -20
  34. pulumi_oci/loadbalancer/backend.py +49 -0
  35. pulumi_oci/loadbalancer/backend_set.py +57 -0
  36. pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
  37. pulumi_oci/loadbalancer/listener.py +2 -0
  38. pulumi_oci/loadbalancer/load_balancer.py +98 -7
  39. pulumi_oci/loadbalancer/outputs.py +375 -36
  40. pulumi_oci/loadbalancer/rule_set.py +10 -0
  41. pulumi_oci/loganalytics/namespace.py +4 -4
  42. pulumi_oci/networkloadbalancer/get_listener.py +14 -1
  43. pulumi_oci/networkloadbalancer/listener.py +51 -2
  44. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  45. pulumi_oci/osmanagementhub/__init__.py +48 -0
  46. pulumi_oci/osmanagementhub/_inputs.py +3635 -493
  47. pulumi_oci/osmanagementhub/event.py +701 -0
  48. pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
  49. pulumi_oci/osmanagementhub/get_errata.py +283 -0
  50. pulumi_oci/osmanagementhub/get_erratum.py +308 -0
  51. pulumi_oci/osmanagementhub/get_event.py +314 -0
  52. pulumi_oci/osmanagementhub/get_events.py +314 -0
  53. pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
  54. pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
  55. pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
  56. pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
  57. pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
  58. pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
  59. pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
  60. pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
  61. pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
  62. pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
  63. pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
  64. pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
  65. pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
  66. pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
  67. pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
  68. pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
  69. pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
  70. pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
  71. pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
  72. pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
  73. pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
  74. pulumi_oci/osmanagementhub/get_management_station.py +42 -19
  75. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
  76. pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
  77. pulumi_oci/osmanagementhub/get_profile.py +51 -12
  78. pulumi_oci/osmanagementhub/get_profiles.py +76 -16
  79. pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
  80. pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
  81. pulumi_oci/osmanagementhub/get_software_package.py +301 -0
  82. pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
  83. pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
  84. pulumi_oci/osmanagementhub/get_software_source.py +109 -18
  85. pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
  86. pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
  87. pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
  88. pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
  89. pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
  90. pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
  91. pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
  92. pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
  93. pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
  94. pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
  95. pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
  96. pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
  97. pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
  98. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
  99. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
  100. pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
  101. pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
  102. pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
  103. pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
  104. pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
  105. pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
  106. pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
  107. pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
  108. pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
  109. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
  110. pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
  111. pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
  112. pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
  113. pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
  114. pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
  115. pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
  116. pulumi_oci/osmanagementhub/management_station.py +184 -81
  117. pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
  118. pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
  119. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
  120. pulumi_oci/osmanagementhub/outputs.py +10867 -2365
  121. pulumi_oci/osmanagementhub/profile.py +200 -78
  122. pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
  123. pulumi_oci/osmanagementhub/software_source.py +365 -181
  124. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
  125. pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
  126. pulumi_oci/pulumi-plugin.json +2 -1
  127. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
  128. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
  129. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
  130. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -17,50 +17,68 @@ __all__ = ['SoftwareSourceArgs', 'SoftwareSource']
17
17
  class SoftwareSourceArgs:
18
18
  def __init__(__self__, *,
19
19
  compartment_id: pulumi.Input[str],
20
- display_name: pulumi.Input[str],
21
20
  software_source_type: pulumi.Input[str],
22
- vendor_software_sources: pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]],
23
21
  custom_software_source_filter: Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']] = None,
24
22
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
25
23
  description: Optional[pulumi.Input[str]] = None,
24
+ display_name: Optional[pulumi.Input[str]] = None,
26
25
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
26
+ is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
27
27
  is_automatically_updated: Optional[pulumi.Input[bool]] = None,
28
- software_source_version: Optional[pulumi.Input[str]] = None):
28
+ is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
29
+ origin_software_source_id: Optional[pulumi.Input[str]] = None,
30
+ packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
+ software_source_version: Optional[pulumi.Input[str]] = None,
32
+ vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]] = None):
29
33
  """
30
34
  The set of arguments for constructing a SoftwareSource resource.
31
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the software source.
32
- :param pulumi.Input[str] display_name: (Updatable) User friendly name.
33
- :param pulumi.Input[str] software_source_type: (Updatable) Type of the software source.
34
- :param pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]] vendor_software_sources: (Updatable) List of vendor software sources.
35
- :param pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs'] custom_software_source_filter: (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
35
+ :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.
36
+ :param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
37
+ :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.
36
38
  :param pulumi.Input[Mapping[str, Any]] 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"}`
37
- :param pulumi.Input[str] description: (Updatable) Information specified by the user about the software source.
39
+ :param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
40
+ :param pulumi.Input[str] display_name: (Updatable) User-friendly name.
38
41
  :param pulumi.Input[Mapping[str, Any]] 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"}`
39
- :param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether service should automatically update the custom software source for the user.
42
+ :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.
43
+ :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.
44
+ :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.
45
+ :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.
46
+ :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.
40
47
  :param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
48
+ :param pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]] vendor_software_sources: (Updatable) List of vendor software sources.
41
49
  """
42
50
  pulumi.set(__self__, "compartment_id", compartment_id)
43
- pulumi.set(__self__, "display_name", display_name)
44
51
  pulumi.set(__self__, "software_source_type", software_source_type)
45
- pulumi.set(__self__, "vendor_software_sources", vendor_software_sources)
46
52
  if custom_software_source_filter is not None:
47
53
  pulumi.set(__self__, "custom_software_source_filter", custom_software_source_filter)
48
54
  if defined_tags is not None:
49
55
  pulumi.set(__self__, "defined_tags", defined_tags)
50
56
  if description is not None:
51
57
  pulumi.set(__self__, "description", description)
58
+ if display_name is not None:
59
+ pulumi.set(__self__, "display_name", display_name)
52
60
  if freeform_tags is not None:
53
61
  pulumi.set(__self__, "freeform_tags", freeform_tags)
62
+ if is_auto_resolve_dependencies is not None:
63
+ pulumi.set(__self__, "is_auto_resolve_dependencies", is_auto_resolve_dependencies)
54
64
  if is_automatically_updated is not None:
55
65
  pulumi.set(__self__, "is_automatically_updated", is_automatically_updated)
66
+ if is_created_from_package_list is not None:
67
+ pulumi.set(__self__, "is_created_from_package_list", is_created_from_package_list)
68
+ if origin_software_source_id is not None:
69
+ pulumi.set(__self__, "origin_software_source_id", origin_software_source_id)
70
+ if packages is not None:
71
+ pulumi.set(__self__, "packages", packages)
56
72
  if software_source_version is not None:
57
73
  pulumi.set(__self__, "software_source_version", software_source_version)
74
+ if vendor_software_sources is not None:
75
+ pulumi.set(__self__, "vendor_software_sources", vendor_software_sources)
58
76
 
59
77
  @property
60
78
  @pulumi.getter(name="compartmentId")
61
79
  def compartment_id(self) -> pulumi.Input[str]:
62
80
  """
63
- (Updatable) The OCID of the tenancy containing the software source.
81
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source.
64
82
  """
65
83
  return pulumi.get(self, "compartment_id")
66
84
 
@@ -68,23 +86,11 @@ class SoftwareSourceArgs:
68
86
  def compartment_id(self, value: pulumi.Input[str]):
69
87
  pulumi.set(self, "compartment_id", value)
70
88
 
71
- @property
72
- @pulumi.getter(name="displayName")
73
- def display_name(self) -> pulumi.Input[str]:
74
- """
75
- (Updatable) User friendly name.
76
- """
77
- return pulumi.get(self, "display_name")
78
-
79
- @display_name.setter
80
- def display_name(self, value: pulumi.Input[str]):
81
- pulumi.set(self, "display_name", value)
82
-
83
89
  @property
84
90
  @pulumi.getter(name="softwareSourceType")
85
91
  def software_source_type(self) -> pulumi.Input[str]:
86
92
  """
87
- (Updatable) Type of the software source.
93
+ (Updatable) Type of software source.
88
94
  """
89
95
  return pulumi.get(self, "software_source_type")
90
96
 
@@ -92,23 +98,11 @@ class SoftwareSourceArgs:
92
98
  def software_source_type(self, value: pulumi.Input[str]):
93
99
  pulumi.set(self, "software_source_type", value)
94
100
 
95
- @property
96
- @pulumi.getter(name="vendorSoftwareSources")
97
- def vendor_software_sources(self) -> pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]:
98
- """
99
- (Updatable) List of vendor software sources.
100
- """
101
- return pulumi.get(self, "vendor_software_sources")
102
-
103
- @vendor_software_sources.setter
104
- def vendor_software_sources(self, value: pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]):
105
- pulumi.set(self, "vendor_software_sources", value)
106
-
107
101
  @property
108
102
  @pulumi.getter(name="customSoftwareSourceFilter")
109
103
  def custom_software_source_filter(self) -> Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']]:
110
104
  """
111
- (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
105
+ (Updatable) Provides the information used to apply filters to a vendor software source to create or update a custom software source.
112
106
  """
113
107
  return pulumi.get(self, "custom_software_source_filter")
114
108
 
@@ -132,7 +126,7 @@ class SoftwareSourceArgs:
132
126
  @pulumi.getter
133
127
  def description(self) -> Optional[pulumi.Input[str]]:
134
128
  """
135
- (Updatable) Information specified by the user about the software source.
129
+ (Updatable) User-specified description for the software source. Avoid entering confidential information.
136
130
  """
137
131
  return pulumi.get(self, "description")
138
132
 
@@ -140,6 +134,18 @@ class SoftwareSourceArgs:
140
134
  def description(self, value: Optional[pulumi.Input[str]]):
141
135
  pulumi.set(self, "description", value)
142
136
 
137
+ @property
138
+ @pulumi.getter(name="displayName")
139
+ def display_name(self) -> Optional[pulumi.Input[str]]:
140
+ """
141
+ (Updatable) User-friendly name.
142
+ """
143
+ return pulumi.get(self, "display_name")
144
+
145
+ @display_name.setter
146
+ def display_name(self, value: Optional[pulumi.Input[str]]):
147
+ pulumi.set(self, "display_name", value)
148
+
143
149
  @property
144
150
  @pulumi.getter(name="freeformTags")
145
151
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -152,11 +158,23 @@ class SoftwareSourceArgs:
152
158
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
153
159
  pulumi.set(self, "freeform_tags", value)
154
160
 
161
+ @property
162
+ @pulumi.getter(name="isAutoResolveDependencies")
163
+ def is_auto_resolve_dependencies(self) -> Optional[pulumi.Input[bool]]:
164
+ """
165
+ (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
166
+ """
167
+ return pulumi.get(self, "is_auto_resolve_dependencies")
168
+
169
+ @is_auto_resolve_dependencies.setter
170
+ def is_auto_resolve_dependencies(self, value: Optional[pulumi.Input[bool]]):
171
+ pulumi.set(self, "is_auto_resolve_dependencies", value)
172
+
155
173
  @property
156
174
  @pulumi.getter(name="isAutomaticallyUpdated")
157
175
  def is_automatically_updated(self) -> Optional[pulumi.Input[bool]]:
158
176
  """
159
- (Updatable) Indicates whether service should automatically update the custom software source for the user.
177
+ (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.
160
178
  """
161
179
  return pulumi.get(self, "is_automatically_updated")
162
180
 
@@ -164,6 +182,42 @@ class SoftwareSourceArgs:
164
182
  def is_automatically_updated(self, value: Optional[pulumi.Input[bool]]):
165
183
  pulumi.set(self, "is_automatically_updated", value)
166
184
 
185
+ @property
186
+ @pulumi.getter(name="isCreatedFromPackageList")
187
+ def is_created_from_package_list(self) -> Optional[pulumi.Input[bool]]:
188
+ """
189
+ Indicates whether the service should create the software source from a list of packages provided by the user.
190
+ """
191
+ return pulumi.get(self, "is_created_from_package_list")
192
+
193
+ @is_created_from_package_list.setter
194
+ def is_created_from_package_list(self, value: Optional[pulumi.Input[bool]]):
195
+ pulumi.set(self, "is_created_from_package_list", value)
196
+
197
+ @property
198
+ @pulumi.getter(name="originSoftwareSourceId")
199
+ def origin_software_source_id(self) -> Optional[pulumi.Input[str]]:
200
+ """
201
+ 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.
202
+ """
203
+ return pulumi.get(self, "origin_software_source_id")
204
+
205
+ @origin_software_source_id.setter
206
+ def origin_software_source_id(self, value: Optional[pulumi.Input[str]]):
207
+ pulumi.set(self, "origin_software_source_id", value)
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def packages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
212
+ """
213
+ 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.
214
+ """
215
+ return pulumi.get(self, "packages")
216
+
217
+ @packages.setter
218
+ def packages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
219
+ pulumi.set(self, "packages", value)
220
+
167
221
  @property
168
222
  @pulumi.getter(name="softwareSourceVersion")
169
223
  def software_source_version(self) -> Optional[pulumi.Input[str]]:
@@ -176,12 +230,25 @@ class SoftwareSourceArgs:
176
230
  def software_source_version(self, value: Optional[pulumi.Input[str]]):
177
231
  pulumi.set(self, "software_source_version", value)
178
232
 
233
+ @property
234
+ @pulumi.getter(name="vendorSoftwareSources")
235
+ def vendor_software_sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]]:
236
+ """
237
+ (Updatable) List of vendor software sources.
238
+ """
239
+ return pulumi.get(self, "vendor_software_sources")
240
+
241
+ @vendor_software_sources.setter
242
+ def vendor_software_sources(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]]]):
243
+ pulumi.set(self, "vendor_software_sources", value)
244
+
179
245
 
180
246
  @pulumi.input_type
181
247
  class _SoftwareSourceState:
182
248
  def __init__(__self__, *,
183
249
  arch_type: Optional[pulumi.Input[str]] = None,
184
250
  availability: Optional[pulumi.Input[str]] = None,
251
+ availability_at_oci: Optional[pulumi.Input[str]] = None,
185
252
  checksum_type: Optional[pulumi.Input[str]] = None,
186
253
  compartment_id: Optional[pulumi.Input[str]] = None,
187
254
  custom_software_source_filter: Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']] = None,
@@ -192,10 +259,16 @@ class _SoftwareSourceState:
192
259
  gpg_key_fingerprint: Optional[pulumi.Input[str]] = None,
193
260
  gpg_key_id: Optional[pulumi.Input[str]] = None,
194
261
  gpg_key_url: Optional[pulumi.Input[str]] = None,
262
+ is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
195
263
  is_automatically_updated: Optional[pulumi.Input[bool]] = None,
264
+ is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
265
+ is_mandatory_for_autonomous_linux: Optional[pulumi.Input[bool]] = None,
266
+ origin_software_source_id: Optional[pulumi.Input[str]] = None,
196
267
  os_family: Optional[pulumi.Input[str]] = None,
197
268
  package_count: Optional[pulumi.Input[str]] = None,
269
+ packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
198
270
  repo_id: Optional[pulumi.Input[str]] = None,
271
+ size: Optional[pulumi.Input[float]] = None,
199
272
  software_source_type: Optional[pulumi.Input[str]] = None,
200
273
  software_source_version: Optional[pulumi.Input[str]] = None,
201
274
  state: Optional[pulumi.Input[str]] = None,
@@ -207,27 +280,34 @@ class _SoftwareSourceState:
207
280
  """
208
281
  Input properties used for looking up and filtering SoftwareSource resources.
209
282
  :param pulumi.Input[str] arch_type: The architecture type supported by the software source.
210
- :param pulumi.Input[str] availability: Possible availabilities of a software source.
283
+ :param pulumi.Input[str] availability: Availability of the software source (for non-OCI environments).
284
+ :param pulumi.Input[str] availability_at_oci: Availability of the software source (for Oracle Cloud Infrastructure environments).
211
285
  :param pulumi.Input[str] checksum_type: The yum repository checksum type used by this software source.
212
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the software source.
213
- :param pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs'] custom_software_source_filter: (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
286
+ :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.
287
+ :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.
214
288
  :param pulumi.Input[Mapping[str, Any]] 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"}`
215
- :param pulumi.Input[str] description: (Updatable) Information specified by the user about the software source.
216
- :param pulumi.Input[str] display_name: (Updatable) User friendly name.
289
+ :param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
290
+ :param pulumi.Input[str] display_name: (Updatable) User-friendly name.
217
291
  :param pulumi.Input[Mapping[str, Any]] 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"}`
218
292
  :param pulumi.Input[str] gpg_key_fingerprint: Fingerprint of the GPG key for this software source.
219
293
  :param pulumi.Input[str] gpg_key_id: ID of the GPG key for this software source.
220
294
  :param pulumi.Input[str] gpg_key_url: URL of the GPG key for this software source.
221
- :param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether service should automatically update the custom software source for the user.
295
+ :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.
296
+ :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.
297
+ :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.
298
+ :param pulumi.Input[bool] is_mandatory_for_autonomous_linux: Indicates whether the software source is required for the Autonomous Linux service.
299
+ :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.
222
300
  :param pulumi.Input[str] os_family: The OS family the software source belongs to.
223
- :param pulumi.Input[str] package_count: Number of packages.
224
- :param pulumi.Input[str] repo_id: The Repo ID for the software source.
225
- :param pulumi.Input[str] software_source_type: (Updatable) Type of the software source.
301
+ :param pulumi.Input[str] package_count: Number of packages the software source contains.
302
+ :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.
303
+ :param pulumi.Input[str] repo_id: The repository ID for the software source.
304
+ :param pulumi.Input[float] size: The size of the software source in gigabytes (GB).
305
+ :param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
226
306
  :param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
227
307
  :param pulumi.Input[str] state: The current state of the software source.
228
308
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
229
- :param pulumi.Input[str] time_created: The date and time the software source was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
230
- :param pulumi.Input[str] url: URL for the repository.
309
+ :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).
310
+ :param pulumi.Input[str] url: URL for the repository. For vendor software sources, this is the URL to the regional yum server. For custom software sources, this is 'custom/<repoId>'.
231
311
  :param pulumi.Input[str] vendor_name: Name of the vendor providing the software source.
232
312
  :param pulumi.Input[Sequence[pulumi.Input['SoftwareSourceVendorSoftwareSourceArgs']]] vendor_software_sources: (Updatable) List of vendor software sources.
233
313
  """
@@ -235,6 +315,8 @@ class _SoftwareSourceState:
235
315
  pulumi.set(__self__, "arch_type", arch_type)
236
316
  if availability is not None:
237
317
  pulumi.set(__self__, "availability", availability)
318
+ if availability_at_oci is not None:
319
+ pulumi.set(__self__, "availability_at_oci", availability_at_oci)
238
320
  if checksum_type is not None:
239
321
  pulumi.set(__self__, "checksum_type", checksum_type)
240
322
  if compartment_id is not None:
@@ -255,14 +337,26 @@ class _SoftwareSourceState:
255
337
  pulumi.set(__self__, "gpg_key_id", gpg_key_id)
256
338
  if gpg_key_url is not None:
257
339
  pulumi.set(__self__, "gpg_key_url", gpg_key_url)
340
+ if is_auto_resolve_dependencies is not None:
341
+ pulumi.set(__self__, "is_auto_resolve_dependencies", is_auto_resolve_dependencies)
258
342
  if is_automatically_updated is not None:
259
343
  pulumi.set(__self__, "is_automatically_updated", is_automatically_updated)
344
+ if is_created_from_package_list is not None:
345
+ pulumi.set(__self__, "is_created_from_package_list", is_created_from_package_list)
346
+ if is_mandatory_for_autonomous_linux is not None:
347
+ pulumi.set(__self__, "is_mandatory_for_autonomous_linux", is_mandatory_for_autonomous_linux)
348
+ if origin_software_source_id is not None:
349
+ pulumi.set(__self__, "origin_software_source_id", origin_software_source_id)
260
350
  if os_family is not None:
261
351
  pulumi.set(__self__, "os_family", os_family)
262
352
  if package_count is not None:
263
353
  pulumi.set(__self__, "package_count", package_count)
354
+ if packages is not None:
355
+ pulumi.set(__self__, "packages", packages)
264
356
  if repo_id is not None:
265
357
  pulumi.set(__self__, "repo_id", repo_id)
358
+ if size is not None:
359
+ pulumi.set(__self__, "size", size)
266
360
  if software_source_type is not None:
267
361
  pulumi.set(__self__, "software_source_type", software_source_type)
268
362
  if software_source_version is not None:
@@ -296,7 +390,7 @@ class _SoftwareSourceState:
296
390
  @pulumi.getter
297
391
  def availability(self) -> Optional[pulumi.Input[str]]:
298
392
  """
299
- Possible availabilities of a software source.
393
+ Availability of the software source (for non-OCI environments).
300
394
  """
301
395
  return pulumi.get(self, "availability")
302
396
 
@@ -304,6 +398,18 @@ class _SoftwareSourceState:
304
398
  def availability(self, value: Optional[pulumi.Input[str]]):
305
399
  pulumi.set(self, "availability", value)
306
400
 
401
+ @property
402
+ @pulumi.getter(name="availabilityAtOci")
403
+ def availability_at_oci(self) -> Optional[pulumi.Input[str]]:
404
+ """
405
+ Availability of the software source (for Oracle Cloud Infrastructure environments).
406
+ """
407
+ return pulumi.get(self, "availability_at_oci")
408
+
409
+ @availability_at_oci.setter
410
+ def availability_at_oci(self, value: Optional[pulumi.Input[str]]):
411
+ pulumi.set(self, "availability_at_oci", value)
412
+
307
413
  @property
308
414
  @pulumi.getter(name="checksumType")
309
415
  def checksum_type(self) -> Optional[pulumi.Input[str]]:
@@ -320,7 +426,7 @@ class _SoftwareSourceState:
320
426
  @pulumi.getter(name="compartmentId")
321
427
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
322
428
  """
323
- (Updatable) The OCID of the tenancy containing the software source.
429
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source.
324
430
  """
325
431
  return pulumi.get(self, "compartment_id")
326
432
 
@@ -332,7 +438,7 @@ class _SoftwareSourceState:
332
438
  @pulumi.getter(name="customSoftwareSourceFilter")
333
439
  def custom_software_source_filter(self) -> Optional[pulumi.Input['SoftwareSourceCustomSoftwareSourceFilterArgs']]:
334
440
  """
335
- (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
441
+ (Updatable) Provides the information used to apply filters to a vendor software source to create or update a custom software source.
336
442
  """
337
443
  return pulumi.get(self, "custom_software_source_filter")
338
444
 
@@ -356,7 +462,7 @@ class _SoftwareSourceState:
356
462
  @pulumi.getter
357
463
  def description(self) -> Optional[pulumi.Input[str]]:
358
464
  """
359
- (Updatable) Information specified by the user about the software source.
465
+ (Updatable) User-specified description for the software source. Avoid entering confidential information.
360
466
  """
361
467
  return pulumi.get(self, "description")
362
468
 
@@ -368,7 +474,7 @@ class _SoftwareSourceState:
368
474
  @pulumi.getter(name="displayName")
369
475
  def display_name(self) -> Optional[pulumi.Input[str]]:
370
476
  """
371
- (Updatable) User friendly name.
477
+ (Updatable) User-friendly name.
372
478
  """
373
479
  return pulumi.get(self, "display_name")
374
480
 
@@ -424,11 +530,23 @@ class _SoftwareSourceState:
424
530
  def gpg_key_url(self, value: Optional[pulumi.Input[str]]):
425
531
  pulumi.set(self, "gpg_key_url", value)
426
532
 
533
+ @property
534
+ @pulumi.getter(name="isAutoResolveDependencies")
535
+ def is_auto_resolve_dependencies(self) -> Optional[pulumi.Input[bool]]:
536
+ """
537
+ (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
538
+ """
539
+ return pulumi.get(self, "is_auto_resolve_dependencies")
540
+
541
+ @is_auto_resolve_dependencies.setter
542
+ def is_auto_resolve_dependencies(self, value: Optional[pulumi.Input[bool]]):
543
+ pulumi.set(self, "is_auto_resolve_dependencies", value)
544
+
427
545
  @property
428
546
  @pulumi.getter(name="isAutomaticallyUpdated")
429
547
  def is_automatically_updated(self) -> Optional[pulumi.Input[bool]]:
430
548
  """
431
- (Updatable) Indicates whether service should automatically update the custom software source for the user.
549
+ (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.
432
550
  """
433
551
  return pulumi.get(self, "is_automatically_updated")
434
552
 
@@ -436,6 +554,42 @@ class _SoftwareSourceState:
436
554
  def is_automatically_updated(self, value: Optional[pulumi.Input[bool]]):
437
555
  pulumi.set(self, "is_automatically_updated", value)
438
556
 
557
+ @property
558
+ @pulumi.getter(name="isCreatedFromPackageList")
559
+ def is_created_from_package_list(self) -> Optional[pulumi.Input[bool]]:
560
+ """
561
+ Indicates whether the service should create the software source from a list of packages provided by the user.
562
+ """
563
+ return pulumi.get(self, "is_created_from_package_list")
564
+
565
+ @is_created_from_package_list.setter
566
+ def is_created_from_package_list(self, value: Optional[pulumi.Input[bool]]):
567
+ pulumi.set(self, "is_created_from_package_list", value)
568
+
569
+ @property
570
+ @pulumi.getter(name="isMandatoryForAutonomousLinux")
571
+ def is_mandatory_for_autonomous_linux(self) -> Optional[pulumi.Input[bool]]:
572
+ """
573
+ Indicates whether the software source is required for the Autonomous Linux service.
574
+ """
575
+ return pulumi.get(self, "is_mandatory_for_autonomous_linux")
576
+
577
+ @is_mandatory_for_autonomous_linux.setter
578
+ def is_mandatory_for_autonomous_linux(self, value: Optional[pulumi.Input[bool]]):
579
+ pulumi.set(self, "is_mandatory_for_autonomous_linux", value)
580
+
581
+ @property
582
+ @pulumi.getter(name="originSoftwareSourceId")
583
+ def origin_software_source_id(self) -> Optional[pulumi.Input[str]]:
584
+ """
585
+ 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.
586
+ """
587
+ return pulumi.get(self, "origin_software_source_id")
588
+
589
+ @origin_software_source_id.setter
590
+ def origin_software_source_id(self, value: Optional[pulumi.Input[str]]):
591
+ pulumi.set(self, "origin_software_source_id", value)
592
+
439
593
  @property
440
594
  @pulumi.getter(name="osFamily")
441
595
  def os_family(self) -> Optional[pulumi.Input[str]]:
@@ -452,7 +606,7 @@ class _SoftwareSourceState:
452
606
  @pulumi.getter(name="packageCount")
453
607
  def package_count(self) -> Optional[pulumi.Input[str]]:
454
608
  """
455
- Number of packages.
609
+ Number of packages the software source contains.
456
610
  """
457
611
  return pulumi.get(self, "package_count")
458
612
 
@@ -460,11 +614,23 @@ class _SoftwareSourceState:
460
614
  def package_count(self, value: Optional[pulumi.Input[str]]):
461
615
  pulumi.set(self, "package_count", value)
462
616
 
617
+ @property
618
+ @pulumi.getter
619
+ def packages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
620
+ """
621
+ 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.
622
+ """
623
+ return pulumi.get(self, "packages")
624
+
625
+ @packages.setter
626
+ def packages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
627
+ pulumi.set(self, "packages", value)
628
+
463
629
  @property
464
630
  @pulumi.getter(name="repoId")
465
631
  def repo_id(self) -> Optional[pulumi.Input[str]]:
466
632
  """
467
- The Repo ID for the software source.
633
+ The repository ID for the software source.
468
634
  """
469
635
  return pulumi.get(self, "repo_id")
470
636
 
@@ -472,11 +638,23 @@ class _SoftwareSourceState:
472
638
  def repo_id(self, value: Optional[pulumi.Input[str]]):
473
639
  pulumi.set(self, "repo_id", value)
474
640
 
641
+ @property
642
+ @pulumi.getter
643
+ def size(self) -> Optional[pulumi.Input[float]]:
644
+ """
645
+ The size of the software source in gigabytes (GB).
646
+ """
647
+ return pulumi.get(self, "size")
648
+
649
+ @size.setter
650
+ def size(self, value: Optional[pulumi.Input[float]]):
651
+ pulumi.set(self, "size", value)
652
+
475
653
  @property
476
654
  @pulumi.getter(name="softwareSourceType")
477
655
  def software_source_type(self) -> Optional[pulumi.Input[str]]:
478
656
  """
479
- (Updatable) Type of the software source.
657
+ (Updatable) Type of software source.
480
658
  """
481
659
  return pulumi.get(self, "software_source_type")
482
660
 
@@ -524,7 +702,7 @@ class _SoftwareSourceState:
524
702
  @pulumi.getter(name="timeCreated")
525
703
  def time_created(self) -> Optional[pulumi.Input[str]]:
526
704
  """
527
- The date and time the software source was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
705
+ The date and time the software source was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
528
706
  """
529
707
  return pulumi.get(self, "time_created")
530
708
 
@@ -536,7 +714,7 @@ class _SoftwareSourceState:
536
714
  @pulumi.getter
537
715
  def url(self) -> Optional[pulumi.Input[str]]:
538
716
  """
539
- URL for the repository.
717
+ URL for the repository. For vendor software sources, this is the URL to the regional yum server. For custom software sources, this is 'custom/<repoId>'.
540
718
  """
541
719
  return pulumi.get(self, "url")
542
720
 
@@ -580,7 +758,11 @@ class SoftwareSource(pulumi.CustomResource):
580
758
  description: Optional[pulumi.Input[str]] = None,
581
759
  display_name: Optional[pulumi.Input[str]] = None,
582
760
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
761
+ is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
583
762
  is_automatically_updated: Optional[pulumi.Input[bool]] = None,
763
+ is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
764
+ origin_software_source_id: Optional[pulumi.Input[str]] = None,
765
+ packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
584
766
  software_source_type: Optional[pulumi.Input[str]] = None,
585
767
  software_source_version: Optional[pulumi.Input[str]] = None,
586
768
  vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SoftwareSourceVendorSoftwareSourceArgs']]]]] = None,
@@ -590,49 +772,6 @@ class SoftwareSource(pulumi.CustomResource):
590
772
 
591
773
  Creates a new versioned or custom software source.
592
774
 
593
- ## Example Usage
594
-
595
- ```python
596
- import pulumi
597
- import pulumi_oci as oci
598
-
599
- test_software_source = oci.os_management_hub.SoftwareSource("test_software_source",
600
- compartment_id=compartment_id,
601
- display_name=software_source_display_name,
602
- software_source_type=software_source_software_source_type,
603
- vendor_software_sources=[oci.os_management_hub.SoftwareSourceVendorSoftwareSourceArgs(
604
- display_name=software_source_vendor_software_sources_display_name,
605
- id=software_source_vendor_software_sources_id,
606
- )],
607
- custom_software_source_filter=oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterArgs(
608
- module_stream_profile_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterModuleStreamProfileFilterArgs(
609
- filter_type=software_source_custom_software_source_filter_module_stream_profile_filters_filter_type,
610
- module_name=software_source_custom_software_source_filter_module_stream_profile_filters_module_name,
611
- profile_name=test_profile["name"],
612
- stream_name=test_stream["name"],
613
- )],
614
- package_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterPackageFilterArgs(
615
- filter_type=software_source_custom_software_source_filter_package_filters_filter_type,
616
- package_name=software_source_custom_software_source_filter_package_filters_package_name,
617
- package_name_pattern=software_source_custom_software_source_filter_package_filters_package_name_pattern,
618
- package_version=software_source_custom_software_source_filter_package_filters_package_version,
619
- )],
620
- package_group_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterPackageGroupFilterArgs(
621
- filter_type=software_source_custom_software_source_filter_package_group_filters_filter_type,
622
- package_groups=software_source_custom_software_source_filter_package_group_filters_package_groups,
623
- )],
624
- ),
625
- defined_tags={
626
- "Operations.CostCenter": "42",
627
- },
628
- description=software_source_description,
629
- freeform_tags={
630
- "Department": "Finance",
631
- },
632
- is_automatically_updated=software_source_is_automatically_updated,
633
- software_source_version=software_source_software_source_version)
634
- ```
635
-
636
775
  ## Import
637
776
 
638
777
  SoftwareSources can be imported using the `id`, e.g.
@@ -643,14 +782,18 @@ class SoftwareSource(pulumi.CustomResource):
643
782
 
644
783
  :param str resource_name: The name of the resource.
645
784
  :param pulumi.ResourceOptions opts: Options for the resource.
646
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the software source.
647
- :param pulumi.Input[pulumi.InputType['SoftwareSourceCustomSoftwareSourceFilterArgs']] custom_software_source_filter: (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
785
+ :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.
786
+ :param pulumi.Input[pulumi.InputType['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.
648
787
  :param pulumi.Input[Mapping[str, Any]] 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"}`
649
- :param pulumi.Input[str] description: (Updatable) Information specified by the user about the software source.
650
- :param pulumi.Input[str] display_name: (Updatable) User friendly name.
788
+ :param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
789
+ :param pulumi.Input[str] display_name: (Updatable) User-friendly name.
651
790
  :param pulumi.Input[Mapping[str, Any]] 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"}`
652
- :param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether service should automatically update the custom software source for the user.
653
- :param pulumi.Input[str] software_source_type: (Updatable) Type of the software source.
791
+ :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.
792
+ :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.
793
+ :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.
794
+ :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.
795
+ :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.
796
+ :param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
654
797
  :param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
655
798
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SoftwareSourceVendorSoftwareSourceArgs']]]] vendor_software_sources: (Updatable) List of vendor software sources.
656
799
  """
@@ -665,49 +808,6 @@ class SoftwareSource(pulumi.CustomResource):
665
808
 
666
809
  Creates a new versioned or custom software source.
667
810
 
668
- ## Example Usage
669
-
670
- ```python
671
- import pulumi
672
- import pulumi_oci as oci
673
-
674
- test_software_source = oci.os_management_hub.SoftwareSource("test_software_source",
675
- compartment_id=compartment_id,
676
- display_name=software_source_display_name,
677
- software_source_type=software_source_software_source_type,
678
- vendor_software_sources=[oci.os_management_hub.SoftwareSourceVendorSoftwareSourceArgs(
679
- display_name=software_source_vendor_software_sources_display_name,
680
- id=software_source_vendor_software_sources_id,
681
- )],
682
- custom_software_source_filter=oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterArgs(
683
- module_stream_profile_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterModuleStreamProfileFilterArgs(
684
- filter_type=software_source_custom_software_source_filter_module_stream_profile_filters_filter_type,
685
- module_name=software_source_custom_software_source_filter_module_stream_profile_filters_module_name,
686
- profile_name=test_profile["name"],
687
- stream_name=test_stream["name"],
688
- )],
689
- package_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterPackageFilterArgs(
690
- filter_type=software_source_custom_software_source_filter_package_filters_filter_type,
691
- package_name=software_source_custom_software_source_filter_package_filters_package_name,
692
- package_name_pattern=software_source_custom_software_source_filter_package_filters_package_name_pattern,
693
- package_version=software_source_custom_software_source_filter_package_filters_package_version,
694
- )],
695
- package_group_filters=[oci.os_management_hub.SoftwareSourceCustomSoftwareSourceFilterPackageGroupFilterArgs(
696
- filter_type=software_source_custom_software_source_filter_package_group_filters_filter_type,
697
- package_groups=software_source_custom_software_source_filter_package_group_filters_package_groups,
698
- )],
699
- ),
700
- defined_tags={
701
- "Operations.CostCenter": "42",
702
- },
703
- description=software_source_description,
704
- freeform_tags={
705
- "Department": "Finance",
706
- },
707
- is_automatically_updated=software_source_is_automatically_updated,
708
- software_source_version=software_source_software_source_version)
709
- ```
710
-
711
811
  ## Import
712
812
 
713
813
  SoftwareSources can be imported using the `id`, e.g.
@@ -737,7 +837,11 @@ class SoftwareSource(pulumi.CustomResource):
737
837
  description: Optional[pulumi.Input[str]] = None,
738
838
  display_name: Optional[pulumi.Input[str]] = None,
739
839
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
840
+ is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
740
841
  is_automatically_updated: Optional[pulumi.Input[bool]] = None,
842
+ is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
843
+ origin_software_source_id: Optional[pulumi.Input[str]] = None,
844
+ packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
741
845
  software_source_type: Optional[pulumi.Input[str]] = None,
742
846
  software_source_version: Optional[pulumi.Input[str]] = None,
743
847
  vendor_software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SoftwareSourceVendorSoftwareSourceArgs']]]]] = None,
@@ -756,27 +860,30 @@ class SoftwareSource(pulumi.CustomResource):
756
860
  __props__.__dict__["custom_software_source_filter"] = custom_software_source_filter
757
861
  __props__.__dict__["defined_tags"] = defined_tags
758
862
  __props__.__dict__["description"] = description
759
- if display_name is None and not opts.urn:
760
- raise TypeError("Missing required property 'display_name'")
761
863
  __props__.__dict__["display_name"] = display_name
762
864
  __props__.__dict__["freeform_tags"] = freeform_tags
865
+ __props__.__dict__["is_auto_resolve_dependencies"] = is_auto_resolve_dependencies
763
866
  __props__.__dict__["is_automatically_updated"] = is_automatically_updated
867
+ __props__.__dict__["is_created_from_package_list"] = is_created_from_package_list
868
+ __props__.__dict__["origin_software_source_id"] = origin_software_source_id
869
+ __props__.__dict__["packages"] = packages
764
870
  if software_source_type is None and not opts.urn:
765
871
  raise TypeError("Missing required property 'software_source_type'")
766
872
  __props__.__dict__["software_source_type"] = software_source_type
767
873
  __props__.__dict__["software_source_version"] = software_source_version
768
- if vendor_software_sources is None and not opts.urn:
769
- raise TypeError("Missing required property 'vendor_software_sources'")
770
874
  __props__.__dict__["vendor_software_sources"] = vendor_software_sources
771
875
  __props__.__dict__["arch_type"] = None
772
876
  __props__.__dict__["availability"] = None
877
+ __props__.__dict__["availability_at_oci"] = None
773
878
  __props__.__dict__["checksum_type"] = None
774
879
  __props__.__dict__["gpg_key_fingerprint"] = None
775
880
  __props__.__dict__["gpg_key_id"] = None
776
881
  __props__.__dict__["gpg_key_url"] = None
882
+ __props__.__dict__["is_mandatory_for_autonomous_linux"] = None
777
883
  __props__.__dict__["os_family"] = None
778
884
  __props__.__dict__["package_count"] = None
779
885
  __props__.__dict__["repo_id"] = None
886
+ __props__.__dict__["size"] = None
780
887
  __props__.__dict__["state"] = None
781
888
  __props__.__dict__["system_tags"] = None
782
889
  __props__.__dict__["time_created"] = None
@@ -794,6 +901,7 @@ class SoftwareSource(pulumi.CustomResource):
794
901
  opts: Optional[pulumi.ResourceOptions] = None,
795
902
  arch_type: Optional[pulumi.Input[str]] = None,
796
903
  availability: Optional[pulumi.Input[str]] = None,
904
+ availability_at_oci: Optional[pulumi.Input[str]] = None,
797
905
  checksum_type: Optional[pulumi.Input[str]] = None,
798
906
  compartment_id: Optional[pulumi.Input[str]] = None,
799
907
  custom_software_source_filter: Optional[pulumi.Input[pulumi.InputType['SoftwareSourceCustomSoftwareSourceFilterArgs']]] = None,
@@ -804,10 +912,16 @@ class SoftwareSource(pulumi.CustomResource):
804
912
  gpg_key_fingerprint: Optional[pulumi.Input[str]] = None,
805
913
  gpg_key_id: Optional[pulumi.Input[str]] = None,
806
914
  gpg_key_url: Optional[pulumi.Input[str]] = None,
915
+ is_auto_resolve_dependencies: Optional[pulumi.Input[bool]] = None,
807
916
  is_automatically_updated: Optional[pulumi.Input[bool]] = None,
917
+ is_created_from_package_list: Optional[pulumi.Input[bool]] = None,
918
+ is_mandatory_for_autonomous_linux: Optional[pulumi.Input[bool]] = None,
919
+ origin_software_source_id: Optional[pulumi.Input[str]] = None,
808
920
  os_family: Optional[pulumi.Input[str]] = None,
809
921
  package_count: Optional[pulumi.Input[str]] = None,
922
+ packages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
810
923
  repo_id: Optional[pulumi.Input[str]] = None,
924
+ size: Optional[pulumi.Input[float]] = None,
811
925
  software_source_type: Optional[pulumi.Input[str]] = None,
812
926
  software_source_version: Optional[pulumi.Input[str]] = None,
813
927
  state: Optional[pulumi.Input[str]] = None,
@@ -824,27 +938,34 @@ class SoftwareSource(pulumi.CustomResource):
824
938
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
825
939
  :param pulumi.ResourceOptions opts: Options for the resource.
826
940
  :param pulumi.Input[str] arch_type: The architecture type supported by the software source.
827
- :param pulumi.Input[str] availability: Possible availabilities of a software source.
941
+ :param pulumi.Input[str] availability: Availability of the software source (for non-OCI environments).
942
+ :param pulumi.Input[str] availability_at_oci: Availability of the software source (for Oracle Cloud Infrastructure environments).
828
943
  :param pulumi.Input[str] checksum_type: The yum repository checksum type used by this software source.
829
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the software source.
830
- :param pulumi.Input[pulumi.InputType['SoftwareSourceCustomSoftwareSourceFilterArgs']] custom_software_source_filter: (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
944
+ :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.
945
+ :param pulumi.Input[pulumi.InputType['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.
831
946
  :param pulumi.Input[Mapping[str, Any]] 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"}`
832
- :param pulumi.Input[str] description: (Updatable) Information specified by the user about the software source.
833
- :param pulumi.Input[str] display_name: (Updatable) User friendly name.
947
+ :param pulumi.Input[str] description: (Updatable) User-specified description for the software source. Avoid entering confidential information.
948
+ :param pulumi.Input[str] display_name: (Updatable) User-friendly name.
834
949
  :param pulumi.Input[Mapping[str, Any]] 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"}`
835
950
  :param pulumi.Input[str] gpg_key_fingerprint: Fingerprint of the GPG key for this software source.
836
951
  :param pulumi.Input[str] gpg_key_id: ID of the GPG key for this software source.
837
952
  :param pulumi.Input[str] gpg_key_url: URL of the GPG key for this software source.
838
- :param pulumi.Input[bool] is_automatically_updated: (Updatable) Indicates whether service should automatically update the custom software source for the user.
953
+ :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.
954
+ :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.
955
+ :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.
956
+ :param pulumi.Input[bool] is_mandatory_for_autonomous_linux: Indicates whether the software source is required for the Autonomous Linux service.
957
+ :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.
839
958
  :param pulumi.Input[str] os_family: The OS family the software source belongs to.
840
- :param pulumi.Input[str] package_count: Number of packages.
841
- :param pulumi.Input[str] repo_id: The Repo ID for the software source.
842
- :param pulumi.Input[str] software_source_type: (Updatable) Type of the software source.
959
+ :param pulumi.Input[str] package_count: Number of packages the software source contains.
960
+ :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.
961
+ :param pulumi.Input[str] repo_id: The repository ID for the software source.
962
+ :param pulumi.Input[float] size: The size of the software source in gigabytes (GB).
963
+ :param pulumi.Input[str] software_source_type: (Updatable) Type of software source.
843
964
  :param pulumi.Input[str] software_source_version: The version to assign to this custom software source.
844
965
  :param pulumi.Input[str] state: The current state of the software source.
845
966
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
846
- :param pulumi.Input[str] time_created: The date and time the software source was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
847
- :param pulumi.Input[str] url: URL for the repository.
967
+ :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).
968
+ :param pulumi.Input[str] url: URL for the repository. For vendor software sources, this is the URL to the regional yum server. For custom software sources, this is 'custom/<repoId>'.
848
969
  :param pulumi.Input[str] vendor_name: Name of the vendor providing the software source.
849
970
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SoftwareSourceVendorSoftwareSourceArgs']]]] vendor_software_sources: (Updatable) List of vendor software sources.
850
971
  """
@@ -854,6 +975,7 @@ class SoftwareSource(pulumi.CustomResource):
854
975
 
855
976
  __props__.__dict__["arch_type"] = arch_type
856
977
  __props__.__dict__["availability"] = availability
978
+ __props__.__dict__["availability_at_oci"] = availability_at_oci
857
979
  __props__.__dict__["checksum_type"] = checksum_type
858
980
  __props__.__dict__["compartment_id"] = compartment_id
859
981
  __props__.__dict__["custom_software_source_filter"] = custom_software_source_filter
@@ -864,10 +986,16 @@ class SoftwareSource(pulumi.CustomResource):
864
986
  __props__.__dict__["gpg_key_fingerprint"] = gpg_key_fingerprint
865
987
  __props__.__dict__["gpg_key_id"] = gpg_key_id
866
988
  __props__.__dict__["gpg_key_url"] = gpg_key_url
989
+ __props__.__dict__["is_auto_resolve_dependencies"] = is_auto_resolve_dependencies
867
990
  __props__.__dict__["is_automatically_updated"] = is_automatically_updated
991
+ __props__.__dict__["is_created_from_package_list"] = is_created_from_package_list
992
+ __props__.__dict__["is_mandatory_for_autonomous_linux"] = is_mandatory_for_autonomous_linux
993
+ __props__.__dict__["origin_software_source_id"] = origin_software_source_id
868
994
  __props__.__dict__["os_family"] = os_family
869
995
  __props__.__dict__["package_count"] = package_count
996
+ __props__.__dict__["packages"] = packages
870
997
  __props__.__dict__["repo_id"] = repo_id
998
+ __props__.__dict__["size"] = size
871
999
  __props__.__dict__["software_source_type"] = software_source_type
872
1000
  __props__.__dict__["software_source_version"] = software_source_version
873
1001
  __props__.__dict__["state"] = state
@@ -890,10 +1018,18 @@ class SoftwareSource(pulumi.CustomResource):
890
1018
  @pulumi.getter
891
1019
  def availability(self) -> pulumi.Output[str]:
892
1020
  """
893
- Possible availabilities of a software source.
1021
+ Availability of the software source (for non-OCI environments).
894
1022
  """
895
1023
  return pulumi.get(self, "availability")
896
1024
 
1025
+ @property
1026
+ @pulumi.getter(name="availabilityAtOci")
1027
+ def availability_at_oci(self) -> pulumi.Output[str]:
1028
+ """
1029
+ Availability of the software source (for Oracle Cloud Infrastructure environments).
1030
+ """
1031
+ return pulumi.get(self, "availability_at_oci")
1032
+
897
1033
  @property
898
1034
  @pulumi.getter(name="checksumType")
899
1035
  def checksum_type(self) -> pulumi.Output[str]:
@@ -906,7 +1042,7 @@ class SoftwareSource(pulumi.CustomResource):
906
1042
  @pulumi.getter(name="compartmentId")
907
1043
  def compartment_id(self) -> pulumi.Output[str]:
908
1044
  """
909
- (Updatable) The OCID of the tenancy containing the software source.
1045
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source.
910
1046
  """
911
1047
  return pulumi.get(self, "compartment_id")
912
1048
 
@@ -914,7 +1050,7 @@ class SoftwareSource(pulumi.CustomResource):
914
1050
  @pulumi.getter(name="customSoftwareSourceFilter")
915
1051
  def custom_software_source_filter(self) -> pulumi.Output['outputs.SoftwareSourceCustomSoftwareSourceFilter']:
916
1052
  """
917
- (Updatable) Used to apply filters to a VendorSoftwareSource to create/update CustomSoftwareSources.
1053
+ (Updatable) Provides the information used to apply filters to a vendor software source to create or update a custom software source.
918
1054
  """
919
1055
  return pulumi.get(self, "custom_software_source_filter")
920
1056
 
@@ -930,7 +1066,7 @@ class SoftwareSource(pulumi.CustomResource):
930
1066
  @pulumi.getter
931
1067
  def description(self) -> pulumi.Output[str]:
932
1068
  """
933
- (Updatable) Information specified by the user about the software source.
1069
+ (Updatable) User-specified description for the software source. Avoid entering confidential information.
934
1070
  """
935
1071
  return pulumi.get(self, "description")
936
1072
 
@@ -938,7 +1074,7 @@ class SoftwareSource(pulumi.CustomResource):
938
1074
  @pulumi.getter(name="displayName")
939
1075
  def display_name(self) -> pulumi.Output[str]:
940
1076
  """
941
- (Updatable) User friendly name.
1077
+ (Updatable) User-friendly name.
942
1078
  """
943
1079
  return pulumi.get(self, "display_name")
944
1080
 
@@ -974,14 +1110,46 @@ class SoftwareSource(pulumi.CustomResource):
974
1110
  """
975
1111
  return pulumi.get(self, "gpg_key_url")
976
1112
 
1113
+ @property
1114
+ @pulumi.getter(name="isAutoResolveDependencies")
1115
+ def is_auto_resolve_dependencies(self) -> pulumi.Output[bool]:
1116
+ """
1117
+ (Updatable) Indicates whether the service should automatically resolve package dependencies when including specific packages in the software source.
1118
+ """
1119
+ return pulumi.get(self, "is_auto_resolve_dependencies")
1120
+
977
1121
  @property
978
1122
  @pulumi.getter(name="isAutomaticallyUpdated")
979
1123
  def is_automatically_updated(self) -> pulumi.Output[bool]:
980
1124
  """
981
- (Updatable) Indicates whether service should automatically update the custom software source for the user.
1125
+ (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.
982
1126
  """
983
1127
  return pulumi.get(self, "is_automatically_updated")
984
1128
 
1129
+ @property
1130
+ @pulumi.getter(name="isCreatedFromPackageList")
1131
+ def is_created_from_package_list(self) -> pulumi.Output[bool]:
1132
+ """
1133
+ Indicates whether the service should create the software source from a list of packages provided by the user.
1134
+ """
1135
+ return pulumi.get(self, "is_created_from_package_list")
1136
+
1137
+ @property
1138
+ @pulumi.getter(name="isMandatoryForAutonomousLinux")
1139
+ def is_mandatory_for_autonomous_linux(self) -> pulumi.Output[bool]:
1140
+ """
1141
+ Indicates whether the software source is required for the Autonomous Linux service.
1142
+ """
1143
+ return pulumi.get(self, "is_mandatory_for_autonomous_linux")
1144
+
1145
+ @property
1146
+ @pulumi.getter(name="originSoftwareSourceId")
1147
+ def origin_software_source_id(self) -> pulumi.Output[str]:
1148
+ """
1149
+ 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.
1150
+ """
1151
+ return pulumi.get(self, "origin_software_source_id")
1152
+
985
1153
  @property
986
1154
  @pulumi.getter(name="osFamily")
987
1155
  def os_family(self) -> pulumi.Output[str]:
@@ -994,23 +1162,39 @@ class SoftwareSource(pulumi.CustomResource):
994
1162
  @pulumi.getter(name="packageCount")
995
1163
  def package_count(self) -> pulumi.Output[str]:
996
1164
  """
997
- Number of packages.
1165
+ Number of packages the software source contains.
998
1166
  """
999
1167
  return pulumi.get(self, "package_count")
1000
1168
 
1169
+ @property
1170
+ @pulumi.getter
1171
+ def packages(self) -> pulumi.Output[Sequence[str]]:
1172
+ """
1173
+ 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.
1174
+ """
1175
+ return pulumi.get(self, "packages")
1176
+
1001
1177
  @property
1002
1178
  @pulumi.getter(name="repoId")
1003
1179
  def repo_id(self) -> pulumi.Output[str]:
1004
1180
  """
1005
- The Repo ID for the software source.
1181
+ The repository ID for the software source.
1006
1182
  """
1007
1183
  return pulumi.get(self, "repo_id")
1008
1184
 
1185
+ @property
1186
+ @pulumi.getter
1187
+ def size(self) -> pulumi.Output[float]:
1188
+ """
1189
+ The size of the software source in gigabytes (GB).
1190
+ """
1191
+ return pulumi.get(self, "size")
1192
+
1009
1193
  @property
1010
1194
  @pulumi.getter(name="softwareSourceType")
1011
1195
  def software_source_type(self) -> pulumi.Output[str]:
1012
1196
  """
1013
- (Updatable) Type of the software source.
1197
+ (Updatable) Type of software source.
1014
1198
  """
1015
1199
  return pulumi.get(self, "software_source_type")
1016
1200
 
@@ -1042,7 +1226,7 @@ class SoftwareSource(pulumi.CustomResource):
1042
1226
  @pulumi.getter(name="timeCreated")
1043
1227
  def time_created(self) -> pulumi.Output[str]:
1044
1228
  """
1045
- The date and time the software source was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
1229
+ The date and time the software source was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
1046
1230
  """
1047
1231
  return pulumi.get(self, "time_created")
1048
1232
 
@@ -1050,7 +1234,7 @@ class SoftwareSource(pulumi.CustomResource):
1050
1234
  @pulumi.getter
1051
1235
  def url(self) -> pulumi.Output[str]:
1052
1236
  """
1053
- URL for the repository.
1237
+ URL for the repository. For vendor software sources, this is the URL to the regional yum server. For custom software sources, this is 'custom/<repoId>'.
1054
1238
  """
1055
1239
  return pulumi.get(self, "url")
1056
1240