pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.19.0a1734003732__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 +40 -0
- pulumi_oci/database/autonomous_container_database.py +47 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_container_database.py +15 -1
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +14 -0
- pulumi_oci/dataflow/application.py +75 -33
- pulumi_oci/dataflow/get_application.py +15 -1
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/desktops/_inputs.py +9 -9
- pulumi_oci/desktops/desktop_pool.py +84 -35
- pulumi_oci/desktops/get_desktop_pool.py +12 -1
- pulumi_oci/desktops/outputs.py +13 -6
- pulumi_oci/disasterrecovery/_inputs.py +46 -30
- pulumi_oci/disasterrecovery/dr_plan.py +194 -23
- pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
- pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
- pulumi_oci/disasterrecovery/outputs.py +113 -21
- pulumi_oci/fleetappsmanagement/__init__.py +19 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
- pulumi_oci/fleetappsmanagement/fleet.py +112 -67
- pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
- pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
- pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
- pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
- pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
- pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
- pulumi_oci/fleetappsmanagement/get_property.py +4 -4
- pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
- pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
- pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
- pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
- pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
- pulumi_oci/fleetappsmanagement/patch.py +978 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
- pulumi_oci/fleetappsmanagement/property.py +27 -27
- pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
- pulumi_oci/fleetappsmanagement/task_record.py +754 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/visualbuilder/_inputs.py +57 -202
- pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
- pulumi_oci/visualbuilder/outputs.py +114 -400
- pulumi_oci/visualbuilder/vb_instance.py +62 -59
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,245 @@
|
|
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__ = [
|
20
|
+
'GetSchedulerJobJobActivityStepsResult',
|
21
|
+
'AwaitableGetSchedulerJobJobActivityStepsResult',
|
22
|
+
'get_scheduler_job_job_activity_steps',
|
23
|
+
'get_scheduler_job_job_activity_steps_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetSchedulerJobJobActivityStepsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getSchedulerJobJobActivitySteps.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, filters=None, id=None, job_activity_id=None, resource_task_id=None, scheduler_job_id=None, sequence=None, step_collections=None, step_name=None, target_name=None):
|
32
|
+
if filters and not isinstance(filters, list):
|
33
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
34
|
+
pulumi.set(__self__, "filters", filters)
|
35
|
+
if id and not isinstance(id, str):
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
37
|
+
pulumi.set(__self__, "id", id)
|
38
|
+
if job_activity_id and not isinstance(job_activity_id, str):
|
39
|
+
raise TypeError("Expected argument 'job_activity_id' to be a str")
|
40
|
+
pulumi.set(__self__, "job_activity_id", job_activity_id)
|
41
|
+
if resource_task_id and not isinstance(resource_task_id, str):
|
42
|
+
raise TypeError("Expected argument 'resource_task_id' to be a str")
|
43
|
+
pulumi.set(__self__, "resource_task_id", resource_task_id)
|
44
|
+
if scheduler_job_id and not isinstance(scheduler_job_id, str):
|
45
|
+
raise TypeError("Expected argument 'scheduler_job_id' to be a str")
|
46
|
+
pulumi.set(__self__, "scheduler_job_id", scheduler_job_id)
|
47
|
+
if sequence and not isinstance(sequence, str):
|
48
|
+
raise TypeError("Expected argument 'sequence' to be a str")
|
49
|
+
pulumi.set(__self__, "sequence", sequence)
|
50
|
+
if step_collections and not isinstance(step_collections, list):
|
51
|
+
raise TypeError("Expected argument 'step_collections' to be a list")
|
52
|
+
pulumi.set(__self__, "step_collections", step_collections)
|
53
|
+
if step_name and not isinstance(step_name, str):
|
54
|
+
raise TypeError("Expected argument 'step_name' to be a str")
|
55
|
+
pulumi.set(__self__, "step_name", step_name)
|
56
|
+
if target_name and not isinstance(target_name, str):
|
57
|
+
raise TypeError("Expected argument 'target_name' to be a str")
|
58
|
+
pulumi.set(__self__, "target_name", target_name)
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def filters(self) -> Optional[Sequence['outputs.GetSchedulerJobJobActivityStepsFilterResult']]:
|
63
|
+
return pulumi.get(self, "filters")
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter
|
67
|
+
def id(self) -> str:
|
68
|
+
"""
|
69
|
+
The provider-assigned unique ID for this managed resource.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "id")
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="jobActivityId")
|
75
|
+
def job_activity_id(self) -> str:
|
76
|
+
return pulumi.get(self, "job_activity_id")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="resourceTaskId")
|
80
|
+
def resource_task_id(self) -> Optional[str]:
|
81
|
+
return pulumi.get(self, "resource_task_id")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="schedulerJobId")
|
85
|
+
def scheduler_job_id(self) -> str:
|
86
|
+
return pulumi.get(self, "scheduler_job_id")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def sequence(self) -> Optional[str]:
|
91
|
+
"""
|
92
|
+
The sequence of the step
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "sequence")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="stepCollections")
|
98
|
+
def step_collections(self) -> Sequence['outputs.GetSchedulerJobJobActivityStepsStepCollectionResult']:
|
99
|
+
"""
|
100
|
+
The list of step_collection.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "step_collections")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="stepName")
|
106
|
+
def step_name(self) -> Optional[str]:
|
107
|
+
"""
|
108
|
+
Name of the Step
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "step_name")
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="targetName")
|
114
|
+
def target_name(self) -> Optional[str]:
|
115
|
+
return pulumi.get(self, "target_name")
|
116
|
+
|
117
|
+
|
118
|
+
class AwaitableGetSchedulerJobJobActivityStepsResult(GetSchedulerJobJobActivityStepsResult):
|
119
|
+
# pylint: disable=using-constant-test
|
120
|
+
def __await__(self):
|
121
|
+
if False:
|
122
|
+
yield self
|
123
|
+
return GetSchedulerJobJobActivityStepsResult(
|
124
|
+
filters=self.filters,
|
125
|
+
id=self.id,
|
126
|
+
job_activity_id=self.job_activity_id,
|
127
|
+
resource_task_id=self.resource_task_id,
|
128
|
+
scheduler_job_id=self.scheduler_job_id,
|
129
|
+
sequence=self.sequence,
|
130
|
+
step_collections=self.step_collections,
|
131
|
+
step_name=self.step_name,
|
132
|
+
target_name=self.target_name)
|
133
|
+
|
134
|
+
|
135
|
+
def get_scheduler_job_job_activity_steps(filters: Optional[Sequence[Union['GetSchedulerJobJobActivityStepsFilterArgs', 'GetSchedulerJobJobActivityStepsFilterArgsDict']]] = None,
|
136
|
+
job_activity_id: Optional[str] = None,
|
137
|
+
resource_task_id: Optional[str] = None,
|
138
|
+
scheduler_job_id: Optional[str] = None,
|
139
|
+
sequence: Optional[str] = None,
|
140
|
+
step_name: Optional[str] = None,
|
141
|
+
target_name: Optional[str] = None,
|
142
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerJobJobActivityStepsResult:
|
143
|
+
"""
|
144
|
+
This data source provides the list of Scheduler Job Job Activity Steps in Oracle Cloud Infrastructure Fleet Apps Management service.
|
145
|
+
|
146
|
+
Returns a list of Steps for an Activity Execution.
|
147
|
+
|
148
|
+
## Example Usage
|
149
|
+
|
150
|
+
```python
|
151
|
+
import pulumi
|
152
|
+
import pulumi_oci as oci
|
153
|
+
|
154
|
+
test_scheduler_job_job_activity_steps = oci.FleetAppsManagement.get_scheduler_job_job_activity_steps(job_activity_id=test_job_activity["id"],
|
155
|
+
scheduler_job_id=test_job["id"],
|
156
|
+
resource_task_id=test_resource_task["id"],
|
157
|
+
sequence=scheduler_job_job_activity_step_sequence,
|
158
|
+
step_name=scheduler_job_job_activity_step_step_name,
|
159
|
+
target_name=test_target["name"])
|
160
|
+
```
|
161
|
+
|
162
|
+
|
163
|
+
:param str job_activity_id: unique jobActivity identifier
|
164
|
+
:param str resource_task_id: Task Id
|
165
|
+
:param str scheduler_job_id: unique SchedulerJob identifier
|
166
|
+
:param str sequence: Task Order Sequence
|
167
|
+
:param str step_name: Unique step name
|
168
|
+
:param str target_name: Unique target name
|
169
|
+
"""
|
170
|
+
__args__ = dict()
|
171
|
+
__args__['filters'] = filters
|
172
|
+
__args__['jobActivityId'] = job_activity_id
|
173
|
+
__args__['resourceTaskId'] = resource_task_id
|
174
|
+
__args__['schedulerJobId'] = scheduler_job_id
|
175
|
+
__args__['sequence'] = sequence
|
176
|
+
__args__['stepName'] = step_name
|
177
|
+
__args__['targetName'] = target_name
|
178
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
179
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerJobJobActivitySteps:getSchedulerJobJobActivitySteps', __args__, opts=opts, typ=GetSchedulerJobJobActivityStepsResult).value
|
180
|
+
|
181
|
+
return AwaitableGetSchedulerJobJobActivityStepsResult(
|
182
|
+
filters=pulumi.get(__ret__, 'filters'),
|
183
|
+
id=pulumi.get(__ret__, 'id'),
|
184
|
+
job_activity_id=pulumi.get(__ret__, 'job_activity_id'),
|
185
|
+
resource_task_id=pulumi.get(__ret__, 'resource_task_id'),
|
186
|
+
scheduler_job_id=pulumi.get(__ret__, 'scheduler_job_id'),
|
187
|
+
sequence=pulumi.get(__ret__, 'sequence'),
|
188
|
+
step_collections=pulumi.get(__ret__, 'step_collections'),
|
189
|
+
step_name=pulumi.get(__ret__, 'step_name'),
|
190
|
+
target_name=pulumi.get(__ret__, 'target_name'))
|
191
|
+
def get_scheduler_job_job_activity_steps_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSchedulerJobJobActivityStepsFilterArgs', 'GetSchedulerJobJobActivityStepsFilterArgsDict']]]]] = None,
|
192
|
+
job_activity_id: Optional[pulumi.Input[str]] = None,
|
193
|
+
resource_task_id: Optional[pulumi.Input[Optional[str]]] = None,
|
194
|
+
scheduler_job_id: Optional[pulumi.Input[str]] = None,
|
195
|
+
sequence: Optional[pulumi.Input[Optional[str]]] = None,
|
196
|
+
step_name: Optional[pulumi.Input[Optional[str]]] = None,
|
197
|
+
target_name: Optional[pulumi.Input[Optional[str]]] = None,
|
198
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchedulerJobJobActivityStepsResult]:
|
199
|
+
"""
|
200
|
+
This data source provides the list of Scheduler Job Job Activity Steps in Oracle Cloud Infrastructure Fleet Apps Management service.
|
201
|
+
|
202
|
+
Returns a list of Steps for an Activity Execution.
|
203
|
+
|
204
|
+
## Example Usage
|
205
|
+
|
206
|
+
```python
|
207
|
+
import pulumi
|
208
|
+
import pulumi_oci as oci
|
209
|
+
|
210
|
+
test_scheduler_job_job_activity_steps = oci.FleetAppsManagement.get_scheduler_job_job_activity_steps(job_activity_id=test_job_activity["id"],
|
211
|
+
scheduler_job_id=test_job["id"],
|
212
|
+
resource_task_id=test_resource_task["id"],
|
213
|
+
sequence=scheduler_job_job_activity_step_sequence,
|
214
|
+
step_name=scheduler_job_job_activity_step_step_name,
|
215
|
+
target_name=test_target["name"])
|
216
|
+
```
|
217
|
+
|
218
|
+
|
219
|
+
:param str job_activity_id: unique jobActivity identifier
|
220
|
+
:param str resource_task_id: Task Id
|
221
|
+
:param str scheduler_job_id: unique SchedulerJob identifier
|
222
|
+
:param str sequence: Task Order Sequence
|
223
|
+
:param str step_name: Unique step name
|
224
|
+
:param str target_name: Unique target name
|
225
|
+
"""
|
226
|
+
__args__ = dict()
|
227
|
+
__args__['filters'] = filters
|
228
|
+
__args__['jobActivityId'] = job_activity_id
|
229
|
+
__args__['resourceTaskId'] = resource_task_id
|
230
|
+
__args__['schedulerJobId'] = scheduler_job_id
|
231
|
+
__args__['sequence'] = sequence
|
232
|
+
__args__['stepName'] = step_name
|
233
|
+
__args__['targetName'] = target_name
|
234
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
235
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerJobJobActivitySteps:getSchedulerJobJobActivitySteps', __args__, opts=opts, typ=GetSchedulerJobJobActivityStepsResult)
|
236
|
+
return __ret__.apply(lambda __response__: GetSchedulerJobJobActivityStepsResult(
|
237
|
+
filters=pulumi.get(__response__, 'filters'),
|
238
|
+
id=pulumi.get(__response__, 'id'),
|
239
|
+
job_activity_id=pulumi.get(__response__, 'job_activity_id'),
|
240
|
+
resource_task_id=pulumi.get(__response__, 'resource_task_id'),
|
241
|
+
scheduler_job_id=pulumi.get(__response__, 'scheduler_job_id'),
|
242
|
+
sequence=pulumi.get(__response__, 'sequence'),
|
243
|
+
step_collections=pulumi.get(__response__, 'step_collections'),
|
244
|
+
step_name=pulumi.get(__response__, 'step_name'),
|
245
|
+
target_name=pulumi.get(__response__, 'target_name')))
|
@@ -126,7 +126,7 @@ class GetTaskRecordResult:
|
|
126
126
|
@pulumi.getter
|
127
127
|
def id(self) -> str:
|
128
128
|
"""
|
129
|
-
The
|
129
|
+
The OCID of the resource.
|
130
130
|
"""
|
131
131
|
return pulumi.get(self, "id")
|
132
132
|
|
@@ -229,7 +229,7 @@ def get_task_record(task_record_id: Optional[str] = None,
|
|
229
229
|
"""
|
230
230
|
This data source provides details about a specific Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
231
231
|
|
232
|
-
Gets a
|
232
|
+
Gets a Task by identifier
|
233
233
|
|
234
234
|
## Example Usage
|
235
235
|
|
@@ -270,7 +270,7 @@ def get_task_record_output(task_record_id: Optional[pulumi.Input[str]] = None,
|
|
270
270
|
"""
|
271
271
|
This data source provides details about a specific Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
272
272
|
|
273
|
-
Gets a
|
273
|
+
Gets a Task by identifier
|
274
274
|
|
275
275
|
## Example Usage
|
276
276
|
|
@@ -34,17 +34,17 @@ class MaintenanceWindowArgs:
|
|
34
34
|
"""
|
35
35
|
The set of arguments for constructing a MaintenanceWindow resource.
|
36
36
|
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
37
|
-
:param pulumi.Input[str] duration: (Updatable) Duration
|
37
|
+
:param pulumi.Input[str] duration: (Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
38
38
|
: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"}`
|
39
39
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
40
40
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
41
41
|
: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"}`
|
42
|
-
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage?
|
43
|
-
:param pulumi.Input[bool] is_recurring: (Updatable) Is this
|
42
|
+
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
43
|
+
:param pulumi.Input[bool] is_recurring: (Updatable) Is this a recurring maintenance window?
|
44
44
|
:param pulumi.Input[str] maintenance_window_type: (Updatable) Type of maintenenace window
|
45
|
-
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if recurring
|
46
|
-
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff
|
47
|
-
:param pulumi.Input[str] time_schedule_start: (Updatable)
|
45
|
+
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
46
|
+
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff time for the maintenance window.
|
47
|
+
:param pulumi.Input[str] time_schedule_start: (Updatable) Specify the date and time of the day that the maintenance window starts.
|
48
48
|
|
49
49
|
|
50
50
|
** IMPORTANT **
|
@@ -89,7 +89,7 @@ class MaintenanceWindowArgs:
|
|
89
89
|
@pulumi.getter
|
90
90
|
def duration(self) -> pulumi.Input[str]:
|
91
91
|
"""
|
92
|
-
(Updatable) Duration
|
92
|
+
(Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
93
93
|
"""
|
94
94
|
return pulumi.get(self, "duration")
|
95
95
|
|
@@ -149,7 +149,7 @@ class MaintenanceWindowArgs:
|
|
149
149
|
@pulumi.getter(name="isOutage")
|
150
150
|
def is_outage(self) -> Optional[pulumi.Input[bool]]:
|
151
151
|
"""
|
152
|
-
(Updatable) Does the maintenenace window cause outage?
|
152
|
+
(Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
153
153
|
"""
|
154
154
|
return pulumi.get(self, "is_outage")
|
155
155
|
|
@@ -161,7 +161,7 @@ class MaintenanceWindowArgs:
|
|
161
161
|
@pulumi.getter(name="isRecurring")
|
162
162
|
def is_recurring(self) -> Optional[pulumi.Input[bool]]:
|
163
163
|
"""
|
164
|
-
(Updatable) Is this
|
164
|
+
(Updatable) Is this a recurring maintenance window?
|
165
165
|
"""
|
166
166
|
return pulumi.get(self, "is_recurring")
|
167
167
|
|
@@ -185,7 +185,7 @@ class MaintenanceWindowArgs:
|
|
185
185
|
@pulumi.getter
|
186
186
|
def recurrences(self) -> Optional[pulumi.Input[str]]:
|
187
187
|
"""
|
188
|
-
(Updatable) Recurrence rule specification if recurring
|
188
|
+
(Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
189
189
|
"""
|
190
190
|
return pulumi.get(self, "recurrences")
|
191
191
|
|
@@ -197,7 +197,7 @@ class MaintenanceWindowArgs:
|
|
197
197
|
@pulumi.getter(name="taskInitiationCutoff")
|
198
198
|
def task_initiation_cutoff(self) -> Optional[pulumi.Input[int]]:
|
199
199
|
"""
|
200
|
-
(Updatable) Task initiation cutoff
|
200
|
+
(Updatable) Task initiation cutoff time for the maintenance window.
|
201
201
|
"""
|
202
202
|
return pulumi.get(self, "task_initiation_cutoff")
|
203
203
|
|
@@ -209,7 +209,7 @@ class MaintenanceWindowArgs:
|
|
209
209
|
@pulumi.getter(name="timeScheduleStart")
|
210
210
|
def time_schedule_start(self) -> Optional[pulumi.Input[str]]:
|
211
211
|
"""
|
212
|
-
(Updatable)
|
212
|
+
(Updatable) Specify the date and time of the day that the maintenance window starts.
|
213
213
|
|
214
214
|
|
215
215
|
** IMPORTANT **
|
@@ -249,19 +249,19 @@ class _MaintenanceWindowState:
|
|
249
249
|
: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"}`
|
250
250
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
251
251
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
252
|
-
:param pulumi.Input[str] duration: (Updatable) Duration
|
252
|
+
:param pulumi.Input[str] duration: (Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
253
253
|
: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"}`
|
254
|
-
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage?
|
255
|
-
:param pulumi.Input[bool] is_recurring: (Updatable) Is this
|
254
|
+
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
255
|
+
:param pulumi.Input[bool] is_recurring: (Updatable) Is this a recurring maintenance window?
|
256
256
|
: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.
|
257
257
|
:param pulumi.Input[str] maintenance_window_type: (Updatable) Type of maintenenace window
|
258
|
-
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if recurring
|
258
|
+
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
259
259
|
:param pulumi.Input[str] resource_region: Associated region
|
260
260
|
:param pulumi.Input[str] state: The current state of the MaintenanceWindow.
|
261
261
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
262
|
-
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff
|
262
|
+
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff time for the maintenance window.
|
263
263
|
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
264
|
-
:param pulumi.Input[str] time_schedule_start: (Updatable)
|
264
|
+
:param pulumi.Input[str] time_schedule_start: (Updatable) Specify the date and time of the day that the maintenance window starts.
|
265
265
|
|
266
266
|
|
267
267
|
** IMPORTANT **
|
@@ -357,7 +357,7 @@ class _MaintenanceWindowState:
|
|
357
357
|
@pulumi.getter
|
358
358
|
def duration(self) -> Optional[pulumi.Input[str]]:
|
359
359
|
"""
|
360
|
-
(Updatable) Duration
|
360
|
+
(Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
361
361
|
"""
|
362
362
|
return pulumi.get(self, "duration")
|
363
363
|
|
@@ -381,7 +381,7 @@ class _MaintenanceWindowState:
|
|
381
381
|
@pulumi.getter(name="isOutage")
|
382
382
|
def is_outage(self) -> Optional[pulumi.Input[bool]]:
|
383
383
|
"""
|
384
|
-
(Updatable) Does the maintenenace window cause outage?
|
384
|
+
(Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
385
385
|
"""
|
386
386
|
return pulumi.get(self, "is_outage")
|
387
387
|
|
@@ -393,7 +393,7 @@ class _MaintenanceWindowState:
|
|
393
393
|
@pulumi.getter(name="isRecurring")
|
394
394
|
def is_recurring(self) -> Optional[pulumi.Input[bool]]:
|
395
395
|
"""
|
396
|
-
(Updatable) Is this
|
396
|
+
(Updatable) Is this a recurring maintenance window?
|
397
397
|
"""
|
398
398
|
return pulumi.get(self, "is_recurring")
|
399
399
|
|
@@ -429,7 +429,7 @@ class _MaintenanceWindowState:
|
|
429
429
|
@pulumi.getter
|
430
430
|
def recurrences(self) -> Optional[pulumi.Input[str]]:
|
431
431
|
"""
|
432
|
-
(Updatable) Recurrence rule specification if recurring
|
432
|
+
(Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
433
433
|
"""
|
434
434
|
return pulumi.get(self, "recurrences")
|
435
435
|
|
@@ -477,7 +477,7 @@ class _MaintenanceWindowState:
|
|
477
477
|
@pulumi.getter(name="taskInitiationCutoff")
|
478
478
|
def task_initiation_cutoff(self) -> Optional[pulumi.Input[int]]:
|
479
479
|
"""
|
480
|
-
(Updatable) Task initiation cutoff
|
480
|
+
(Updatable) Task initiation cutoff time for the maintenance window.
|
481
481
|
"""
|
482
482
|
return pulumi.get(self, "task_initiation_cutoff")
|
483
483
|
|
@@ -501,7 +501,7 @@ class _MaintenanceWindowState:
|
|
501
501
|
@pulumi.getter(name="timeScheduleStart")
|
502
502
|
def time_schedule_start(self) -> Optional[pulumi.Input[str]]:
|
503
503
|
"""
|
504
|
-
(Updatable)
|
504
|
+
(Updatable) Specify the date and time of the day that the maintenance window starts.
|
505
505
|
|
506
506
|
|
507
507
|
** IMPORTANT **
|
@@ -547,7 +547,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
547
547
|
"""
|
548
548
|
This resource provides the Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
549
549
|
|
550
|
-
|
550
|
+
Create a maintenance window in Fleet Application Management.
|
551
551
|
|
552
552
|
## Example Usage
|
553
553
|
|
@@ -588,14 +588,14 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
588
588
|
: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"}`
|
589
589
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
590
590
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
591
|
-
:param pulumi.Input[str] duration: (Updatable) Duration
|
591
|
+
:param pulumi.Input[str] duration: (Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
592
592
|
: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"}`
|
593
|
-
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage?
|
594
|
-
:param pulumi.Input[bool] is_recurring: (Updatable) Is this
|
593
|
+
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
594
|
+
:param pulumi.Input[bool] is_recurring: (Updatable) Is this a recurring maintenance window?
|
595
595
|
:param pulumi.Input[str] maintenance_window_type: (Updatable) Type of maintenenace window
|
596
|
-
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if recurring
|
597
|
-
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff
|
598
|
-
:param pulumi.Input[str] time_schedule_start: (Updatable)
|
596
|
+
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
597
|
+
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff time for the maintenance window.
|
598
|
+
:param pulumi.Input[str] time_schedule_start: (Updatable) Specify the date and time of the day that the maintenance window starts.
|
599
599
|
|
600
600
|
|
601
601
|
** IMPORTANT **
|
@@ -610,7 +610,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
610
610
|
"""
|
611
611
|
This resource provides the Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
612
612
|
|
613
|
-
|
613
|
+
Create a maintenance window in Fleet Application Management.
|
614
614
|
|
615
615
|
## Example Usage
|
616
616
|
|
@@ -742,19 +742,19 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
742
742
|
: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"}`
|
743
743
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
744
744
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
745
|
-
:param pulumi.Input[str] duration: (Updatable) Duration
|
745
|
+
:param pulumi.Input[str] duration: (Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
746
746
|
: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"}`
|
747
|
-
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage?
|
748
|
-
:param pulumi.Input[bool] is_recurring: (Updatable) Is this
|
747
|
+
:param pulumi.Input[bool] is_outage: (Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
748
|
+
:param pulumi.Input[bool] is_recurring: (Updatable) Is this a recurring maintenance window?
|
749
749
|
: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.
|
750
750
|
:param pulumi.Input[str] maintenance_window_type: (Updatable) Type of maintenenace window
|
751
|
-
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if recurring
|
751
|
+
:param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
752
752
|
:param pulumi.Input[str] resource_region: Associated region
|
753
753
|
:param pulumi.Input[str] state: The current state of the MaintenanceWindow.
|
754
754
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
755
|
-
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff
|
755
|
+
:param pulumi.Input[int] task_initiation_cutoff: (Updatable) Task initiation cutoff time for the maintenance window.
|
756
756
|
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
757
|
-
:param pulumi.Input[str] time_schedule_start: (Updatable)
|
757
|
+
:param pulumi.Input[str] time_schedule_start: (Updatable) Specify the date and time of the day that the maintenance window starts.
|
758
758
|
|
759
759
|
|
760
760
|
** IMPORTANT **
|
@@ -821,7 +821,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
821
821
|
@pulumi.getter
|
822
822
|
def duration(self) -> pulumi.Output[str]:
|
823
823
|
"""
|
824
|
-
(Updatable) Duration
|
824
|
+
(Updatable) Duration of the maintenance window. Specify how long the maintenance window remains open.
|
825
825
|
"""
|
826
826
|
return pulumi.get(self, "duration")
|
827
827
|
|
@@ -837,7 +837,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
837
837
|
@pulumi.getter(name="isOutage")
|
838
838
|
def is_outage(self) -> pulumi.Output[bool]:
|
839
839
|
"""
|
840
|
-
(Updatable) Does the maintenenace window cause outage?
|
840
|
+
(Updatable) Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
841
841
|
"""
|
842
842
|
return pulumi.get(self, "is_outage")
|
843
843
|
|
@@ -845,7 +845,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
845
845
|
@pulumi.getter(name="isRecurring")
|
846
846
|
def is_recurring(self) -> pulumi.Output[bool]:
|
847
847
|
"""
|
848
|
-
(Updatable) Is this
|
848
|
+
(Updatable) Is this a recurring maintenance window?
|
849
849
|
"""
|
850
850
|
return pulumi.get(self, "is_recurring")
|
851
851
|
|
@@ -869,7 +869,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
869
869
|
@pulumi.getter
|
870
870
|
def recurrences(self) -> pulumi.Output[str]:
|
871
871
|
"""
|
872
|
-
(Updatable) Recurrence rule specification if recurring
|
872
|
+
(Updatable) Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
873
873
|
"""
|
874
874
|
return pulumi.get(self, "recurrences")
|
875
875
|
|
@@ -901,7 +901,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
901
901
|
@pulumi.getter(name="taskInitiationCutoff")
|
902
902
|
def task_initiation_cutoff(self) -> pulumi.Output[int]:
|
903
903
|
"""
|
904
|
-
(Updatable) Task initiation cutoff
|
904
|
+
(Updatable) Task initiation cutoff time for the maintenance window.
|
905
905
|
"""
|
906
906
|
return pulumi.get(self, "task_initiation_cutoff")
|
907
907
|
|
@@ -917,7 +917,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
917
917
|
@pulumi.getter(name="timeScheduleStart")
|
918
918
|
def time_schedule_start(self) -> pulumi.Output[str]:
|
919
919
|
"""
|
920
|
-
(Updatable)
|
920
|
+
(Updatable) Specify the date and time of the day that the maintenance window starts.
|
921
921
|
|
922
922
|
|
923
923
|
** IMPORTANT **
|