pulumi-oci 1.35.0a1715356469__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.
- pulumi_oci/__init__.py +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +192 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +418 -0
- pulumi_oci/database/vm_cluster.py +55 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +16 -0
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/outputs.py +14 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +119 -64
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -121,8 +121,8 @@ def get_software_source_module_stream_profiles(filters: Optional[Sequence[pulumi
|
|
121
121
|
"""
|
122
122
|
This data source provides the list of Software Source Module Stream Profiles in Oracle Cloud Infrastructure Os Management Hub service.
|
123
123
|
|
124
|
-
Lists module stream profiles from the specified software source OCID. Filter the list against a variety of
|
125
|
-
criteria including but not limited to its module name, stream name, and
|
124
|
+
Lists module stream profiles from the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Filter the list against a variety of
|
125
|
+
criteria including but not limited to its module name, stream name, and profile name.
|
126
126
|
|
127
127
|
## Example Usage
|
128
128
|
|
@@ -139,8 +139,8 @@ def get_software_source_module_stream_profiles(filters: Optional[Sequence[pulumi
|
|
139
139
|
|
140
140
|
:param str module_name: The name of a module. This parameter is required if a streamName is specified.
|
141
141
|
:param str name: The name of the entity to be queried.
|
142
|
-
:param str software_source_id: The software source
|
143
|
-
:param str stream_name: The name of the stream
|
142
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
143
|
+
:param str stream_name: The name of the module stream. This parameter is required if a profile name is specified.
|
144
144
|
"""
|
145
145
|
__args__ = dict()
|
146
146
|
__args__['filters'] = filters
|
@@ -171,8 +171,8 @@ def get_software_source_module_stream_profiles_output(filters: Optional[pulumi.I
|
|
171
171
|
"""
|
172
172
|
This data source provides the list of Software Source Module Stream Profiles in Oracle Cloud Infrastructure Os Management Hub service.
|
173
173
|
|
174
|
-
Lists module stream profiles from the specified software source OCID. Filter the list against a variety of
|
175
|
-
criteria including but not limited to its module name, stream name, and
|
174
|
+
Lists module stream profiles from the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Filter the list against a variety of
|
175
|
+
criteria including but not limited to its module name, stream name, and profile name.
|
176
176
|
|
177
177
|
## Example Usage
|
178
178
|
|
@@ -189,7 +189,7 @@ def get_software_source_module_stream_profiles_output(filters: Optional[pulumi.I
|
|
189
189
|
|
190
190
|
:param str module_name: The name of a module. This parameter is required if a streamName is specified.
|
191
191
|
:param str name: The name of the entity to be queried.
|
192
|
-
:param str software_source_id: The software source
|
193
|
-
:param str stream_name: The name of the stream
|
192
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
193
|
+
:param str stream_name: The name of the module stream. This parameter is required if a profile name is specified.
|
194
194
|
"""
|
195
195
|
...
|
@@ -103,7 +103,7 @@ class GetSoftwareSourceModuleStreamsResult:
|
|
103
103
|
@pulumi.getter(name="softwareSourceId")
|
104
104
|
def software_source_id(self) -> str:
|
105
105
|
"""
|
106
|
-
The OCID of the software source that provides this module stream.
|
106
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source that provides this module stream.
|
107
107
|
"""
|
108
108
|
return pulumi.get(self, "software_source_id")
|
109
109
|
|
@@ -134,8 +134,8 @@ def get_software_source_module_streams(filters: Optional[Sequence[pulumi.InputTy
|
|
134
134
|
"""
|
135
135
|
This data source provides the list of Software Source Module Streams in Oracle Cloud Infrastructure Os Management Hub service.
|
136
136
|
|
137
|
-
Lists module streams from the specified software source OCID.
|
138
|
-
criteria including but not limited to its module name and (stream) name.
|
137
|
+
Lists module streams from the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
138
|
+
Filter the list against a variety of criteria including but not limited to its module name and (stream) name.
|
139
139
|
|
140
140
|
## Example Usage
|
141
141
|
|
@@ -151,11 +151,11 @@ def get_software_source_module_streams(filters: Optional[Sequence[pulumi.InputTy
|
|
151
151
|
```
|
152
152
|
|
153
153
|
|
154
|
-
:param bool is_latest:
|
154
|
+
:param bool is_latest: Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
155
155
|
:param str module_name: The name of a module. This parameter is required if a streamName is specified.
|
156
156
|
:param str module_name_contains: A filter to return resources that may partially match the module name given.
|
157
157
|
:param str name: The name of the entity to be queried.
|
158
|
-
:param str software_source_id: The software source
|
158
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
159
159
|
"""
|
160
160
|
__args__ = dict()
|
161
161
|
__args__['filters'] = filters
|
@@ -189,8 +189,8 @@ def get_software_source_module_streams_output(filters: Optional[pulumi.Input[Opt
|
|
189
189
|
"""
|
190
190
|
This data source provides the list of Software Source Module Streams in Oracle Cloud Infrastructure Os Management Hub service.
|
191
191
|
|
192
|
-
Lists module streams from the specified software source OCID.
|
193
|
-
criteria including but not limited to its module name and (stream) name.
|
192
|
+
Lists module streams from the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
193
|
+
Filter the list against a variety of criteria including but not limited to its module name and (stream) name.
|
194
194
|
|
195
195
|
## Example Usage
|
196
196
|
|
@@ -206,10 +206,10 @@ def get_software_source_module_streams_output(filters: Optional[pulumi.Input[Opt
|
|
206
206
|
```
|
207
207
|
|
208
208
|
|
209
|
-
:param bool is_latest:
|
209
|
+
:param bool is_latest: Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
210
210
|
:param str module_name: The name of a module. This parameter is required if a streamName is specified.
|
211
211
|
:param str module_name_contains: A filter to return resources that may partially match the module name given.
|
212
212
|
:param str name: The name of the entity to be queried.
|
213
|
-
:param str software_source_id: The software source
|
213
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
214
214
|
"""
|
215
215
|
...
|
@@ -60,7 +60,7 @@ class GetSoftwareSourcePackageGroupResult:
|
|
60
60
|
@pulumi.getter
|
61
61
|
def description(self) -> str:
|
62
62
|
"""
|
63
|
-
|
63
|
+
Description of the package group.
|
64
64
|
"""
|
65
65
|
return pulumi.get(self, "description")
|
66
66
|
|
@@ -76,7 +76,7 @@ class GetSoftwareSourcePackageGroupResult:
|
|
76
76
|
@pulumi.getter(name="groupType")
|
77
77
|
def group_type(self) -> str:
|
78
78
|
"""
|
79
|
-
Indicates if this is a group, category or environment.
|
79
|
+
Indicates if this is a group, category, or environment.
|
80
80
|
"""
|
81
81
|
return pulumi.get(self, "group_type")
|
82
82
|
|
@@ -100,7 +100,7 @@ class GetSoftwareSourcePackageGroupResult:
|
|
100
100
|
@pulumi.getter(name="isUserVisible")
|
101
101
|
def is_user_visible(self) -> bool:
|
102
102
|
"""
|
103
|
-
Indicates if this package group is visible
|
103
|
+
Indicates if this package group is visible to users.
|
104
104
|
"""
|
105
105
|
return pulumi.get(self, "is_user_visible")
|
106
106
|
|
@@ -129,7 +129,7 @@ class GetSoftwareSourcePackageGroupResult:
|
|
129
129
|
@pulumi.getter
|
130
130
|
def repositories(self) -> Sequence[str]:
|
131
131
|
"""
|
132
|
-
|
132
|
+
The repository IDs of the package group's repositories.
|
133
133
|
"""
|
134
134
|
return pulumi.get(self, "repositories")
|
135
135
|
|
@@ -164,7 +164,7 @@ def get_software_source_package_group(package_group_id: Optional[str] = None,
|
|
164
164
|
"""
|
165
165
|
This data source provides details about a specific Software Source Package Group resource in Oracle Cloud Infrastructure Os Management Hub service.
|
166
166
|
|
167
|
-
|
167
|
+
Returns information about the specified package group from a software source.
|
168
168
|
|
169
169
|
## Example Usage
|
170
170
|
|
@@ -178,7 +178,7 @@ def get_software_source_package_group(package_group_id: Optional[str] = None,
|
|
178
178
|
|
179
179
|
|
180
180
|
:param str package_group_id: The unique package group identifier.
|
181
|
-
:param str software_source_id: The software source
|
181
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
182
182
|
"""
|
183
183
|
__args__ = dict()
|
184
184
|
__args__['packageGroupId'] = package_group_id
|
@@ -207,7 +207,7 @@ def get_software_source_package_group_output(package_group_id: Optional[pulumi.I
|
|
207
207
|
"""
|
208
208
|
This data source provides details about a specific Software Source Package Group resource in Oracle Cloud Infrastructure Os Management Hub service.
|
209
209
|
|
210
|
-
|
210
|
+
Returns information about the specified package group from a software source.
|
211
211
|
|
212
212
|
## Example Usage
|
213
213
|
|
@@ -221,6 +221,6 @@ def get_software_source_package_group_output(package_group_id: Optional[pulumi.I
|
|
221
221
|
|
222
222
|
|
223
223
|
:param str package_group_id: The unique package group identifier.
|
224
|
-
:param str software_source_id: The software source
|
224
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
225
225
|
"""
|
226
226
|
...
|
@@ -63,7 +63,7 @@ class GetSoftwareSourcePackageGroupsResult:
|
|
63
63
|
@pulumi.getter(name="groupTypes")
|
64
64
|
def group_types(self) -> Optional[Sequence[str]]:
|
65
65
|
"""
|
66
|
-
Indicates if this is a group, category or environment.
|
66
|
+
Indicates if this is a group, category, or environment.
|
67
67
|
"""
|
68
68
|
return pulumi.get(self, "group_types")
|
69
69
|
|
@@ -128,7 +128,7 @@ def get_software_source_package_groups(compartment_id: Optional[str] = None,
|
|
128
128
|
"""
|
129
129
|
This data source provides the list of Software Source Package Groups in Oracle Cloud Infrastructure Os Management Hub service.
|
130
130
|
|
131
|
-
Lists package groups that
|
131
|
+
Lists package groups that are associated with the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Filter the list against a
|
132
132
|
variety of criteria including but not limited to its name, and package group type.
|
133
133
|
|
134
134
|
## Example Usage
|
@@ -145,11 +145,11 @@ def get_software_source_package_groups(compartment_id: Optional[str] = None,
|
|
145
145
|
```
|
146
146
|
|
147
147
|
|
148
|
-
:param str compartment_id: The OCID of the compartment that contains the resources to list.
|
148
|
+
:param str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
149
149
|
:param Sequence[str] group_types: A filter to return only package groups of the specified type.
|
150
150
|
:param str name: The name of the entity to be queried.
|
151
151
|
:param str name_contains: A filter to return resources that may partially match the name given.
|
152
|
-
:param str software_source_id: The software source
|
152
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
153
153
|
"""
|
154
154
|
__args__ = dict()
|
155
155
|
__args__['compartmentId'] = compartment_id
|
@@ -183,7 +183,7 @@ def get_software_source_package_groups_output(compartment_id: Optional[pulumi.In
|
|
183
183
|
"""
|
184
184
|
This data source provides the list of Software Source Package Groups in Oracle Cloud Infrastructure Os Management Hub service.
|
185
185
|
|
186
|
-
Lists package groups that
|
186
|
+
Lists package groups that are associated with the specified software source [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Filter the list against a
|
187
187
|
variety of criteria including but not limited to its name, and package group type.
|
188
188
|
|
189
189
|
## Example Usage
|
@@ -200,10 +200,10 @@ def get_software_source_package_groups_output(compartment_id: Optional[pulumi.In
|
|
200
200
|
```
|
201
201
|
|
202
202
|
|
203
|
-
:param str compartment_id: The OCID of the compartment that contains the resources to list.
|
203
|
+
:param str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
204
204
|
:param Sequence[str] group_types: A filter to return only package groups of the specified type.
|
205
205
|
:param str name: The name of the entity to be queried.
|
206
206
|
:param str name_contains: A filter to return resources that may partially match the name given.
|
207
|
-
:param str software_source_id: The software source
|
207
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
208
208
|
"""
|
209
209
|
...
|
@@ -22,7 +22,7 @@ class GetSoftwareSourceSoftwarePackageResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getSoftwareSourceSoftwarePackage.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, architecture=None, checksum=None, checksum_type=None, dependencies=None, description=None, display_name=None, files=None, id=None, is_latest=None, last_modified_date=None, name=None, size_in_bytes=None, software_package_name=None, software_source_id=None, software_sources=None, type=None, version=None):
|
25
|
+
def __init__(__self__, architecture=None, checksum=None, checksum_type=None, dependencies=None, description=None, display_name=None, files=None, id=None, is_latest=None, last_modified_date=None, name=None, os_families=None, size_in_bytes=None, software_package_name=None, software_source_id=None, software_sources=None, type=None, version=None):
|
26
26
|
if architecture and not isinstance(architecture, str):
|
27
27
|
raise TypeError("Expected argument 'architecture' to be a str")
|
28
28
|
pulumi.set(__self__, "architecture", architecture)
|
@@ -56,6 +56,9 @@ class GetSoftwareSourceSoftwarePackageResult:
|
|
56
56
|
if name and not isinstance(name, str):
|
57
57
|
raise TypeError("Expected argument 'name' to be a str")
|
58
58
|
pulumi.set(__self__, "name", name)
|
59
|
+
if os_families and not isinstance(os_families, list):
|
60
|
+
raise TypeError("Expected argument 'os_families' to be a list")
|
61
|
+
pulumi.set(__self__, "os_families", os_families)
|
59
62
|
if size_in_bytes and not isinstance(size_in_bytes, str):
|
60
63
|
raise TypeError("Expected argument 'size_in_bytes' to be a str")
|
61
64
|
pulumi.set(__self__, "size_in_bytes", size_in_bytes)
|
@@ -151,7 +154,7 @@ class GetSoftwareSourceSoftwarePackageResult:
|
|
151
154
|
@pulumi.getter(name="lastModifiedDate")
|
152
155
|
def last_modified_date(self) -> str:
|
153
156
|
"""
|
154
|
-
|
157
|
+
The date and time the package was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
155
158
|
"""
|
156
159
|
return pulumi.get(self, "last_modified_date")
|
157
160
|
|
@@ -159,10 +162,18 @@ class GetSoftwareSourceSoftwarePackageResult:
|
|
159
162
|
@pulumi.getter
|
160
163
|
def name(self) -> str:
|
161
164
|
"""
|
162
|
-
Unique identifier for the package.
|
165
|
+
Unique identifier for the package. Note that this is not an OCID.
|
163
166
|
"""
|
164
167
|
return pulumi.get(self, "name")
|
165
168
|
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="osFamilies")
|
171
|
+
def os_families(self) -> Sequence[str]:
|
172
|
+
"""
|
173
|
+
The OS families the package belongs to.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "os_families")
|
176
|
+
|
166
177
|
@property
|
167
178
|
@pulumi.getter(name="sizeInBytes")
|
168
179
|
def size_in_bytes(self) -> str:
|
@@ -185,7 +196,7 @@ class GetSoftwareSourceSoftwarePackageResult:
|
|
185
196
|
@pulumi.getter(name="softwareSources")
|
186
197
|
def software_sources(self) -> Sequence['outputs.GetSoftwareSourceSoftwarePackageSoftwareSourceResult']:
|
187
198
|
"""
|
188
|
-
List of software sources that provide the software package.
|
199
|
+
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
|
189
200
|
"""
|
190
201
|
return pulumi.get(self, "software_sources")
|
191
202
|
|
@@ -223,6 +234,7 @@ class AwaitableGetSoftwareSourceSoftwarePackageResult(GetSoftwareSourceSoftwareP
|
|
223
234
|
is_latest=self.is_latest,
|
224
235
|
last_modified_date=self.last_modified_date,
|
225
236
|
name=self.name,
|
237
|
+
os_families=self.os_families,
|
226
238
|
size_in_bytes=self.size_in_bytes,
|
227
239
|
software_package_name=self.software_package_name,
|
228
240
|
software_source_id=self.software_source_id,
|
@@ -237,7 +249,7 @@ def get_software_source_software_package(software_package_name: Optional[str] =
|
|
237
249
|
"""
|
238
250
|
This data source provides details about a specific Software Source Software Package resource in Oracle Cloud Infrastructure Os Management Hub service.
|
239
251
|
|
240
|
-
|
252
|
+
Returns information about the specified software package.
|
241
253
|
|
242
254
|
## Example Usage
|
243
255
|
|
@@ -245,13 +257,13 @@ def get_software_source_software_package(software_package_name: Optional[str] =
|
|
245
257
|
import pulumi
|
246
258
|
import pulumi_oci as oci
|
247
259
|
|
248
|
-
test_software_source_software_package = oci.OsManagementHub.get_software_source_software_package(software_package_name=
|
260
|
+
test_software_source_software_package = oci.OsManagementHub.get_software_source_software_package(software_package_name=test_software_package["name"],
|
249
261
|
software_source_id=test_software_source["id"])
|
250
262
|
```
|
251
263
|
|
252
264
|
|
253
265
|
:param str software_package_name: The name of the software package.
|
254
|
-
:param str software_source_id: The software source
|
266
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
255
267
|
"""
|
256
268
|
__args__ = dict()
|
257
269
|
__args__['softwarePackageName'] = software_package_name
|
@@ -271,6 +283,7 @@ def get_software_source_software_package(software_package_name: Optional[str] =
|
|
271
283
|
is_latest=pulumi.get(__ret__, 'is_latest'),
|
272
284
|
last_modified_date=pulumi.get(__ret__, 'last_modified_date'),
|
273
285
|
name=pulumi.get(__ret__, 'name'),
|
286
|
+
os_families=pulumi.get(__ret__, 'os_families'),
|
274
287
|
size_in_bytes=pulumi.get(__ret__, 'size_in_bytes'),
|
275
288
|
software_package_name=pulumi.get(__ret__, 'software_package_name'),
|
276
289
|
software_source_id=pulumi.get(__ret__, 'software_source_id'),
|
@@ -286,7 +299,7 @@ def get_software_source_software_package_output(software_package_name: Optional[
|
|
286
299
|
"""
|
287
300
|
This data source provides details about a specific Software Source Software Package resource in Oracle Cloud Infrastructure Os Management Hub service.
|
288
301
|
|
289
|
-
|
302
|
+
Returns information about the specified software package.
|
290
303
|
|
291
304
|
## Example Usage
|
292
305
|
|
@@ -294,12 +307,12 @@ def get_software_source_software_package_output(software_package_name: Optional[
|
|
294
307
|
import pulumi
|
295
308
|
import pulumi_oci as oci
|
296
309
|
|
297
|
-
test_software_source_software_package = oci.OsManagementHub.get_software_source_software_package(software_package_name=
|
310
|
+
test_software_source_software_package = oci.OsManagementHub.get_software_source_software_package(software_package_name=test_software_package["name"],
|
298
311
|
software_source_id=test_software_source["id"])
|
299
312
|
```
|
300
313
|
|
301
314
|
|
302
315
|
:param str software_package_name: The name of the software package.
|
303
|
-
:param str software_source_id: The software source
|
316
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
304
317
|
"""
|
305
318
|
...
|
@@ -134,10 +134,10 @@ def get_software_source_software_packages(display_name: Optional[str] = None,
|
|
134
134
|
```
|
135
135
|
|
136
136
|
|
137
|
-
:param str display_name: A
|
137
|
+
:param str display_name: A filter to return resources that match the given user-friendly name.
|
138
138
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
139
|
-
:param bool is_latest:
|
140
|
-
:param str software_source_id: The software source
|
139
|
+
:param bool is_latest: Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
140
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
141
141
|
"""
|
142
142
|
__args__ = dict()
|
143
143
|
__args__['displayName'] = display_name
|
@@ -184,9 +184,9 @@ def get_software_source_software_packages_output(display_name: Optional[pulumi.I
|
|
184
184
|
```
|
185
185
|
|
186
186
|
|
187
|
-
:param str display_name: A
|
187
|
+
:param str display_name: A filter to return resources that match the given user-friendly name.
|
188
188
|
:param str display_name_contains: A filter to return resources that may partially match the given display name.
|
189
|
-
:param bool is_latest:
|
190
|
-
:param str software_source_id: The software source
|
189
|
+
:param bool is_latest: Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
|
190
|
+
:param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source.
|
191
191
|
"""
|
192
192
|
...
|
@@ -109,7 +109,7 @@ def get_software_source_vendors(compartment_id: Optional[str] = None,
|
|
109
109
|
```
|
110
110
|
|
111
111
|
|
112
|
-
:param str compartment_id: The OCID of the compartment
|
112
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
|
113
113
|
:param str name: The name of the entity to be queried.
|
114
114
|
"""
|
115
115
|
__args__ = dict()
|
@@ -149,7 +149,7 @@ def get_software_source_vendors_output(compartment_id: Optional[pulumi.Input[str
|
|
149
149
|
```
|
150
150
|
|
151
151
|
|
152
|
-
:param str compartment_id: The OCID of the compartment
|
152
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
|
153
153
|
:param str name: The name of the entity to be queried.
|
154
154
|
"""
|
155
155
|
...
|