pulumi-oci 2.10.0a1726294433__py3-none-any.whl → 2.11.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 +62 -0
- pulumi_oci/bigdataservice/__init__.py +3 -0
- pulumi_oci/bigdataservice/_inputs.py +66 -0
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +136 -2
- pulumi_oci/bigdataservice/bds_instance_resource_principal_configuration.py +524 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configuration.py +236 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configurations.py +176 -0
- pulumi_oci/bigdataservice/outputs.py +175 -0
- pulumi_oci/capacitymanagement/__init__.py +8 -0
- pulumi_oci/capacitymanagement/_inputs.py +465 -3
- pulumi_oci/capacitymanagement/get_internal_namespace_occ_overviews.py +221 -0
- pulumi_oci/capacitymanagement/get_internal_occ_availability_catalogs.py +7 -7
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_blocks.py +247 -0
- pulumi_oci/capacitymanagement/get_namespace_occ_overviews.py +204 -0
- pulumi_oci/capacitymanagement/get_occ_availability_catalog.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_capacity_request.py +15 -2
- pulumi_oci/capacitymanagement/get_occ_capacity_requests.py +25 -5
- pulumi_oci/capacitymanagement/get_occ_customer_group.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_occ_handover_resource_blocks.py +227 -0
- pulumi_oci/capacitymanagement/occ_availability_catalog.py +4 -4
- pulumi_oci/capacitymanagement/occ_capacity_request.py +78 -32
- pulumi_oci/capacitymanagement/occ_customer_group.py +690 -0
- pulumi_oci/capacitymanagement/occ_customer_group_occ_customer.py +412 -0
- pulumi_oci/capacitymanagement/outputs.py +1668 -166
- pulumi_oci/containerengine/__init__.py +1 -0
- pulumi_oci/containerengine/get_cluster.py +327 -0
- pulumi_oci/containerengine/outputs.py +492 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +717 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +804 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +1231 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +301 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +196 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +431 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +233 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +2129 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +7 -0
- pulumi_oci/generativeai/get_model.py +3 -0
- pulumi_oci/generativeai/outputs.py +4 -0
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +742 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/RECORD +55 -25
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1231 @@
|
|
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 pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['FsuCycleArgs', 'FsuCycle']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class FsuCycleArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
compartment_id: pulumi.Input[str],
|
20
|
+
fsu_collection_id: pulumi.Input[str],
|
21
|
+
goal_version_details: pulumi.Input['FsuCycleGoalVersionDetailsArgs'],
|
22
|
+
type: pulumi.Input[str],
|
23
|
+
apply_action_schedule: Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']] = None,
|
24
|
+
batching_strategy: Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']] = None,
|
25
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
|
+
diagnostics_collection: Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']] = None,
|
27
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
28
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
|
+
is_ignore_missing_patches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
30
|
+
is_ignore_patches: Optional[pulumi.Input[bool]] = None,
|
31
|
+
is_keep_placement: Optional[pulumi.Input[bool]] = None,
|
32
|
+
max_drain_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
33
|
+
stage_action_schedule: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']] = None):
|
34
|
+
"""
|
35
|
+
The set of arguments for constructing a FsuCycle resource.
|
36
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
37
|
+
:param pulumi.Input[str] fsu_collection_id: OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
38
|
+
:param pulumi.Input['FsuCycleGoalVersionDetailsArgs'] goal_version_details: (Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
39
|
+
:param pulumi.Input[str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
40
|
+
|
41
|
+
|
42
|
+
** IMPORTANT **
|
43
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
44
|
+
:param pulumi.Input['FsuCycleApplyActionScheduleArgs'] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
45
|
+
:param pulumi.Input['FsuCycleBatchingStrategyArgs'] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
46
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
47
|
+
:param pulumi.Input['FsuCycleDiagnosticsCollectionArgs'] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
48
|
+
:param pulumi.Input[str] display_name: (Updatable) Exadata Fleet Update Cycle display name.
|
49
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
50
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] is_ignore_missing_patches: (Updatable) List of patch IDs to ignore.
|
51
|
+
:param pulumi.Input[bool] is_ignore_patches: (Updatable) Ignore all patches between the source and target homes during patching.
|
52
|
+
:param pulumi.Input[bool] is_keep_placement: (Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
53
|
+
:param pulumi.Input[int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
54
|
+
:param pulumi.Input['FsuCycleStageActionScheduleArgs'] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
55
|
+
"""
|
56
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
57
|
+
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
58
|
+
pulumi.set(__self__, "goal_version_details", goal_version_details)
|
59
|
+
pulumi.set(__self__, "type", type)
|
60
|
+
if apply_action_schedule is not None:
|
61
|
+
pulumi.set(__self__, "apply_action_schedule", apply_action_schedule)
|
62
|
+
if batching_strategy is not None:
|
63
|
+
pulumi.set(__self__, "batching_strategy", batching_strategy)
|
64
|
+
if defined_tags is not None:
|
65
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
66
|
+
if diagnostics_collection is not None:
|
67
|
+
pulumi.set(__self__, "diagnostics_collection", diagnostics_collection)
|
68
|
+
if display_name is not None:
|
69
|
+
pulumi.set(__self__, "display_name", display_name)
|
70
|
+
if freeform_tags is not None:
|
71
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
72
|
+
if is_ignore_missing_patches is not None:
|
73
|
+
pulumi.set(__self__, "is_ignore_missing_patches", is_ignore_missing_patches)
|
74
|
+
if is_ignore_patches is not None:
|
75
|
+
pulumi.set(__self__, "is_ignore_patches", is_ignore_patches)
|
76
|
+
if is_keep_placement is not None:
|
77
|
+
pulumi.set(__self__, "is_keep_placement", is_keep_placement)
|
78
|
+
if max_drain_timeout_in_seconds is not None:
|
79
|
+
pulumi.set(__self__, "max_drain_timeout_in_seconds", max_drain_timeout_in_seconds)
|
80
|
+
if stage_action_schedule is not None:
|
81
|
+
pulumi.set(__self__, "stage_action_schedule", stage_action_schedule)
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="compartmentId")
|
85
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
86
|
+
"""
|
87
|
+
(Updatable) Compartment Identifier.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "compartment_id")
|
90
|
+
|
91
|
+
@compartment_id.setter
|
92
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
93
|
+
pulumi.set(self, "compartment_id", value)
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="fsuCollectionId")
|
97
|
+
def fsu_collection_id(self) -> pulumi.Input[str]:
|
98
|
+
"""
|
99
|
+
OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "fsu_collection_id")
|
102
|
+
|
103
|
+
@fsu_collection_id.setter
|
104
|
+
def fsu_collection_id(self, value: pulumi.Input[str]):
|
105
|
+
pulumi.set(self, "fsu_collection_id", value)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="goalVersionDetails")
|
109
|
+
def goal_version_details(self) -> pulumi.Input['FsuCycleGoalVersionDetailsArgs']:
|
110
|
+
"""
|
111
|
+
(Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "goal_version_details")
|
114
|
+
|
115
|
+
@goal_version_details.setter
|
116
|
+
def goal_version_details(self, value: pulumi.Input['FsuCycleGoalVersionDetailsArgs']):
|
117
|
+
pulumi.set(self, "goal_version_details", value)
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def type(self) -> pulumi.Input[str]:
|
122
|
+
"""
|
123
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
124
|
+
|
125
|
+
|
126
|
+
** IMPORTANT **
|
127
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "type")
|
130
|
+
|
131
|
+
@type.setter
|
132
|
+
def type(self, value: pulumi.Input[str]):
|
133
|
+
pulumi.set(self, "type", value)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="applyActionSchedule")
|
137
|
+
def apply_action_schedule(self) -> Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']]:
|
138
|
+
"""
|
139
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "apply_action_schedule")
|
142
|
+
|
143
|
+
@apply_action_schedule.setter
|
144
|
+
def apply_action_schedule(self, value: Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']]):
|
145
|
+
pulumi.set(self, "apply_action_schedule", value)
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="batchingStrategy")
|
149
|
+
def batching_strategy(self) -> Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']]:
|
150
|
+
"""
|
151
|
+
(Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "batching_strategy")
|
154
|
+
|
155
|
+
@batching_strategy.setter
|
156
|
+
def batching_strategy(self, value: Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']]):
|
157
|
+
pulumi.set(self, "batching_strategy", value)
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="definedTags")
|
161
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
162
|
+
"""
|
163
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "defined_tags")
|
166
|
+
|
167
|
+
@defined_tags.setter
|
168
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
169
|
+
pulumi.set(self, "defined_tags", value)
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="diagnosticsCollection")
|
173
|
+
def diagnostics_collection(self) -> Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']]:
|
174
|
+
"""
|
175
|
+
(Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "diagnostics_collection")
|
178
|
+
|
179
|
+
@diagnostics_collection.setter
|
180
|
+
def diagnostics_collection(self, value: Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']]):
|
181
|
+
pulumi.set(self, "diagnostics_collection", value)
|
182
|
+
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="displayName")
|
185
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
186
|
+
"""
|
187
|
+
(Updatable) Exadata Fleet Update Cycle display name.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "display_name")
|
190
|
+
|
191
|
+
@display_name.setter
|
192
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
193
|
+
pulumi.set(self, "display_name", value)
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="freeformTags")
|
197
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
198
|
+
"""
|
199
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "freeform_tags")
|
202
|
+
|
203
|
+
@freeform_tags.setter
|
204
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
205
|
+
pulumi.set(self, "freeform_tags", value)
|
206
|
+
|
207
|
+
@property
|
208
|
+
@pulumi.getter(name="isIgnoreMissingPatches")
|
209
|
+
def is_ignore_missing_patches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
210
|
+
"""
|
211
|
+
(Updatable) List of patch IDs to ignore.
|
212
|
+
"""
|
213
|
+
return pulumi.get(self, "is_ignore_missing_patches")
|
214
|
+
|
215
|
+
@is_ignore_missing_patches.setter
|
216
|
+
def is_ignore_missing_patches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
217
|
+
pulumi.set(self, "is_ignore_missing_patches", value)
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="isIgnorePatches")
|
221
|
+
def is_ignore_patches(self) -> Optional[pulumi.Input[bool]]:
|
222
|
+
"""
|
223
|
+
(Updatable) Ignore all patches between the source and target homes during patching.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "is_ignore_patches")
|
226
|
+
|
227
|
+
@is_ignore_patches.setter
|
228
|
+
def is_ignore_patches(self, value: Optional[pulumi.Input[bool]]):
|
229
|
+
pulumi.set(self, "is_ignore_patches", value)
|
230
|
+
|
231
|
+
@property
|
232
|
+
@pulumi.getter(name="isKeepPlacement")
|
233
|
+
def is_keep_placement(self) -> Optional[pulumi.Input[bool]]:
|
234
|
+
"""
|
235
|
+
(Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "is_keep_placement")
|
238
|
+
|
239
|
+
@is_keep_placement.setter
|
240
|
+
def is_keep_placement(self, value: Optional[pulumi.Input[bool]]):
|
241
|
+
pulumi.set(self, "is_keep_placement", value)
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="maxDrainTimeoutInSeconds")
|
245
|
+
def max_drain_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
246
|
+
"""
|
247
|
+
(Updatable) Service drain timeout specified in seconds.
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "max_drain_timeout_in_seconds")
|
250
|
+
|
251
|
+
@max_drain_timeout_in_seconds.setter
|
252
|
+
def max_drain_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
253
|
+
pulumi.set(self, "max_drain_timeout_in_seconds", value)
|
254
|
+
|
255
|
+
@property
|
256
|
+
@pulumi.getter(name="stageActionSchedule")
|
257
|
+
def stage_action_schedule(self) -> Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']]:
|
258
|
+
"""
|
259
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "stage_action_schedule")
|
262
|
+
|
263
|
+
@stage_action_schedule.setter
|
264
|
+
def stage_action_schedule(self, value: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']]):
|
265
|
+
pulumi.set(self, "stage_action_schedule", value)
|
266
|
+
|
267
|
+
|
268
|
+
@pulumi.input_type
|
269
|
+
class _FsuCycleState:
|
270
|
+
def __init__(__self__, *,
|
271
|
+
apply_action_schedule: Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']] = None,
|
272
|
+
batching_strategy: Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']] = None,
|
273
|
+
collection_type: Optional[pulumi.Input[str]] = None,
|
274
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
275
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
276
|
+
diagnostics_collection: Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']] = None,
|
277
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
278
|
+
executing_fsu_action_id: Optional[pulumi.Input[str]] = None,
|
279
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
280
|
+
fsu_collection_id: Optional[pulumi.Input[str]] = None,
|
281
|
+
goal_version_details: Optional[pulumi.Input['FsuCycleGoalVersionDetailsArgs']] = None,
|
282
|
+
is_ignore_missing_patches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
283
|
+
is_ignore_patches: Optional[pulumi.Input[bool]] = None,
|
284
|
+
is_keep_placement: Optional[pulumi.Input[bool]] = None,
|
285
|
+
last_completed_action: Optional[pulumi.Input[str]] = None,
|
286
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
287
|
+
max_drain_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
288
|
+
next_action_to_executes: Optional[pulumi.Input[Sequence[pulumi.Input['FsuCycleNextActionToExecuteArgs']]]] = None,
|
289
|
+
stage_action_schedule: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']] = None,
|
290
|
+
state: Optional[pulumi.Input[str]] = None,
|
291
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
292
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
293
|
+
time_finished: Optional[pulumi.Input[str]] = None,
|
294
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
295
|
+
type: Optional[pulumi.Input[str]] = None):
|
296
|
+
"""
|
297
|
+
Input properties used for looking up and filtering FsuCycle resources.
|
298
|
+
:param pulumi.Input['FsuCycleApplyActionScheduleArgs'] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
299
|
+
:param pulumi.Input['FsuCycleBatchingStrategyArgs'] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
300
|
+
:param pulumi.Input[str] collection_type: Type of Collection this Exadata Fleet Update Cycle belongs to.
|
301
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
302
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
303
|
+
:param pulumi.Input['FsuCycleDiagnosticsCollectionArgs'] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
304
|
+
:param pulumi.Input[str] display_name: (Updatable) Exadata Fleet Update Cycle display name.
|
305
|
+
:param pulumi.Input[str] executing_fsu_action_id: OCID identifier for the Action that is currently in execution, if applicable.
|
306
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
307
|
+
:param pulumi.Input[str] fsu_collection_id: OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
308
|
+
:param pulumi.Input['FsuCycleGoalVersionDetailsArgs'] goal_version_details: (Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
309
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] is_ignore_missing_patches: (Updatable) List of patch IDs to ignore.
|
310
|
+
:param pulumi.Input[bool] is_ignore_patches: (Updatable) Ignore all patches between the source and target homes during patching.
|
311
|
+
:param pulumi.Input[bool] is_keep_placement: (Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
312
|
+
:param pulumi.Input[str] last_completed_action: The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
|
313
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
314
|
+
:param pulumi.Input[int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
315
|
+
:param pulumi.Input[Sequence[pulumi.Input['FsuCycleNextActionToExecuteArgs']]] next_action_to_executes: In this array all the possible actions will be listed. The first element is the suggested Action.
|
316
|
+
:param pulumi.Input['FsuCycleStageActionScheduleArgs'] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
317
|
+
:param pulumi.Input[str] state: The current state of the Exadata Fleet Update Cycle.
|
318
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
319
|
+
:param pulumi.Input[str] time_created: The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
320
|
+
:param pulumi.Input[str] time_finished: The date and time the Exadata Fleet Update Cycle was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
321
|
+
:param pulumi.Input[str] time_updated: The date and time the Exadata Fleet Update Cycle was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
322
|
+
:param pulumi.Input[str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
323
|
+
|
324
|
+
|
325
|
+
** IMPORTANT **
|
326
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
327
|
+
"""
|
328
|
+
if apply_action_schedule is not None:
|
329
|
+
pulumi.set(__self__, "apply_action_schedule", apply_action_schedule)
|
330
|
+
if batching_strategy is not None:
|
331
|
+
pulumi.set(__self__, "batching_strategy", batching_strategy)
|
332
|
+
if collection_type is not None:
|
333
|
+
pulumi.set(__self__, "collection_type", collection_type)
|
334
|
+
if compartment_id is not None:
|
335
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
336
|
+
if defined_tags is not None:
|
337
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
338
|
+
if diagnostics_collection is not None:
|
339
|
+
pulumi.set(__self__, "diagnostics_collection", diagnostics_collection)
|
340
|
+
if display_name is not None:
|
341
|
+
pulumi.set(__self__, "display_name", display_name)
|
342
|
+
if executing_fsu_action_id is not None:
|
343
|
+
pulumi.set(__self__, "executing_fsu_action_id", executing_fsu_action_id)
|
344
|
+
if freeform_tags is not None:
|
345
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
346
|
+
if fsu_collection_id is not None:
|
347
|
+
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
348
|
+
if goal_version_details is not None:
|
349
|
+
pulumi.set(__self__, "goal_version_details", goal_version_details)
|
350
|
+
if is_ignore_missing_patches is not None:
|
351
|
+
pulumi.set(__self__, "is_ignore_missing_patches", is_ignore_missing_patches)
|
352
|
+
if is_ignore_patches is not None:
|
353
|
+
pulumi.set(__self__, "is_ignore_patches", is_ignore_patches)
|
354
|
+
if is_keep_placement is not None:
|
355
|
+
pulumi.set(__self__, "is_keep_placement", is_keep_placement)
|
356
|
+
if last_completed_action is not None:
|
357
|
+
pulumi.set(__self__, "last_completed_action", last_completed_action)
|
358
|
+
if lifecycle_details is not None:
|
359
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
360
|
+
if max_drain_timeout_in_seconds is not None:
|
361
|
+
pulumi.set(__self__, "max_drain_timeout_in_seconds", max_drain_timeout_in_seconds)
|
362
|
+
if next_action_to_executes is not None:
|
363
|
+
pulumi.set(__self__, "next_action_to_executes", next_action_to_executes)
|
364
|
+
if stage_action_schedule is not None:
|
365
|
+
pulumi.set(__self__, "stage_action_schedule", stage_action_schedule)
|
366
|
+
if state is not None:
|
367
|
+
pulumi.set(__self__, "state", state)
|
368
|
+
if system_tags is not None:
|
369
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
370
|
+
if time_created is not None:
|
371
|
+
pulumi.set(__self__, "time_created", time_created)
|
372
|
+
if time_finished is not None:
|
373
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
374
|
+
if time_updated is not None:
|
375
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
376
|
+
if type is not None:
|
377
|
+
pulumi.set(__self__, "type", type)
|
378
|
+
|
379
|
+
@property
|
380
|
+
@pulumi.getter(name="applyActionSchedule")
|
381
|
+
def apply_action_schedule(self) -> Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']]:
|
382
|
+
"""
|
383
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
384
|
+
"""
|
385
|
+
return pulumi.get(self, "apply_action_schedule")
|
386
|
+
|
387
|
+
@apply_action_schedule.setter
|
388
|
+
def apply_action_schedule(self, value: Optional[pulumi.Input['FsuCycleApplyActionScheduleArgs']]):
|
389
|
+
pulumi.set(self, "apply_action_schedule", value)
|
390
|
+
|
391
|
+
@property
|
392
|
+
@pulumi.getter(name="batchingStrategy")
|
393
|
+
def batching_strategy(self) -> Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']]:
|
394
|
+
"""
|
395
|
+
(Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
396
|
+
"""
|
397
|
+
return pulumi.get(self, "batching_strategy")
|
398
|
+
|
399
|
+
@batching_strategy.setter
|
400
|
+
def batching_strategy(self, value: Optional[pulumi.Input['FsuCycleBatchingStrategyArgs']]):
|
401
|
+
pulumi.set(self, "batching_strategy", value)
|
402
|
+
|
403
|
+
@property
|
404
|
+
@pulumi.getter(name="collectionType")
|
405
|
+
def collection_type(self) -> Optional[pulumi.Input[str]]:
|
406
|
+
"""
|
407
|
+
Type of Collection this Exadata Fleet Update Cycle belongs to.
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "collection_type")
|
410
|
+
|
411
|
+
@collection_type.setter
|
412
|
+
def collection_type(self, value: Optional[pulumi.Input[str]]):
|
413
|
+
pulumi.set(self, "collection_type", value)
|
414
|
+
|
415
|
+
@property
|
416
|
+
@pulumi.getter(name="compartmentId")
|
417
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
418
|
+
"""
|
419
|
+
(Updatable) Compartment Identifier.
|
420
|
+
"""
|
421
|
+
return pulumi.get(self, "compartment_id")
|
422
|
+
|
423
|
+
@compartment_id.setter
|
424
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
425
|
+
pulumi.set(self, "compartment_id", value)
|
426
|
+
|
427
|
+
@property
|
428
|
+
@pulumi.getter(name="definedTags")
|
429
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
430
|
+
"""
|
431
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
432
|
+
"""
|
433
|
+
return pulumi.get(self, "defined_tags")
|
434
|
+
|
435
|
+
@defined_tags.setter
|
436
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
437
|
+
pulumi.set(self, "defined_tags", value)
|
438
|
+
|
439
|
+
@property
|
440
|
+
@pulumi.getter(name="diagnosticsCollection")
|
441
|
+
def diagnostics_collection(self) -> Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']]:
|
442
|
+
"""
|
443
|
+
(Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
444
|
+
"""
|
445
|
+
return pulumi.get(self, "diagnostics_collection")
|
446
|
+
|
447
|
+
@diagnostics_collection.setter
|
448
|
+
def diagnostics_collection(self, value: Optional[pulumi.Input['FsuCycleDiagnosticsCollectionArgs']]):
|
449
|
+
pulumi.set(self, "diagnostics_collection", value)
|
450
|
+
|
451
|
+
@property
|
452
|
+
@pulumi.getter(name="displayName")
|
453
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
454
|
+
"""
|
455
|
+
(Updatable) Exadata Fleet Update Cycle display name.
|
456
|
+
"""
|
457
|
+
return pulumi.get(self, "display_name")
|
458
|
+
|
459
|
+
@display_name.setter
|
460
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
461
|
+
pulumi.set(self, "display_name", value)
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter(name="executingFsuActionId")
|
465
|
+
def executing_fsu_action_id(self) -> Optional[pulumi.Input[str]]:
|
466
|
+
"""
|
467
|
+
OCID identifier for the Action that is currently in execution, if applicable.
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "executing_fsu_action_id")
|
470
|
+
|
471
|
+
@executing_fsu_action_id.setter
|
472
|
+
def executing_fsu_action_id(self, value: Optional[pulumi.Input[str]]):
|
473
|
+
pulumi.set(self, "executing_fsu_action_id", value)
|
474
|
+
|
475
|
+
@property
|
476
|
+
@pulumi.getter(name="freeformTags")
|
477
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
478
|
+
"""
|
479
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
480
|
+
"""
|
481
|
+
return pulumi.get(self, "freeform_tags")
|
482
|
+
|
483
|
+
@freeform_tags.setter
|
484
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
485
|
+
pulumi.set(self, "freeform_tags", value)
|
486
|
+
|
487
|
+
@property
|
488
|
+
@pulumi.getter(name="fsuCollectionId")
|
489
|
+
def fsu_collection_id(self) -> Optional[pulumi.Input[str]]:
|
490
|
+
"""
|
491
|
+
OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
492
|
+
"""
|
493
|
+
return pulumi.get(self, "fsu_collection_id")
|
494
|
+
|
495
|
+
@fsu_collection_id.setter
|
496
|
+
def fsu_collection_id(self, value: Optional[pulumi.Input[str]]):
|
497
|
+
pulumi.set(self, "fsu_collection_id", value)
|
498
|
+
|
499
|
+
@property
|
500
|
+
@pulumi.getter(name="goalVersionDetails")
|
501
|
+
def goal_version_details(self) -> Optional[pulumi.Input['FsuCycleGoalVersionDetailsArgs']]:
|
502
|
+
"""
|
503
|
+
(Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
504
|
+
"""
|
505
|
+
return pulumi.get(self, "goal_version_details")
|
506
|
+
|
507
|
+
@goal_version_details.setter
|
508
|
+
def goal_version_details(self, value: Optional[pulumi.Input['FsuCycleGoalVersionDetailsArgs']]):
|
509
|
+
pulumi.set(self, "goal_version_details", value)
|
510
|
+
|
511
|
+
@property
|
512
|
+
@pulumi.getter(name="isIgnoreMissingPatches")
|
513
|
+
def is_ignore_missing_patches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
514
|
+
"""
|
515
|
+
(Updatable) List of patch IDs to ignore.
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "is_ignore_missing_patches")
|
518
|
+
|
519
|
+
@is_ignore_missing_patches.setter
|
520
|
+
def is_ignore_missing_patches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
521
|
+
pulumi.set(self, "is_ignore_missing_patches", value)
|
522
|
+
|
523
|
+
@property
|
524
|
+
@pulumi.getter(name="isIgnorePatches")
|
525
|
+
def is_ignore_patches(self) -> Optional[pulumi.Input[bool]]:
|
526
|
+
"""
|
527
|
+
(Updatable) Ignore all patches between the source and target homes during patching.
|
528
|
+
"""
|
529
|
+
return pulumi.get(self, "is_ignore_patches")
|
530
|
+
|
531
|
+
@is_ignore_patches.setter
|
532
|
+
def is_ignore_patches(self, value: Optional[pulumi.Input[bool]]):
|
533
|
+
pulumi.set(self, "is_ignore_patches", value)
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="isKeepPlacement")
|
537
|
+
def is_keep_placement(self) -> Optional[pulumi.Input[bool]]:
|
538
|
+
"""
|
539
|
+
(Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "is_keep_placement")
|
542
|
+
|
543
|
+
@is_keep_placement.setter
|
544
|
+
def is_keep_placement(self, value: Optional[pulumi.Input[bool]]):
|
545
|
+
pulumi.set(self, "is_keep_placement", value)
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter(name="lastCompletedAction")
|
549
|
+
def last_completed_action(self) -> Optional[pulumi.Input[str]]:
|
550
|
+
"""
|
551
|
+
The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "last_completed_action")
|
554
|
+
|
555
|
+
@last_completed_action.setter
|
556
|
+
def last_completed_action(self, value: Optional[pulumi.Input[str]]):
|
557
|
+
pulumi.set(self, "last_completed_action", value)
|
558
|
+
|
559
|
+
@property
|
560
|
+
@pulumi.getter(name="lifecycleDetails")
|
561
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
562
|
+
"""
|
563
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
564
|
+
"""
|
565
|
+
return pulumi.get(self, "lifecycle_details")
|
566
|
+
|
567
|
+
@lifecycle_details.setter
|
568
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
569
|
+
pulumi.set(self, "lifecycle_details", value)
|
570
|
+
|
571
|
+
@property
|
572
|
+
@pulumi.getter(name="maxDrainTimeoutInSeconds")
|
573
|
+
def max_drain_timeout_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
574
|
+
"""
|
575
|
+
(Updatable) Service drain timeout specified in seconds.
|
576
|
+
"""
|
577
|
+
return pulumi.get(self, "max_drain_timeout_in_seconds")
|
578
|
+
|
579
|
+
@max_drain_timeout_in_seconds.setter
|
580
|
+
def max_drain_timeout_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
581
|
+
pulumi.set(self, "max_drain_timeout_in_seconds", value)
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="nextActionToExecutes")
|
585
|
+
def next_action_to_executes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FsuCycleNextActionToExecuteArgs']]]]:
|
586
|
+
"""
|
587
|
+
In this array all the possible actions will be listed. The first element is the suggested Action.
|
588
|
+
"""
|
589
|
+
return pulumi.get(self, "next_action_to_executes")
|
590
|
+
|
591
|
+
@next_action_to_executes.setter
|
592
|
+
def next_action_to_executes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FsuCycleNextActionToExecuteArgs']]]]):
|
593
|
+
pulumi.set(self, "next_action_to_executes", value)
|
594
|
+
|
595
|
+
@property
|
596
|
+
@pulumi.getter(name="stageActionSchedule")
|
597
|
+
def stage_action_schedule(self) -> Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']]:
|
598
|
+
"""
|
599
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
600
|
+
"""
|
601
|
+
return pulumi.get(self, "stage_action_schedule")
|
602
|
+
|
603
|
+
@stage_action_schedule.setter
|
604
|
+
def stage_action_schedule(self, value: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']]):
|
605
|
+
pulumi.set(self, "stage_action_schedule", value)
|
606
|
+
|
607
|
+
@property
|
608
|
+
@pulumi.getter
|
609
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
610
|
+
"""
|
611
|
+
The current state of the Exadata Fleet Update Cycle.
|
612
|
+
"""
|
613
|
+
return pulumi.get(self, "state")
|
614
|
+
|
615
|
+
@state.setter
|
616
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
617
|
+
pulumi.set(self, "state", value)
|
618
|
+
|
619
|
+
@property
|
620
|
+
@pulumi.getter(name="systemTags")
|
621
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
622
|
+
"""
|
623
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
624
|
+
"""
|
625
|
+
return pulumi.get(self, "system_tags")
|
626
|
+
|
627
|
+
@system_tags.setter
|
628
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
629
|
+
pulumi.set(self, "system_tags", value)
|
630
|
+
|
631
|
+
@property
|
632
|
+
@pulumi.getter(name="timeCreated")
|
633
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
634
|
+
"""
|
635
|
+
The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
636
|
+
"""
|
637
|
+
return pulumi.get(self, "time_created")
|
638
|
+
|
639
|
+
@time_created.setter
|
640
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
641
|
+
pulumi.set(self, "time_created", value)
|
642
|
+
|
643
|
+
@property
|
644
|
+
@pulumi.getter(name="timeFinished")
|
645
|
+
def time_finished(self) -> Optional[pulumi.Input[str]]:
|
646
|
+
"""
|
647
|
+
The date and time the Exadata Fleet Update Cycle was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
648
|
+
"""
|
649
|
+
return pulumi.get(self, "time_finished")
|
650
|
+
|
651
|
+
@time_finished.setter
|
652
|
+
def time_finished(self, value: Optional[pulumi.Input[str]]):
|
653
|
+
pulumi.set(self, "time_finished", value)
|
654
|
+
|
655
|
+
@property
|
656
|
+
@pulumi.getter(name="timeUpdated")
|
657
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
658
|
+
"""
|
659
|
+
The date and time the Exadata Fleet Update Cycle was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
660
|
+
"""
|
661
|
+
return pulumi.get(self, "time_updated")
|
662
|
+
|
663
|
+
@time_updated.setter
|
664
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
665
|
+
pulumi.set(self, "time_updated", value)
|
666
|
+
|
667
|
+
@property
|
668
|
+
@pulumi.getter
|
669
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
670
|
+
"""
|
671
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
672
|
+
|
673
|
+
|
674
|
+
** IMPORTANT **
|
675
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
676
|
+
"""
|
677
|
+
return pulumi.get(self, "type")
|
678
|
+
|
679
|
+
@type.setter
|
680
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
681
|
+
pulumi.set(self, "type", value)
|
682
|
+
|
683
|
+
|
684
|
+
class FsuCycle(pulumi.CustomResource):
|
685
|
+
@overload
|
686
|
+
def __init__(__self__,
|
687
|
+
resource_name: str,
|
688
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
689
|
+
apply_action_schedule: Optional[pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']]] = None,
|
690
|
+
batching_strategy: Optional[pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']]] = None,
|
691
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
692
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
693
|
+
diagnostics_collection: Optional[pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']]] = None,
|
694
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
695
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
696
|
+
fsu_collection_id: Optional[pulumi.Input[str]] = None,
|
697
|
+
goal_version_details: Optional[pulumi.Input[Union['FsuCycleGoalVersionDetailsArgs', 'FsuCycleGoalVersionDetailsArgsDict']]] = None,
|
698
|
+
is_ignore_missing_patches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
699
|
+
is_ignore_patches: Optional[pulumi.Input[bool]] = None,
|
700
|
+
is_keep_placement: Optional[pulumi.Input[bool]] = None,
|
701
|
+
max_drain_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
702
|
+
stage_action_schedule: Optional[pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']]] = None,
|
703
|
+
type: Optional[pulumi.Input[str]] = None,
|
704
|
+
__props__=None):
|
705
|
+
"""
|
706
|
+
This resource provides the Fsu Cycle resource in Oracle Cloud Infrastructure Fleet Software Update service.
|
707
|
+
|
708
|
+
Creates a new Exadata Fleet Update Cycle.
|
709
|
+
|
710
|
+
## Example Usage
|
711
|
+
|
712
|
+
```python
|
713
|
+
import pulumi
|
714
|
+
import pulumi_oci as oci
|
715
|
+
|
716
|
+
test_fsu_cycle = oci.fleet_software_update.FsuCycle("test_fsu_cycle",
|
717
|
+
compartment_id=compartment_id,
|
718
|
+
fsu_collection_id=test_fsu_collection["id"],
|
719
|
+
goal_version_details={
|
720
|
+
"type": fsu_cycle_goal_version_details_type,
|
721
|
+
"home_policy": fsu_cycle_goal_version_details_home_policy,
|
722
|
+
"new_home_prefix": fsu_cycle_goal_version_details_new_home_prefix,
|
723
|
+
"software_image_id": test_image["id"],
|
724
|
+
"version": fsu_cycle_goal_version_details_version,
|
725
|
+
},
|
726
|
+
type=fsu_cycle_type,
|
727
|
+
apply_action_schedule={
|
728
|
+
"time_to_start": fsu_cycle_apply_action_schedule_time_to_start,
|
729
|
+
"type": fsu_cycle_apply_action_schedule_type,
|
730
|
+
},
|
731
|
+
batching_strategy={
|
732
|
+
"is_force_rolling": fsu_cycle_batching_strategy_is_force_rolling,
|
733
|
+
"is_wait_for_batch_resume": fsu_cycle_batching_strategy_is_wait_for_batch_resume,
|
734
|
+
"percentage": fsu_cycle_batching_strategy_percentage,
|
735
|
+
"type": fsu_cycle_batching_strategy_type,
|
736
|
+
},
|
737
|
+
defined_tags={
|
738
|
+
"foo-namespace.bar-key": "value",
|
739
|
+
},
|
740
|
+
diagnostics_collection={
|
741
|
+
"log_collection_mode": fsu_cycle_diagnostics_collection_log_collection_mode,
|
742
|
+
},
|
743
|
+
display_name=fsu_cycle_display_name,
|
744
|
+
freeform_tags={
|
745
|
+
"bar-key": "value",
|
746
|
+
},
|
747
|
+
is_ignore_missing_patches=fsu_cycle_is_ignore_missing_patches,
|
748
|
+
is_ignore_patches=fsu_cycle_is_ignore_patches,
|
749
|
+
is_keep_placement=fsu_cycle_is_keep_placement,
|
750
|
+
max_drain_timeout_in_seconds=fsu_cycle_max_drain_timeout_in_seconds,
|
751
|
+
stage_action_schedule={
|
752
|
+
"time_to_start": fsu_cycle_stage_action_schedule_time_to_start,
|
753
|
+
"type": fsu_cycle_stage_action_schedule_type,
|
754
|
+
})
|
755
|
+
```
|
756
|
+
|
757
|
+
## Import
|
758
|
+
|
759
|
+
FsuCycles can be imported using the `id`, e.g.
|
760
|
+
|
761
|
+
```sh
|
762
|
+
$ pulumi import oci:FleetSoftwareUpdate/fsuCycle:FsuCycle test_fsu_cycle "id"
|
763
|
+
```
|
764
|
+
|
765
|
+
:param str resource_name: The name of the resource.
|
766
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
767
|
+
:param pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
768
|
+
:param pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
769
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
770
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
771
|
+
:param pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
772
|
+
:param pulumi.Input[str] display_name: (Updatable) Exadata Fleet Update Cycle display name.
|
773
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
774
|
+
:param pulumi.Input[str] fsu_collection_id: OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
775
|
+
:param pulumi.Input[Union['FsuCycleGoalVersionDetailsArgs', 'FsuCycleGoalVersionDetailsArgsDict']] goal_version_details: (Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
776
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] is_ignore_missing_patches: (Updatable) List of patch IDs to ignore.
|
777
|
+
:param pulumi.Input[bool] is_ignore_patches: (Updatable) Ignore all patches between the source and target homes during patching.
|
778
|
+
:param pulumi.Input[bool] is_keep_placement: (Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
779
|
+
:param pulumi.Input[int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
780
|
+
:param pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
781
|
+
:param pulumi.Input[str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
782
|
+
|
783
|
+
|
784
|
+
** IMPORTANT **
|
785
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
786
|
+
"""
|
787
|
+
...
|
788
|
+
@overload
|
789
|
+
def __init__(__self__,
|
790
|
+
resource_name: str,
|
791
|
+
args: FsuCycleArgs,
|
792
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
793
|
+
"""
|
794
|
+
This resource provides the Fsu Cycle resource in Oracle Cloud Infrastructure Fleet Software Update service.
|
795
|
+
|
796
|
+
Creates a new Exadata Fleet Update Cycle.
|
797
|
+
|
798
|
+
## Example Usage
|
799
|
+
|
800
|
+
```python
|
801
|
+
import pulumi
|
802
|
+
import pulumi_oci as oci
|
803
|
+
|
804
|
+
test_fsu_cycle = oci.fleet_software_update.FsuCycle("test_fsu_cycle",
|
805
|
+
compartment_id=compartment_id,
|
806
|
+
fsu_collection_id=test_fsu_collection["id"],
|
807
|
+
goal_version_details={
|
808
|
+
"type": fsu_cycle_goal_version_details_type,
|
809
|
+
"home_policy": fsu_cycle_goal_version_details_home_policy,
|
810
|
+
"new_home_prefix": fsu_cycle_goal_version_details_new_home_prefix,
|
811
|
+
"software_image_id": test_image["id"],
|
812
|
+
"version": fsu_cycle_goal_version_details_version,
|
813
|
+
},
|
814
|
+
type=fsu_cycle_type,
|
815
|
+
apply_action_schedule={
|
816
|
+
"time_to_start": fsu_cycle_apply_action_schedule_time_to_start,
|
817
|
+
"type": fsu_cycle_apply_action_schedule_type,
|
818
|
+
},
|
819
|
+
batching_strategy={
|
820
|
+
"is_force_rolling": fsu_cycle_batching_strategy_is_force_rolling,
|
821
|
+
"is_wait_for_batch_resume": fsu_cycle_batching_strategy_is_wait_for_batch_resume,
|
822
|
+
"percentage": fsu_cycle_batching_strategy_percentage,
|
823
|
+
"type": fsu_cycle_batching_strategy_type,
|
824
|
+
},
|
825
|
+
defined_tags={
|
826
|
+
"foo-namespace.bar-key": "value",
|
827
|
+
},
|
828
|
+
diagnostics_collection={
|
829
|
+
"log_collection_mode": fsu_cycle_diagnostics_collection_log_collection_mode,
|
830
|
+
},
|
831
|
+
display_name=fsu_cycle_display_name,
|
832
|
+
freeform_tags={
|
833
|
+
"bar-key": "value",
|
834
|
+
},
|
835
|
+
is_ignore_missing_patches=fsu_cycle_is_ignore_missing_patches,
|
836
|
+
is_ignore_patches=fsu_cycle_is_ignore_patches,
|
837
|
+
is_keep_placement=fsu_cycle_is_keep_placement,
|
838
|
+
max_drain_timeout_in_seconds=fsu_cycle_max_drain_timeout_in_seconds,
|
839
|
+
stage_action_schedule={
|
840
|
+
"time_to_start": fsu_cycle_stage_action_schedule_time_to_start,
|
841
|
+
"type": fsu_cycle_stage_action_schedule_type,
|
842
|
+
})
|
843
|
+
```
|
844
|
+
|
845
|
+
## Import
|
846
|
+
|
847
|
+
FsuCycles can be imported using the `id`, e.g.
|
848
|
+
|
849
|
+
```sh
|
850
|
+
$ pulumi import oci:FleetSoftwareUpdate/fsuCycle:FsuCycle test_fsu_cycle "id"
|
851
|
+
```
|
852
|
+
|
853
|
+
:param str resource_name: The name of the resource.
|
854
|
+
:param FsuCycleArgs args: The arguments to use to populate this resource's properties.
|
855
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
856
|
+
"""
|
857
|
+
...
|
858
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
859
|
+
resource_args, opts = _utilities.get_resource_args_opts(FsuCycleArgs, pulumi.ResourceOptions, *args, **kwargs)
|
860
|
+
if resource_args is not None:
|
861
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
862
|
+
else:
|
863
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
864
|
+
|
865
|
+
def _internal_init(__self__,
|
866
|
+
resource_name: str,
|
867
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
868
|
+
apply_action_schedule: Optional[pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']]] = None,
|
869
|
+
batching_strategy: Optional[pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']]] = None,
|
870
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
871
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
872
|
+
diagnostics_collection: Optional[pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']]] = None,
|
873
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
874
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
875
|
+
fsu_collection_id: Optional[pulumi.Input[str]] = None,
|
876
|
+
goal_version_details: Optional[pulumi.Input[Union['FsuCycleGoalVersionDetailsArgs', 'FsuCycleGoalVersionDetailsArgsDict']]] = None,
|
877
|
+
is_ignore_missing_patches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
878
|
+
is_ignore_patches: Optional[pulumi.Input[bool]] = None,
|
879
|
+
is_keep_placement: Optional[pulumi.Input[bool]] = None,
|
880
|
+
max_drain_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
881
|
+
stage_action_schedule: Optional[pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']]] = None,
|
882
|
+
type: Optional[pulumi.Input[str]] = None,
|
883
|
+
__props__=None):
|
884
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
885
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
886
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
887
|
+
if opts.id is None:
|
888
|
+
if __props__ is not None:
|
889
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
890
|
+
__props__ = FsuCycleArgs.__new__(FsuCycleArgs)
|
891
|
+
|
892
|
+
__props__.__dict__["apply_action_schedule"] = apply_action_schedule
|
893
|
+
__props__.__dict__["batching_strategy"] = batching_strategy
|
894
|
+
if compartment_id is None and not opts.urn:
|
895
|
+
raise TypeError("Missing required property 'compartment_id'")
|
896
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
897
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
898
|
+
__props__.__dict__["diagnostics_collection"] = diagnostics_collection
|
899
|
+
__props__.__dict__["display_name"] = display_name
|
900
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
901
|
+
if fsu_collection_id is None and not opts.urn:
|
902
|
+
raise TypeError("Missing required property 'fsu_collection_id'")
|
903
|
+
__props__.__dict__["fsu_collection_id"] = fsu_collection_id
|
904
|
+
if goal_version_details is None and not opts.urn:
|
905
|
+
raise TypeError("Missing required property 'goal_version_details'")
|
906
|
+
__props__.__dict__["goal_version_details"] = goal_version_details
|
907
|
+
__props__.__dict__["is_ignore_missing_patches"] = is_ignore_missing_patches
|
908
|
+
__props__.__dict__["is_ignore_patches"] = is_ignore_patches
|
909
|
+
__props__.__dict__["is_keep_placement"] = is_keep_placement
|
910
|
+
__props__.__dict__["max_drain_timeout_in_seconds"] = max_drain_timeout_in_seconds
|
911
|
+
__props__.__dict__["stage_action_schedule"] = stage_action_schedule
|
912
|
+
if type is None and not opts.urn:
|
913
|
+
raise TypeError("Missing required property 'type'")
|
914
|
+
__props__.__dict__["type"] = type
|
915
|
+
__props__.__dict__["collection_type"] = None
|
916
|
+
__props__.__dict__["executing_fsu_action_id"] = None
|
917
|
+
__props__.__dict__["last_completed_action"] = None
|
918
|
+
__props__.__dict__["lifecycle_details"] = None
|
919
|
+
__props__.__dict__["next_action_to_executes"] = None
|
920
|
+
__props__.__dict__["state"] = None
|
921
|
+
__props__.__dict__["system_tags"] = None
|
922
|
+
__props__.__dict__["time_created"] = None
|
923
|
+
__props__.__dict__["time_finished"] = None
|
924
|
+
__props__.__dict__["time_updated"] = None
|
925
|
+
super(FsuCycle, __self__).__init__(
|
926
|
+
'oci:FleetSoftwareUpdate/fsuCycle:FsuCycle',
|
927
|
+
resource_name,
|
928
|
+
__props__,
|
929
|
+
opts)
|
930
|
+
|
931
|
+
@staticmethod
|
932
|
+
def get(resource_name: str,
|
933
|
+
id: pulumi.Input[str],
|
934
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
935
|
+
apply_action_schedule: Optional[pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']]] = None,
|
936
|
+
batching_strategy: Optional[pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']]] = None,
|
937
|
+
collection_type: Optional[pulumi.Input[str]] = None,
|
938
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
939
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
940
|
+
diagnostics_collection: Optional[pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']]] = None,
|
941
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
942
|
+
executing_fsu_action_id: Optional[pulumi.Input[str]] = None,
|
943
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
944
|
+
fsu_collection_id: Optional[pulumi.Input[str]] = None,
|
945
|
+
goal_version_details: Optional[pulumi.Input[Union['FsuCycleGoalVersionDetailsArgs', 'FsuCycleGoalVersionDetailsArgsDict']]] = None,
|
946
|
+
is_ignore_missing_patches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
947
|
+
is_ignore_patches: Optional[pulumi.Input[bool]] = None,
|
948
|
+
is_keep_placement: Optional[pulumi.Input[bool]] = None,
|
949
|
+
last_completed_action: Optional[pulumi.Input[str]] = None,
|
950
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
951
|
+
max_drain_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
952
|
+
next_action_to_executes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FsuCycleNextActionToExecuteArgs', 'FsuCycleNextActionToExecuteArgsDict']]]]] = None,
|
953
|
+
stage_action_schedule: Optional[pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']]] = None,
|
954
|
+
state: Optional[pulumi.Input[str]] = None,
|
955
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
956
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
957
|
+
time_finished: Optional[pulumi.Input[str]] = None,
|
958
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
959
|
+
type: Optional[pulumi.Input[str]] = None) -> 'FsuCycle':
|
960
|
+
"""
|
961
|
+
Get an existing FsuCycle resource's state with the given name, id, and optional extra
|
962
|
+
properties used to qualify the lookup.
|
963
|
+
|
964
|
+
:param str resource_name: The unique name of the resulting resource.
|
965
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
966
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
967
|
+
:param pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
968
|
+
:param pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
969
|
+
:param pulumi.Input[str] collection_type: Type of Collection this Exadata Fleet Update Cycle belongs to.
|
970
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
971
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
972
|
+
:param pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
973
|
+
:param pulumi.Input[str] display_name: (Updatable) Exadata Fleet Update Cycle display name.
|
974
|
+
:param pulumi.Input[str] executing_fsu_action_id: OCID identifier for the Action that is currently in execution, if applicable.
|
975
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
976
|
+
:param pulumi.Input[str] fsu_collection_id: OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
977
|
+
:param pulumi.Input[Union['FsuCycleGoalVersionDetailsArgs', 'FsuCycleGoalVersionDetailsArgsDict']] goal_version_details: (Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
978
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] is_ignore_missing_patches: (Updatable) List of patch IDs to ignore.
|
979
|
+
:param pulumi.Input[bool] is_ignore_patches: (Updatable) Ignore all patches between the source and target homes during patching.
|
980
|
+
:param pulumi.Input[bool] is_keep_placement: (Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
981
|
+
:param pulumi.Input[str] last_completed_action: The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
|
982
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
983
|
+
:param pulumi.Input[int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
984
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FsuCycleNextActionToExecuteArgs', 'FsuCycleNextActionToExecuteArgsDict']]]] next_action_to_executes: In this array all the possible actions will be listed. The first element is the suggested Action.
|
985
|
+
:param pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
986
|
+
:param pulumi.Input[str] state: The current state of the Exadata Fleet Update Cycle.
|
987
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
988
|
+
:param pulumi.Input[str] time_created: The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
989
|
+
:param pulumi.Input[str] time_finished: The date and time the Exadata Fleet Update Cycle was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
990
|
+
:param pulumi.Input[str] time_updated: The date and time the Exadata Fleet Update Cycle was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
991
|
+
:param pulumi.Input[str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
992
|
+
|
993
|
+
|
994
|
+
** IMPORTANT **
|
995
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
996
|
+
"""
|
997
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
998
|
+
|
999
|
+
__props__ = _FsuCycleState.__new__(_FsuCycleState)
|
1000
|
+
|
1001
|
+
__props__.__dict__["apply_action_schedule"] = apply_action_schedule
|
1002
|
+
__props__.__dict__["batching_strategy"] = batching_strategy
|
1003
|
+
__props__.__dict__["collection_type"] = collection_type
|
1004
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
1005
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
1006
|
+
__props__.__dict__["diagnostics_collection"] = diagnostics_collection
|
1007
|
+
__props__.__dict__["display_name"] = display_name
|
1008
|
+
__props__.__dict__["executing_fsu_action_id"] = executing_fsu_action_id
|
1009
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
1010
|
+
__props__.__dict__["fsu_collection_id"] = fsu_collection_id
|
1011
|
+
__props__.__dict__["goal_version_details"] = goal_version_details
|
1012
|
+
__props__.__dict__["is_ignore_missing_patches"] = is_ignore_missing_patches
|
1013
|
+
__props__.__dict__["is_ignore_patches"] = is_ignore_patches
|
1014
|
+
__props__.__dict__["is_keep_placement"] = is_keep_placement
|
1015
|
+
__props__.__dict__["last_completed_action"] = last_completed_action
|
1016
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
1017
|
+
__props__.__dict__["max_drain_timeout_in_seconds"] = max_drain_timeout_in_seconds
|
1018
|
+
__props__.__dict__["next_action_to_executes"] = next_action_to_executes
|
1019
|
+
__props__.__dict__["stage_action_schedule"] = stage_action_schedule
|
1020
|
+
__props__.__dict__["state"] = state
|
1021
|
+
__props__.__dict__["system_tags"] = system_tags
|
1022
|
+
__props__.__dict__["time_created"] = time_created
|
1023
|
+
__props__.__dict__["time_finished"] = time_finished
|
1024
|
+
__props__.__dict__["time_updated"] = time_updated
|
1025
|
+
__props__.__dict__["type"] = type
|
1026
|
+
return FsuCycle(resource_name, opts=opts, __props__=__props__)
|
1027
|
+
|
1028
|
+
@property
|
1029
|
+
@pulumi.getter(name="applyActionSchedule")
|
1030
|
+
def apply_action_schedule(self) -> pulumi.Output['outputs.FsuCycleApplyActionSchedule']:
|
1031
|
+
"""
|
1032
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
1033
|
+
"""
|
1034
|
+
return pulumi.get(self, "apply_action_schedule")
|
1035
|
+
|
1036
|
+
@property
|
1037
|
+
@pulumi.getter(name="batchingStrategy")
|
1038
|
+
def batching_strategy(self) -> pulumi.Output['outputs.FsuCycleBatchingStrategy']:
|
1039
|
+
"""
|
1040
|
+
(Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
1041
|
+
"""
|
1042
|
+
return pulumi.get(self, "batching_strategy")
|
1043
|
+
|
1044
|
+
@property
|
1045
|
+
@pulumi.getter(name="collectionType")
|
1046
|
+
def collection_type(self) -> pulumi.Output[str]:
|
1047
|
+
"""
|
1048
|
+
Type of Collection this Exadata Fleet Update Cycle belongs to.
|
1049
|
+
"""
|
1050
|
+
return pulumi.get(self, "collection_type")
|
1051
|
+
|
1052
|
+
@property
|
1053
|
+
@pulumi.getter(name="compartmentId")
|
1054
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
1055
|
+
"""
|
1056
|
+
(Updatable) Compartment Identifier.
|
1057
|
+
"""
|
1058
|
+
return pulumi.get(self, "compartment_id")
|
1059
|
+
|
1060
|
+
@property
|
1061
|
+
@pulumi.getter(name="definedTags")
|
1062
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1063
|
+
"""
|
1064
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1065
|
+
"""
|
1066
|
+
return pulumi.get(self, "defined_tags")
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="diagnosticsCollection")
|
1070
|
+
def diagnostics_collection(self) -> pulumi.Output['outputs.FsuCycleDiagnosticsCollection']:
|
1071
|
+
"""
|
1072
|
+
(Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "diagnostics_collection")
|
1075
|
+
|
1076
|
+
@property
|
1077
|
+
@pulumi.getter(name="displayName")
|
1078
|
+
def display_name(self) -> pulumi.Output[str]:
|
1079
|
+
"""
|
1080
|
+
(Updatable) Exadata Fleet Update Cycle display name.
|
1081
|
+
"""
|
1082
|
+
return pulumi.get(self, "display_name")
|
1083
|
+
|
1084
|
+
@property
|
1085
|
+
@pulumi.getter(name="executingFsuActionId")
|
1086
|
+
def executing_fsu_action_id(self) -> pulumi.Output[str]:
|
1087
|
+
"""
|
1088
|
+
OCID identifier for the Action that is currently in execution, if applicable.
|
1089
|
+
"""
|
1090
|
+
return pulumi.get(self, "executing_fsu_action_id")
|
1091
|
+
|
1092
|
+
@property
|
1093
|
+
@pulumi.getter(name="freeformTags")
|
1094
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1095
|
+
"""
|
1096
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1097
|
+
"""
|
1098
|
+
return pulumi.get(self, "freeform_tags")
|
1099
|
+
|
1100
|
+
@property
|
1101
|
+
@pulumi.getter(name="fsuCollectionId")
|
1102
|
+
def fsu_collection_id(self) -> pulumi.Output[str]:
|
1103
|
+
"""
|
1104
|
+
OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
1105
|
+
"""
|
1106
|
+
return pulumi.get(self, "fsu_collection_id")
|
1107
|
+
|
1108
|
+
@property
|
1109
|
+
@pulumi.getter(name="goalVersionDetails")
|
1110
|
+
def goal_version_details(self) -> pulumi.Output['outputs.FsuCycleGoalVersionDetails']:
|
1111
|
+
"""
|
1112
|
+
(Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
1113
|
+
"""
|
1114
|
+
return pulumi.get(self, "goal_version_details")
|
1115
|
+
|
1116
|
+
@property
|
1117
|
+
@pulumi.getter(name="isIgnoreMissingPatches")
|
1118
|
+
def is_ignore_missing_patches(self) -> pulumi.Output[Sequence[str]]:
|
1119
|
+
"""
|
1120
|
+
(Updatable) List of patch IDs to ignore.
|
1121
|
+
"""
|
1122
|
+
return pulumi.get(self, "is_ignore_missing_patches")
|
1123
|
+
|
1124
|
+
@property
|
1125
|
+
@pulumi.getter(name="isIgnorePatches")
|
1126
|
+
def is_ignore_patches(self) -> pulumi.Output[bool]:
|
1127
|
+
"""
|
1128
|
+
(Updatable) Ignore all patches between the source and target homes during patching.
|
1129
|
+
"""
|
1130
|
+
return pulumi.get(self, "is_ignore_patches")
|
1131
|
+
|
1132
|
+
@property
|
1133
|
+
@pulumi.getter(name="isKeepPlacement")
|
1134
|
+
def is_keep_placement(self) -> pulumi.Output[bool]:
|
1135
|
+
"""
|
1136
|
+
(Updatable) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
1137
|
+
"""
|
1138
|
+
return pulumi.get(self, "is_keep_placement")
|
1139
|
+
|
1140
|
+
@property
|
1141
|
+
@pulumi.getter(name="lastCompletedAction")
|
1142
|
+
def last_completed_action(self) -> pulumi.Output[str]:
|
1143
|
+
"""
|
1144
|
+
The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "last_completed_action")
|
1147
|
+
|
1148
|
+
@property
|
1149
|
+
@pulumi.getter(name="lifecycleDetails")
|
1150
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
1151
|
+
"""
|
1152
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
1153
|
+
"""
|
1154
|
+
return pulumi.get(self, "lifecycle_details")
|
1155
|
+
|
1156
|
+
@property
|
1157
|
+
@pulumi.getter(name="maxDrainTimeoutInSeconds")
|
1158
|
+
def max_drain_timeout_in_seconds(self) -> pulumi.Output[int]:
|
1159
|
+
"""
|
1160
|
+
(Updatable) Service drain timeout specified in seconds.
|
1161
|
+
"""
|
1162
|
+
return pulumi.get(self, "max_drain_timeout_in_seconds")
|
1163
|
+
|
1164
|
+
@property
|
1165
|
+
@pulumi.getter(name="nextActionToExecutes")
|
1166
|
+
def next_action_to_executes(self) -> pulumi.Output[Sequence['outputs.FsuCycleNextActionToExecute']]:
|
1167
|
+
"""
|
1168
|
+
In this array all the possible actions will be listed. The first element is the suggested Action.
|
1169
|
+
"""
|
1170
|
+
return pulumi.get(self, "next_action_to_executes")
|
1171
|
+
|
1172
|
+
@property
|
1173
|
+
@pulumi.getter(name="stageActionSchedule")
|
1174
|
+
def stage_action_schedule(self) -> pulumi.Output['outputs.FsuCycleStageActionSchedule']:
|
1175
|
+
"""
|
1176
|
+
Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
1177
|
+
"""
|
1178
|
+
return pulumi.get(self, "stage_action_schedule")
|
1179
|
+
|
1180
|
+
@property
|
1181
|
+
@pulumi.getter
|
1182
|
+
def state(self) -> pulumi.Output[str]:
|
1183
|
+
"""
|
1184
|
+
The current state of the Exadata Fleet Update Cycle.
|
1185
|
+
"""
|
1186
|
+
return pulumi.get(self, "state")
|
1187
|
+
|
1188
|
+
@property
|
1189
|
+
@pulumi.getter(name="systemTags")
|
1190
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1191
|
+
"""
|
1192
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1193
|
+
"""
|
1194
|
+
return pulumi.get(self, "system_tags")
|
1195
|
+
|
1196
|
+
@property
|
1197
|
+
@pulumi.getter(name="timeCreated")
|
1198
|
+
def time_created(self) -> pulumi.Output[str]:
|
1199
|
+
"""
|
1200
|
+
The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
1201
|
+
"""
|
1202
|
+
return pulumi.get(self, "time_created")
|
1203
|
+
|
1204
|
+
@property
|
1205
|
+
@pulumi.getter(name="timeFinished")
|
1206
|
+
def time_finished(self) -> pulumi.Output[str]:
|
1207
|
+
"""
|
1208
|
+
The date and time the Exadata Fleet Update Cycle was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
1209
|
+
"""
|
1210
|
+
return pulumi.get(self, "time_finished")
|
1211
|
+
|
1212
|
+
@property
|
1213
|
+
@pulumi.getter(name="timeUpdated")
|
1214
|
+
def time_updated(self) -> pulumi.Output[str]:
|
1215
|
+
"""
|
1216
|
+
The date and time the Exadata Fleet Update Cycle was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
1217
|
+
"""
|
1218
|
+
return pulumi.get(self, "time_updated")
|
1219
|
+
|
1220
|
+
@property
|
1221
|
+
@pulumi.getter
|
1222
|
+
def type(self) -> pulumi.Output[str]:
|
1223
|
+
"""
|
1224
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
1225
|
+
|
1226
|
+
|
1227
|
+
** IMPORTANT **
|
1228
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1229
|
+
"""
|
1230
|
+
return pulumi.get(self, "type")
|
1231
|
+
|