pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,298 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['ManagementStationAssociateManagedInstancesManagementArgs', 'ManagementStationAssociateManagedInstancesManagement']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class ManagementStationAssociateManagedInstancesManagementArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
managed_instances: pulumi.Input[Sequence[pulumi.Input[str]]],
|
25
|
+
management_station_id: pulumi.Input[str],
|
26
|
+
work_request_details: Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']] = None):
|
27
|
+
"""
|
28
|
+
The set of arguments for constructing a ManagementStationAssociateManagedInstancesManagement resource.
|
29
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] managed_instances: List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
30
|
+
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
31
|
+
:param pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs'] work_request_details: Provides the name and description of the job.
|
32
|
+
"""
|
33
|
+
pulumi.set(__self__, "managed_instances", managed_instances)
|
34
|
+
pulumi.set(__self__, "management_station_id", management_station_id)
|
35
|
+
if work_request_details is not None:
|
36
|
+
pulumi.set(__self__, "work_request_details", work_request_details)
|
37
|
+
|
38
|
+
@property
|
39
|
+
@pulumi.getter(name="managedInstances")
|
40
|
+
def managed_instances(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
41
|
+
"""
|
42
|
+
List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
43
|
+
"""
|
44
|
+
return pulumi.get(self, "managed_instances")
|
45
|
+
|
46
|
+
@managed_instances.setter
|
47
|
+
def managed_instances(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
48
|
+
pulumi.set(self, "managed_instances", value)
|
49
|
+
|
50
|
+
@property
|
51
|
+
@pulumi.getter(name="managementStationId")
|
52
|
+
def management_station_id(self) -> pulumi.Input[str]:
|
53
|
+
"""
|
54
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
55
|
+
"""
|
56
|
+
return pulumi.get(self, "management_station_id")
|
57
|
+
|
58
|
+
@management_station_id.setter
|
59
|
+
def management_station_id(self, value: pulumi.Input[str]):
|
60
|
+
pulumi.set(self, "management_station_id", value)
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="workRequestDetails")
|
64
|
+
def work_request_details(self) -> Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']]:
|
65
|
+
"""
|
66
|
+
Provides the name and description of the job.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "work_request_details")
|
69
|
+
|
70
|
+
@work_request_details.setter
|
71
|
+
def work_request_details(self, value: Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']]):
|
72
|
+
pulumi.set(self, "work_request_details", value)
|
73
|
+
|
74
|
+
|
75
|
+
@pulumi.input_type
|
76
|
+
class _ManagementStationAssociateManagedInstancesManagementState:
|
77
|
+
def __init__(__self__, *,
|
78
|
+
managed_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
79
|
+
management_station_id: Optional[pulumi.Input[str]] = None,
|
80
|
+
work_request_details: Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']] = None):
|
81
|
+
"""
|
82
|
+
Input properties used for looking up and filtering ManagementStationAssociateManagedInstancesManagement resources.
|
83
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] managed_instances: List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
84
|
+
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
85
|
+
:param pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs'] work_request_details: Provides the name and description of the job.
|
86
|
+
"""
|
87
|
+
if managed_instances is not None:
|
88
|
+
pulumi.set(__self__, "managed_instances", managed_instances)
|
89
|
+
if management_station_id is not None:
|
90
|
+
pulumi.set(__self__, "management_station_id", management_station_id)
|
91
|
+
if work_request_details is not None:
|
92
|
+
pulumi.set(__self__, "work_request_details", work_request_details)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="managedInstances")
|
96
|
+
def managed_instances(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
97
|
+
"""
|
98
|
+
List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "managed_instances")
|
101
|
+
|
102
|
+
@managed_instances.setter
|
103
|
+
def managed_instances(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
104
|
+
pulumi.set(self, "managed_instances", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="managementStationId")
|
108
|
+
def management_station_id(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
"""
|
110
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "management_station_id")
|
113
|
+
|
114
|
+
@management_station_id.setter
|
115
|
+
def management_station_id(self, value: Optional[pulumi.Input[str]]):
|
116
|
+
pulumi.set(self, "management_station_id", value)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="workRequestDetails")
|
120
|
+
def work_request_details(self) -> Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']]:
|
121
|
+
"""
|
122
|
+
Provides the name and description of the job.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "work_request_details")
|
125
|
+
|
126
|
+
@work_request_details.setter
|
127
|
+
def work_request_details(self, value: Optional[pulumi.Input['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs']]):
|
128
|
+
pulumi.set(self, "work_request_details", value)
|
129
|
+
|
130
|
+
|
131
|
+
class ManagementStationAssociateManagedInstancesManagement(pulumi.CustomResource):
|
132
|
+
@overload
|
133
|
+
def __init__(__self__,
|
134
|
+
resource_name: str,
|
135
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
136
|
+
managed_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
137
|
+
management_station_id: Optional[pulumi.Input[str]] = None,
|
138
|
+
work_request_details: Optional[pulumi.Input[Union['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs', 'ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgsDict']]] = None,
|
139
|
+
__props__=None):
|
140
|
+
"""
|
141
|
+
This resource provides the Management Station Associate Managed Instances Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
142
|
+
|
143
|
+
Associates managed instances to the specified management station
|
144
|
+
|
145
|
+
## Example Usage
|
146
|
+
|
147
|
+
```python
|
148
|
+
import pulumi
|
149
|
+
import pulumi_oci as oci
|
150
|
+
|
151
|
+
test_management_station_associate_managed_instances_management = oci.os_management_hub.ManagementStationAssociateManagedInstancesManagement("test_management_station_associate_managed_instances_management",
|
152
|
+
managed_instances=management_station_associate_managed_instances_management_managed_instances,
|
153
|
+
management_station_id=test_management_station["id"],
|
154
|
+
work_request_details={
|
155
|
+
"description": management_station_associate_managed_instances_management_work_request_details_description,
|
156
|
+
"display_name": management_station_associate_managed_instances_management_work_request_details_display_name,
|
157
|
+
})
|
158
|
+
```
|
159
|
+
|
160
|
+
## Import
|
161
|
+
|
162
|
+
ManagementStationAssociateManagedInstancesManagement can be imported using the `id`, e.g.
|
163
|
+
|
164
|
+
```sh
|
165
|
+
$ pulumi import oci:OsManagementHub/managementStationAssociateManagedInstancesManagement:ManagementStationAssociateManagedInstancesManagement test_management_station_associate_managed_instances_management "id"
|
166
|
+
```
|
167
|
+
|
168
|
+
:param str resource_name: The name of the resource.
|
169
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
170
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] managed_instances: List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
171
|
+
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
172
|
+
:param pulumi.Input[Union['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs', 'ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgsDict']] work_request_details: Provides the name and description of the job.
|
173
|
+
"""
|
174
|
+
...
|
175
|
+
@overload
|
176
|
+
def __init__(__self__,
|
177
|
+
resource_name: str,
|
178
|
+
args: ManagementStationAssociateManagedInstancesManagementArgs,
|
179
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
180
|
+
"""
|
181
|
+
This resource provides the Management Station Associate Managed Instances Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
182
|
+
|
183
|
+
Associates managed instances to the specified management station
|
184
|
+
|
185
|
+
## Example Usage
|
186
|
+
|
187
|
+
```python
|
188
|
+
import pulumi
|
189
|
+
import pulumi_oci as oci
|
190
|
+
|
191
|
+
test_management_station_associate_managed_instances_management = oci.os_management_hub.ManagementStationAssociateManagedInstancesManagement("test_management_station_associate_managed_instances_management",
|
192
|
+
managed_instances=management_station_associate_managed_instances_management_managed_instances,
|
193
|
+
management_station_id=test_management_station["id"],
|
194
|
+
work_request_details={
|
195
|
+
"description": management_station_associate_managed_instances_management_work_request_details_description,
|
196
|
+
"display_name": management_station_associate_managed_instances_management_work_request_details_display_name,
|
197
|
+
})
|
198
|
+
```
|
199
|
+
|
200
|
+
## Import
|
201
|
+
|
202
|
+
ManagementStationAssociateManagedInstancesManagement can be imported using the `id`, e.g.
|
203
|
+
|
204
|
+
```sh
|
205
|
+
$ pulumi import oci:OsManagementHub/managementStationAssociateManagedInstancesManagement:ManagementStationAssociateManagedInstancesManagement test_management_station_associate_managed_instances_management "id"
|
206
|
+
```
|
207
|
+
|
208
|
+
:param str resource_name: The name of the resource.
|
209
|
+
:param ManagementStationAssociateManagedInstancesManagementArgs args: The arguments to use to populate this resource's properties.
|
210
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
211
|
+
"""
|
212
|
+
...
|
213
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
214
|
+
resource_args, opts = _utilities.get_resource_args_opts(ManagementStationAssociateManagedInstancesManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
|
215
|
+
if resource_args is not None:
|
216
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
217
|
+
else:
|
218
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
219
|
+
|
220
|
+
def _internal_init(__self__,
|
221
|
+
resource_name: str,
|
222
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
223
|
+
managed_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
224
|
+
management_station_id: Optional[pulumi.Input[str]] = None,
|
225
|
+
work_request_details: Optional[pulumi.Input[Union['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs', 'ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgsDict']]] = None,
|
226
|
+
__props__=None):
|
227
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
228
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
229
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
230
|
+
if opts.id is None:
|
231
|
+
if __props__ is not None:
|
232
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
233
|
+
__props__ = ManagementStationAssociateManagedInstancesManagementArgs.__new__(ManagementStationAssociateManagedInstancesManagementArgs)
|
234
|
+
|
235
|
+
if managed_instances is None and not opts.urn:
|
236
|
+
raise TypeError("Missing required property 'managed_instances'")
|
237
|
+
__props__.__dict__["managed_instances"] = managed_instances
|
238
|
+
if management_station_id is None and not opts.urn:
|
239
|
+
raise TypeError("Missing required property 'management_station_id'")
|
240
|
+
__props__.__dict__["management_station_id"] = management_station_id
|
241
|
+
__props__.__dict__["work_request_details"] = work_request_details
|
242
|
+
super(ManagementStationAssociateManagedInstancesManagement, __self__).__init__(
|
243
|
+
'oci:OsManagementHub/managementStationAssociateManagedInstancesManagement:ManagementStationAssociateManagedInstancesManagement',
|
244
|
+
resource_name,
|
245
|
+
__props__,
|
246
|
+
opts)
|
247
|
+
|
248
|
+
@staticmethod
|
249
|
+
def get(resource_name: str,
|
250
|
+
id: pulumi.Input[str],
|
251
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
252
|
+
managed_instances: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
253
|
+
management_station_id: Optional[pulumi.Input[str]] = None,
|
254
|
+
work_request_details: Optional[pulumi.Input[Union['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs', 'ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgsDict']]] = None) -> 'ManagementStationAssociateManagedInstancesManagement':
|
255
|
+
"""
|
256
|
+
Get an existing ManagementStationAssociateManagedInstancesManagement resource's state with the given name, id, and optional extra
|
257
|
+
properties used to qualify the lookup.
|
258
|
+
|
259
|
+
:param str resource_name: The unique name of the resulting resource.
|
260
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
261
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
262
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] managed_instances: List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
263
|
+
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
264
|
+
:param pulumi.Input[Union['ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgs', 'ManagementStationAssociateManagedInstancesManagementWorkRequestDetailsArgsDict']] work_request_details: Provides the name and description of the job.
|
265
|
+
"""
|
266
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
267
|
+
|
268
|
+
__props__ = _ManagementStationAssociateManagedInstancesManagementState.__new__(_ManagementStationAssociateManagedInstancesManagementState)
|
269
|
+
|
270
|
+
__props__.__dict__["managed_instances"] = managed_instances
|
271
|
+
__props__.__dict__["management_station_id"] = management_station_id
|
272
|
+
__props__.__dict__["work_request_details"] = work_request_details
|
273
|
+
return ManagementStationAssociateManagedInstancesManagement(resource_name, opts=opts, __props__=__props__)
|
274
|
+
|
275
|
+
@property
|
276
|
+
@pulumi.getter(name="managedInstances")
|
277
|
+
def managed_instances(self) -> pulumi.Output[Sequence[str]]:
|
278
|
+
"""
|
279
|
+
List of managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to associate to the management station.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "managed_instances")
|
282
|
+
|
283
|
+
@property
|
284
|
+
@pulumi.getter(name="managementStationId")
|
285
|
+
def management_station_id(self) -> pulumi.Output[str]:
|
286
|
+
"""
|
287
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "management_station_id")
|
290
|
+
|
291
|
+
@property
|
292
|
+
@pulumi.getter(name="workRequestDetails")
|
293
|
+
def work_request_details(self) -> pulumi.Output['outputs.ManagementStationAssociateManagedInstancesManagementWorkRequestDetails']:
|
294
|
+
"""
|
295
|
+
Provides the name and description of the job.
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "work_request_details")
|
298
|
+
|
@@ -89,7 +89,7 @@ class ManagementStationRefreshManagement(pulumi.CustomResource):
|
|
89
89
|
"""
|
90
90
|
This resource provides the Management Station Refresh Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
91
91
|
|
92
|
-
Refreshes the list of software sources mirrored by the management station
|
92
|
+
Refreshes the list of software sources mirrored by the management station.
|
93
93
|
|
94
94
|
## Example Usage
|
95
95
|
|
@@ -125,7 +125,7 @@ class ManagementStationRefreshManagement(pulumi.CustomResource):
|
|
125
125
|
"""
|
126
126
|
This resource provides the Management Station Refresh Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
127
127
|
|
128
|
-
Refreshes the list of software sources mirrored by the management station
|
128
|
+
Refreshes the list of software sources mirrored by the management station.
|
129
129
|
|
130
130
|
## Example Usage
|
131
131
|
|
@@ -24,7 +24,7 @@ class ManagementStationSynchronizeMirrorsManagementArgs:
|
|
24
24
|
"""
|
25
25
|
The set of arguments for constructing a ManagementStationSynchronizeMirrorsManagement resource.
|
26
26
|
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
27
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of
|
27
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
28
28
|
|
29
29
|
|
30
30
|
** IMPORTANT **
|
@@ -49,7 +49,7 @@ class ManagementStationSynchronizeMirrorsManagementArgs:
|
|
49
49
|
@pulumi.getter(name="softwareSourceLists")
|
50
50
|
def software_source_lists(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
51
51
|
"""
|
52
|
-
List of
|
52
|
+
List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
53
53
|
|
54
54
|
|
55
55
|
** IMPORTANT **
|
@@ -70,7 +70,7 @@ class _ManagementStationSynchronizeMirrorsManagementState:
|
|
70
70
|
"""
|
71
71
|
Input properties used for looking up and filtering ManagementStationSynchronizeMirrorsManagement resources.
|
72
72
|
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
73
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of
|
73
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
74
74
|
|
75
75
|
|
76
76
|
** IMPORTANT **
|
@@ -97,7 +97,7 @@ class _ManagementStationSynchronizeMirrorsManagementState:
|
|
97
97
|
@pulumi.getter(name="softwareSourceLists")
|
98
98
|
def software_source_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
99
99
|
"""
|
100
|
-
List of
|
100
|
+
List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
101
101
|
|
102
102
|
|
103
103
|
** IMPORTANT **
|
@@ -121,7 +121,7 @@ class ManagementStationSynchronizeMirrorsManagement(pulumi.CustomResource):
|
|
121
121
|
"""
|
122
122
|
This resource provides the Management Station Synchronize Mirrors Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
123
123
|
|
124
|
-
Synchronize the specified software sources
|
124
|
+
Synchronize the specified software sources mirrored on the management station.
|
125
125
|
|
126
126
|
## Example Usage
|
127
127
|
|
@@ -145,7 +145,7 @@ class ManagementStationSynchronizeMirrorsManagement(pulumi.CustomResource):
|
|
145
145
|
:param str resource_name: The name of the resource.
|
146
146
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
147
147
|
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
148
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of
|
148
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
149
149
|
|
150
150
|
|
151
151
|
** IMPORTANT **
|
@@ -160,7 +160,7 @@ class ManagementStationSynchronizeMirrorsManagement(pulumi.CustomResource):
|
|
160
160
|
"""
|
161
161
|
This resource provides the Management Station Synchronize Mirrors Management resource in Oracle Cloud Infrastructure Os Management Hub service.
|
162
162
|
|
163
|
-
Synchronize the specified software sources
|
163
|
+
Synchronize the specified software sources mirrored on the management station.
|
164
164
|
|
165
165
|
## Example Usage
|
166
166
|
|
@@ -233,7 +233,7 @@ class ManagementStationSynchronizeMirrorsManagement(pulumi.CustomResource):
|
|
233
233
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
234
234
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
235
235
|
:param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station.
|
236
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of
|
236
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_lists: List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
237
237
|
|
238
238
|
|
239
239
|
** IMPORTANT **
|
@@ -259,7 +259,7 @@ class ManagementStationSynchronizeMirrorsManagement(pulumi.CustomResource):
|
|
259
259
|
@pulumi.getter(name="softwareSourceLists")
|
260
260
|
def software_source_lists(self) -> pulumi.Output[Sequence[str]]:
|
261
261
|
"""
|
262
|
-
List of
|
262
|
+
List of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to synchronize.
|
263
263
|
|
264
264
|
|
265
265
|
** IMPORTANT **
|