pulumi-oci 2.14.0a1730198001__py3-none-any.whl → 2.15.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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/get_model.py +29 -4
- pulumi_oci/datascience/get_models.py +25 -5
- pulumi_oci/datascience/model.py +205 -4
- pulumi_oci/datascience/outputs.py +19 -1
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +13 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +36 -34
- {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -88,19 +88,20 @@ if not MYPY:
|
|
88
88
|
class ScheduleResourceFilterArgsDict(TypedDict):
|
89
89
|
attribute: pulumi.Input[str]
|
90
90
|
"""
|
91
|
-
(Updatable) This is the resource attribute on which the threshold is defined.
|
91
|
+
(Updatable) This is the resource attribute on which the threshold is defined. We support 5 different types of attributes: `DEFINED_TAGS`, `COMPARTMENT_ID`, `TIME_CREATED`, `LIFECYCLE_STATE` and `RESOURCE_TYPE`.
|
92
92
|
"""
|
93
93
|
condition: NotRequired[pulumi.Input[str]]
|
94
94
|
"""
|
95
|
-
|
95
|
+
This is the condition for the filter in comparison to its creation time.
|
96
96
|
"""
|
97
97
|
should_include_child_compartments: NotRequired[pulumi.Input[bool]]
|
98
98
|
"""
|
99
|
-
|
99
|
+
This sets whether to include child compartments.
|
100
100
|
"""
|
101
101
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgsDict']]]]
|
102
102
|
"""
|
103
|
-
(Updatable) This is a collection of resource
|
103
|
+
(Updatable) This is a collection of resource filter values, different types of filter has different value format, see below:
|
104
|
+
* When `attribute="DEFINED_TAGS"`:
|
104
105
|
"""
|
105
106
|
elif False:
|
106
107
|
ScheduleResourceFilterArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -113,10 +114,11 @@ class ScheduleResourceFilterArgs:
|
|
113
114
|
should_include_child_compartments: Optional[pulumi.Input[bool]] = None,
|
114
115
|
values: Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]]] = None):
|
115
116
|
"""
|
116
|
-
:param pulumi.Input[str] attribute: (Updatable) This is the resource attribute on which the threshold is defined.
|
117
|
-
:param pulumi.Input[str] condition:
|
118
|
-
:param pulumi.Input[bool] should_include_child_compartments:
|
119
|
-
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]] values: (Updatable) This is a collection of resource
|
117
|
+
:param pulumi.Input[str] attribute: (Updatable) This is the resource attribute on which the threshold is defined. We support 5 different types of attributes: `DEFINED_TAGS`, `COMPARTMENT_ID`, `TIME_CREATED`, `LIFECYCLE_STATE` and `RESOURCE_TYPE`.
|
118
|
+
:param pulumi.Input[str] condition: This is the condition for the filter in comparison to its creation time.
|
119
|
+
:param pulumi.Input[bool] should_include_child_compartments: This sets whether to include child compartments.
|
120
|
+
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]] values: (Updatable) This is a collection of resource filter values, different types of filter has different value format, see below:
|
121
|
+
* When `attribute="DEFINED_TAGS"`:
|
120
122
|
"""
|
121
123
|
pulumi.set(__self__, "attribute", attribute)
|
122
124
|
if condition is not None:
|
@@ -130,7 +132,7 @@ class ScheduleResourceFilterArgs:
|
|
130
132
|
@pulumi.getter
|
131
133
|
def attribute(self) -> pulumi.Input[str]:
|
132
134
|
"""
|
133
|
-
(Updatable) This is the resource attribute on which the threshold is defined.
|
135
|
+
(Updatable) This is the resource attribute on which the threshold is defined. We support 5 different types of attributes: `DEFINED_TAGS`, `COMPARTMENT_ID`, `TIME_CREATED`, `LIFECYCLE_STATE` and `RESOURCE_TYPE`.
|
134
136
|
"""
|
135
137
|
return pulumi.get(self, "attribute")
|
136
138
|
|
@@ -142,7 +144,7 @@ class ScheduleResourceFilterArgs:
|
|
142
144
|
@pulumi.getter
|
143
145
|
def condition(self) -> Optional[pulumi.Input[str]]:
|
144
146
|
"""
|
145
|
-
|
147
|
+
This is the condition for the filter in comparison to its creation time.
|
146
148
|
"""
|
147
149
|
return pulumi.get(self, "condition")
|
148
150
|
|
@@ -154,7 +156,7 @@ class ScheduleResourceFilterArgs:
|
|
154
156
|
@pulumi.getter(name="shouldIncludeChildCompartments")
|
155
157
|
def should_include_child_compartments(self) -> Optional[pulumi.Input[bool]]:
|
156
158
|
"""
|
157
|
-
|
159
|
+
This sets whether to include child compartments.
|
158
160
|
"""
|
159
161
|
return pulumi.get(self, "should_include_child_compartments")
|
160
162
|
|
@@ -166,7 +168,8 @@ class ScheduleResourceFilterArgs:
|
|
166
168
|
@pulumi.getter
|
167
169
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]]]:
|
168
170
|
"""
|
169
|
-
(Updatable) This is a collection of resource
|
171
|
+
(Updatable) This is a collection of resource filter values, different types of filter has different value format, see below:
|
172
|
+
* When `attribute="DEFINED_TAGS"`:
|
170
173
|
"""
|
171
174
|
return pulumi.get(self, "values")
|
172
175
|
|
@@ -179,15 +182,15 @@ if not MYPY:
|
|
179
182
|
class ScheduleResourceFilterValueArgsDict(TypedDict):
|
180
183
|
namespace: NotRequired[pulumi.Input[str]]
|
181
184
|
"""
|
182
|
-
|
185
|
+
This is the namespace of the defined tag.
|
183
186
|
"""
|
184
187
|
tag_key: NotRequired[pulumi.Input[str]]
|
185
188
|
"""
|
186
|
-
|
189
|
+
This is the key of the defined tag.
|
187
190
|
"""
|
188
191
|
value: NotRequired[pulumi.Input[str]]
|
189
192
|
"""
|
190
|
-
|
193
|
+
This is the lifecycle state value used for filtering.
|
191
194
|
"""
|
192
195
|
elif False:
|
193
196
|
ScheduleResourceFilterValueArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -199,9 +202,9 @@ class ScheduleResourceFilterValueArgs:
|
|
199
202
|
tag_key: Optional[pulumi.Input[str]] = None,
|
200
203
|
value: Optional[pulumi.Input[str]] = None):
|
201
204
|
"""
|
202
|
-
:param pulumi.Input[str] namespace:
|
203
|
-
:param pulumi.Input[str] tag_key:
|
204
|
-
:param pulumi.Input[str] value:
|
205
|
+
:param pulumi.Input[str] namespace: This is the namespace of the defined tag.
|
206
|
+
:param pulumi.Input[str] tag_key: This is the key of the defined tag.
|
207
|
+
:param pulumi.Input[str] value: This is the lifecycle state value used for filtering.
|
205
208
|
"""
|
206
209
|
if namespace is not None:
|
207
210
|
pulumi.set(__self__, "namespace", namespace)
|
@@ -214,7 +217,7 @@ class ScheduleResourceFilterValueArgs:
|
|
214
217
|
@pulumi.getter
|
215
218
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
216
219
|
"""
|
217
|
-
|
220
|
+
This is the namespace of the defined tag.
|
218
221
|
"""
|
219
222
|
return pulumi.get(self, "namespace")
|
220
223
|
|
@@ -226,7 +229,7 @@ class ScheduleResourceFilterValueArgs:
|
|
226
229
|
@pulumi.getter(name="tagKey")
|
227
230
|
def tag_key(self) -> Optional[pulumi.Input[str]]:
|
228
231
|
"""
|
229
|
-
|
232
|
+
This is the key of the defined tag.
|
230
233
|
"""
|
231
234
|
return pulumi.get(self, "tag_key")
|
232
235
|
|
@@ -238,7 +241,7 @@ class ScheduleResourceFilterValueArgs:
|
|
238
241
|
@pulumi.getter
|
239
242
|
def value(self) -> Optional[pulumi.Input[str]]:
|
240
243
|
"""
|
241
|
-
|
244
|
+
This is the lifecycle state value used for filtering.
|
242
245
|
"""
|
243
246
|
return pulumi.get(self, "value")
|
244
247
|
|
@@ -135,15 +135,15 @@ def get_schedules(compartment_id: Optional[str] = None,
|
|
135
135
|
import pulumi_oci as oci
|
136
136
|
|
137
137
|
test_schedules = oci.ResourceScheduler.get_schedules(compartment_id=compartment_id,
|
138
|
-
display_name=schedule_display_name,
|
139
138
|
schedule_id=test_schedule["id"],
|
139
|
+
display_name=schedule_display_name,
|
140
140
|
state=schedule_state)
|
141
141
|
```
|
142
142
|
|
143
143
|
|
144
|
-
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
144
|
+
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
145
145
|
:param str display_name: This is a filter to return only resources that match the given display name exactly.
|
146
|
-
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule.
|
146
|
+
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
147
147
|
:param str state: This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
148
148
|
"""
|
149
149
|
__args__ = dict()
|
@@ -181,15 +181,15 @@ def get_schedules_output(compartment_id: Optional[pulumi.Input[Optional[str]]] =
|
|
181
181
|
import pulumi_oci as oci
|
182
182
|
|
183
183
|
test_schedules = oci.ResourceScheduler.get_schedules(compartment_id=compartment_id,
|
184
|
-
display_name=schedule_display_name,
|
185
184
|
schedule_id=test_schedule["id"],
|
185
|
+
display_name=schedule_display_name,
|
186
186
|
state=schedule_state)
|
187
187
|
```
|
188
188
|
|
189
189
|
|
190
|
-
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
190
|
+
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
191
191
|
:param str display_name: This is a filter to return only resources that match the given display name exactly.
|
192
|
-
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule.
|
192
|
+
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
193
193
|
:param str state: This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
194
194
|
"""
|
195
195
|
__args__ = dict()
|
@@ -89,10 +89,11 @@ class ScheduleResourceFilter(dict):
|
|
89
89
|
should_include_child_compartments: Optional[bool] = None,
|
90
90
|
values: Optional[Sequence['outputs.ScheduleResourceFilterValue']] = None):
|
91
91
|
"""
|
92
|
-
:param str attribute: (Updatable) This is the resource attribute on which the threshold is defined.
|
93
|
-
:param str condition:
|
94
|
-
:param bool should_include_child_compartments:
|
95
|
-
:param Sequence['ScheduleResourceFilterValueArgs'] values: (Updatable) This is a collection of resource
|
92
|
+
:param str attribute: (Updatable) This is the resource attribute on which the threshold is defined. We support 5 different types of attributes: `DEFINED_TAGS`, `COMPARTMENT_ID`, `TIME_CREATED`, `LIFECYCLE_STATE` and `RESOURCE_TYPE`.
|
93
|
+
:param str condition: This is the condition for the filter in comparison to its creation time.
|
94
|
+
:param bool should_include_child_compartments: This sets whether to include child compartments.
|
95
|
+
:param Sequence['ScheduleResourceFilterValueArgs'] values: (Updatable) This is a collection of resource filter values, different types of filter has different value format, see below:
|
96
|
+
* When `attribute="DEFINED_TAGS"`:
|
96
97
|
"""
|
97
98
|
pulumi.set(__self__, "attribute", attribute)
|
98
99
|
if condition is not None:
|
@@ -106,7 +107,7 @@ class ScheduleResourceFilter(dict):
|
|
106
107
|
@pulumi.getter
|
107
108
|
def attribute(self) -> str:
|
108
109
|
"""
|
109
|
-
(Updatable) This is the resource attribute on which the threshold is defined.
|
110
|
+
(Updatable) This is the resource attribute on which the threshold is defined. We support 5 different types of attributes: `DEFINED_TAGS`, `COMPARTMENT_ID`, `TIME_CREATED`, `LIFECYCLE_STATE` and `RESOURCE_TYPE`.
|
110
111
|
"""
|
111
112
|
return pulumi.get(self, "attribute")
|
112
113
|
|
@@ -114,7 +115,7 @@ class ScheduleResourceFilter(dict):
|
|
114
115
|
@pulumi.getter
|
115
116
|
def condition(self) -> Optional[str]:
|
116
117
|
"""
|
117
|
-
|
118
|
+
This is the condition for the filter in comparison to its creation time.
|
118
119
|
"""
|
119
120
|
return pulumi.get(self, "condition")
|
120
121
|
|
@@ -122,7 +123,7 @@ class ScheduleResourceFilter(dict):
|
|
122
123
|
@pulumi.getter(name="shouldIncludeChildCompartments")
|
123
124
|
def should_include_child_compartments(self) -> Optional[bool]:
|
124
125
|
"""
|
125
|
-
|
126
|
+
This sets whether to include child compartments.
|
126
127
|
"""
|
127
128
|
return pulumi.get(self, "should_include_child_compartments")
|
128
129
|
|
@@ -130,7 +131,8 @@ class ScheduleResourceFilter(dict):
|
|
130
131
|
@pulumi.getter
|
131
132
|
def values(self) -> Optional[Sequence['outputs.ScheduleResourceFilterValue']]:
|
132
133
|
"""
|
133
|
-
(Updatable) This is a collection of resource
|
134
|
+
(Updatable) This is a collection of resource filter values, different types of filter has different value format, see below:
|
135
|
+
* When `attribute="DEFINED_TAGS"`:
|
134
136
|
"""
|
135
137
|
return pulumi.get(self, "values")
|
136
138
|
|
@@ -159,9 +161,9 @@ class ScheduleResourceFilterValue(dict):
|
|
159
161
|
tag_key: Optional[str] = None,
|
160
162
|
value: Optional[str] = None):
|
161
163
|
"""
|
162
|
-
:param str namespace:
|
163
|
-
:param str tag_key:
|
164
|
-
:param str value:
|
164
|
+
:param str namespace: This is the namespace of the defined tag.
|
165
|
+
:param str tag_key: This is the key of the defined tag.
|
166
|
+
:param str value: This is the lifecycle state value used for filtering.
|
165
167
|
"""
|
166
168
|
if namespace is not None:
|
167
169
|
pulumi.set(__self__, "namespace", namespace)
|
@@ -174,7 +176,7 @@ class ScheduleResourceFilterValue(dict):
|
|
174
176
|
@pulumi.getter
|
175
177
|
def namespace(self) -> Optional[str]:
|
176
178
|
"""
|
177
|
-
|
179
|
+
This is the namespace of the defined tag.
|
178
180
|
"""
|
179
181
|
return pulumi.get(self, "namespace")
|
180
182
|
|
@@ -182,7 +184,7 @@ class ScheduleResourceFilterValue(dict):
|
|
182
184
|
@pulumi.getter(name="tagKey")
|
183
185
|
def tag_key(self) -> Optional[str]:
|
184
186
|
"""
|
185
|
-
|
187
|
+
This is the key of the defined tag.
|
186
188
|
"""
|
187
189
|
return pulumi.get(self, "tag_key")
|
188
190
|
|
@@ -190,7 +192,7 @@ class ScheduleResourceFilterValue(dict):
|
|
190
192
|
@pulumi.getter
|
191
193
|
def value(self) -> Optional[str]:
|
192
194
|
"""
|
193
|
-
|
195
|
+
This is the lifecycle state value used for filtering.
|
194
196
|
"""
|
195
197
|
return pulumi.get(self, "value")
|
196
198
|
|
@@ -378,7 +380,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
|
|
378
380
|
time_updated: str):
|
379
381
|
"""
|
380
382
|
:param str action: This is the action that will be executed by the schedule.
|
381
|
-
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
383
|
+
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
382
384
|
:param Mapping[str, str] defined_tags: These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
383
385
|
:param str description: This is the description of the schedule.
|
384
386
|
:param str display_name: This is a filter to return only resources that match the given display name exactly.
|
@@ -429,7 +431,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
|
|
429
431
|
@pulumi.getter(name="compartmentId")
|
430
432
|
def compartment_id(self) -> str:
|
431
433
|
"""
|
432
|
-
This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
434
|
+
This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. You need to at least provide either `compartment_id` or `schedule_id` or both.
|
433
435
|
"""
|
434
436
|
return pulumi.get(self, "compartment_id")
|
435
437
|
|
@@ -38,8 +38,8 @@ class ScheduleArgs:
|
|
38
38
|
The set of arguments for constructing a Schedule resource.
|
39
39
|
:param pulumi.Input[str] action: (Updatable) This is the action that will be executed by the schedule.
|
40
40
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
|
41
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
42
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
41
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
42
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
43
43
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
44
44
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
45
45
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
@@ -105,7 +105,7 @@ class ScheduleArgs:
|
|
105
105
|
@pulumi.getter(name="recurrenceDetails")
|
106
106
|
def recurrence_details(self) -> pulumi.Input[str]:
|
107
107
|
"""
|
108
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
108
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
109
109
|
"""
|
110
110
|
return pulumi.get(self, "recurrence_details")
|
111
111
|
|
@@ -117,7 +117,7 @@ class ScheduleArgs:
|
|
117
117
|
@pulumi.getter(name="recurrenceType")
|
118
118
|
def recurrence_type(self) -> pulumi.Input[str]:
|
119
119
|
"""
|
120
|
-
(Updatable) Type of recurrence of a schedule
|
120
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
121
121
|
"""
|
122
122
|
return pulumi.get(self, "recurrence_type")
|
123
123
|
|
@@ -267,8 +267,8 @@ class _ScheduleState:
|
|
267
267
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
268
268
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
269
269
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
270
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
271
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
270
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
271
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
272
272
|
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterArgs']]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
273
273
|
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceArgs']]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
274
274
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -397,7 +397,7 @@ class _ScheduleState:
|
|
397
397
|
@pulumi.getter(name="recurrenceDetails")
|
398
398
|
def recurrence_details(self) -> Optional[pulumi.Input[str]]:
|
399
399
|
"""
|
400
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
400
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
401
401
|
"""
|
402
402
|
return pulumi.get(self, "recurrence_details")
|
403
403
|
|
@@ -409,7 +409,7 @@ class _ScheduleState:
|
|
409
409
|
@pulumi.getter(name="recurrenceType")
|
410
410
|
def recurrence_type(self) -> Optional[pulumi.Input[str]]:
|
411
411
|
"""
|
412
|
-
(Updatable) Type of recurrence of a schedule
|
412
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
413
413
|
"""
|
414
414
|
return pulumi.get(self, "recurrence_type")
|
415
415
|
|
@@ -566,43 +566,6 @@ class Schedule(pulumi.CustomResource):
|
|
566
566
|
|
567
567
|
Creates a Schedule
|
568
568
|
|
569
|
-
## Example Usage
|
570
|
-
|
571
|
-
```python
|
572
|
-
import pulumi
|
573
|
-
import pulumi_oci as oci
|
574
|
-
|
575
|
-
test_schedule = oci.resource_scheduler.Schedule("test_schedule",
|
576
|
-
action=schedule_action,
|
577
|
-
compartment_id=compartment_id,
|
578
|
-
recurrence_details=schedule_recurrence_details,
|
579
|
-
recurrence_type=schedule_recurrence_type,
|
580
|
-
defined_tags={
|
581
|
-
"Operations.CostCenter": "42",
|
582
|
-
},
|
583
|
-
description=schedule_description,
|
584
|
-
display_name=schedule_display_name,
|
585
|
-
freeform_tags={
|
586
|
-
"Department": "Finance",
|
587
|
-
},
|
588
|
-
resource_filters=[{
|
589
|
-
"attribute": schedule_resource_filters_attribute,
|
590
|
-
"condition": schedule_resource_filters_condition,
|
591
|
-
"should_include_child_compartments": schedule_resource_filters_should_include_child_compartments,
|
592
|
-
"values": [{
|
593
|
-
"namespace": schedule_resource_filters_value_namespace,
|
594
|
-
"tag_key": schedule_resource_filters_value_tag_key,
|
595
|
-
"value": schedule_resource_filters_value_value,
|
596
|
-
}],
|
597
|
-
}],
|
598
|
-
resources=[{
|
599
|
-
"id": schedule_resources_id,
|
600
|
-
"metadata": schedule_resources_metadata,
|
601
|
-
}],
|
602
|
-
time_ends=schedule_time_ends,
|
603
|
-
time_starts=schedule_time_starts)
|
604
|
-
```
|
605
|
-
|
606
569
|
## Import
|
607
570
|
|
608
571
|
Schedules can be imported using the `id`, e.g.
|
@@ -619,8 +582,8 @@ class Schedule(pulumi.CustomResource):
|
|
619
582
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
620
583
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
621
584
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
622
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
623
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
585
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
586
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
624
587
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
625
588
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
626
589
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -642,43 +605,6 @@ class Schedule(pulumi.CustomResource):
|
|
642
605
|
|
643
606
|
Creates a Schedule
|
644
607
|
|
645
|
-
## Example Usage
|
646
|
-
|
647
|
-
```python
|
648
|
-
import pulumi
|
649
|
-
import pulumi_oci as oci
|
650
|
-
|
651
|
-
test_schedule = oci.resource_scheduler.Schedule("test_schedule",
|
652
|
-
action=schedule_action,
|
653
|
-
compartment_id=compartment_id,
|
654
|
-
recurrence_details=schedule_recurrence_details,
|
655
|
-
recurrence_type=schedule_recurrence_type,
|
656
|
-
defined_tags={
|
657
|
-
"Operations.CostCenter": "42",
|
658
|
-
},
|
659
|
-
description=schedule_description,
|
660
|
-
display_name=schedule_display_name,
|
661
|
-
freeform_tags={
|
662
|
-
"Department": "Finance",
|
663
|
-
},
|
664
|
-
resource_filters=[{
|
665
|
-
"attribute": schedule_resource_filters_attribute,
|
666
|
-
"condition": schedule_resource_filters_condition,
|
667
|
-
"should_include_child_compartments": schedule_resource_filters_should_include_child_compartments,
|
668
|
-
"values": [{
|
669
|
-
"namespace": schedule_resource_filters_value_namespace,
|
670
|
-
"tag_key": schedule_resource_filters_value_tag_key,
|
671
|
-
"value": schedule_resource_filters_value_value,
|
672
|
-
}],
|
673
|
-
}],
|
674
|
-
resources=[{
|
675
|
-
"id": schedule_resources_id,
|
676
|
-
"metadata": schedule_resources_metadata,
|
677
|
-
}],
|
678
|
-
time_ends=schedule_time_ends,
|
679
|
-
time_starts=schedule_time_starts)
|
680
|
-
```
|
681
|
-
|
682
608
|
## Import
|
683
609
|
|
684
610
|
Schedules can be imported using the `id`, e.g.
|
@@ -791,8 +717,8 @@ class Schedule(pulumi.CustomResource):
|
|
791
717
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
792
718
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
793
719
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
794
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
795
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
720
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
721
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
796
722
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
797
723
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
798
724
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -884,7 +810,7 @@ class Schedule(pulumi.CustomResource):
|
|
884
810
|
@pulumi.getter(name="recurrenceDetails")
|
885
811
|
def recurrence_details(self) -> pulumi.Output[str]:
|
886
812
|
"""
|
887
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
813
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
888
814
|
"""
|
889
815
|
return pulumi.get(self, "recurrence_details")
|
890
816
|
|
@@ -892,7 +818,7 @@ class Schedule(pulumi.CustomResource):
|
|
892
818
|
@pulumi.getter(name="recurrenceType")
|
893
819
|
def recurrence_type(self) -> pulumi.Output[str]:
|
894
820
|
"""
|
895
|
-
(Updatable) Type of recurrence of a schedule
|
821
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
896
822
|
"""
|
897
823
|
return pulumi.get(self, "recurrence_type")
|
898
824
|
|