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