pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.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 +8 -0
- pulumi_oci/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +6 -6
- pulumi_oci/database/_inputs.py +49 -1
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +128 -4
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +749 -0
- pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
- pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
- pulumi_oci/dataintegration/outputs.py +2826 -912
- pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
- pulumi_oci/datascience/_inputs.py +204 -0
- pulumi_oci/datascience/get_job.py +14 -1
- pulumi_oci/datascience/get_job_run.py +14 -1
- pulumi_oci/datascience/get_model_version_set.py +14 -1
- pulumi_oci/datascience/get_private_endpoint.py +14 -1
- pulumi_oci/datascience/get_project.py +14 -1
- pulumi_oci/datascience/job.py +63 -0
- pulumi_oci/datascience/job_run.py +63 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +549 -0
- pulumi_oci/datascience/private_endpoint.py +28 -0
- pulumi_oci/datascience/project.py +28 -0
- pulumi_oci/loganalytics/_inputs.py +80 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
- pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
- pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
- pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
- pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
- pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
- pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
- pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
- pulumi_oci/loganalytics/outputs.py +271 -4
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +40 -37
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,926 @@
|
|
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__ = ['WorkspaceApplicationScheduleArgs', 'WorkspaceApplicationSchedule']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class WorkspaceApplicationScheduleArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
application_key: pulumi.Input[str],
|
20
|
+
identifier: pulumi.Input[str],
|
21
|
+
workspace_id: pulumi.Input[str],
|
22
|
+
description: Optional[pulumi.Input[str]] = None,
|
23
|
+
frequency_details: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']] = None,
|
24
|
+
is_daylight_adjustment_enabled: Optional[pulumi.Input[bool]] = None,
|
25
|
+
key: Optional[pulumi.Input[str]] = None,
|
26
|
+
model_version: Optional[pulumi.Input[str]] = None,
|
27
|
+
name: Optional[pulumi.Input[str]] = None,
|
28
|
+
object_status: Optional[pulumi.Input[int]] = None,
|
29
|
+
object_version: Optional[pulumi.Input[int]] = None,
|
30
|
+
registry_metadata: Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']] = None,
|
31
|
+
timezone: Optional[pulumi.Input[str]] = None):
|
32
|
+
"""
|
33
|
+
The set of arguments for constructing a WorkspaceApplicationSchedule resource.
|
34
|
+
:param pulumi.Input[str] application_key: The application key.
|
35
|
+
:param pulumi.Input[str] identifier: (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
36
|
+
:param pulumi.Input[str] workspace_id: The workspace ID.
|
37
|
+
|
38
|
+
|
39
|
+
** IMPORTANT **
|
40
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
41
|
+
:param pulumi.Input[str] description: (Updatable) Detailed description for the object.
|
42
|
+
:param pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs'] frequency_details: (Updatable) The model that holds the frequency details.
|
43
|
+
:param pulumi.Input[bool] is_daylight_adjustment_enabled: (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
44
|
+
:param pulumi.Input[str] key: (Updatable) The identifying key for the object.
|
45
|
+
:param pulumi.Input[str] model_version: (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
46
|
+
:param pulumi.Input[str] name: (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
47
|
+
:param pulumi.Input[int] object_status: (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
48
|
+
:param pulumi.Input[int] object_version: (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
49
|
+
:param pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs'] registry_metadata: (Updatable) Information about the object and its parent.
|
50
|
+
:param pulumi.Input[str] timezone: (Updatable) The timezone for the schedule.
|
51
|
+
"""
|
52
|
+
pulumi.set(__self__, "application_key", application_key)
|
53
|
+
pulumi.set(__self__, "identifier", identifier)
|
54
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
55
|
+
if description is not None:
|
56
|
+
pulumi.set(__self__, "description", description)
|
57
|
+
if frequency_details is not None:
|
58
|
+
pulumi.set(__self__, "frequency_details", frequency_details)
|
59
|
+
if is_daylight_adjustment_enabled is not None:
|
60
|
+
pulumi.set(__self__, "is_daylight_adjustment_enabled", is_daylight_adjustment_enabled)
|
61
|
+
if key is not None:
|
62
|
+
pulumi.set(__self__, "key", key)
|
63
|
+
if model_version is not None:
|
64
|
+
pulumi.set(__self__, "model_version", model_version)
|
65
|
+
if name is not None:
|
66
|
+
pulumi.set(__self__, "name", name)
|
67
|
+
if object_status is not None:
|
68
|
+
pulumi.set(__self__, "object_status", object_status)
|
69
|
+
if object_version is not None:
|
70
|
+
pulumi.set(__self__, "object_version", object_version)
|
71
|
+
if registry_metadata is not None:
|
72
|
+
pulumi.set(__self__, "registry_metadata", registry_metadata)
|
73
|
+
if timezone is not None:
|
74
|
+
pulumi.set(__self__, "timezone", timezone)
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="applicationKey")
|
78
|
+
def application_key(self) -> pulumi.Input[str]:
|
79
|
+
"""
|
80
|
+
The application key.
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "application_key")
|
83
|
+
|
84
|
+
@application_key.setter
|
85
|
+
def application_key(self, value: pulumi.Input[str]):
|
86
|
+
pulumi.set(self, "application_key", value)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def identifier(self) -> pulumi.Input[str]:
|
91
|
+
"""
|
92
|
+
(Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "identifier")
|
95
|
+
|
96
|
+
@identifier.setter
|
97
|
+
def identifier(self, value: pulumi.Input[str]):
|
98
|
+
pulumi.set(self, "identifier", value)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="workspaceId")
|
102
|
+
def workspace_id(self) -> pulumi.Input[str]:
|
103
|
+
"""
|
104
|
+
The workspace ID.
|
105
|
+
|
106
|
+
|
107
|
+
** IMPORTANT **
|
108
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "workspace_id")
|
111
|
+
|
112
|
+
@workspace_id.setter
|
113
|
+
def workspace_id(self, value: pulumi.Input[str]):
|
114
|
+
pulumi.set(self, "workspace_id", value)
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter
|
118
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
119
|
+
"""
|
120
|
+
(Updatable) Detailed description for the object.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "description")
|
123
|
+
|
124
|
+
@description.setter
|
125
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
pulumi.set(self, "description", value)
|
127
|
+
|
128
|
+
@property
|
129
|
+
@pulumi.getter(name="frequencyDetails")
|
130
|
+
def frequency_details(self) -> Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']]:
|
131
|
+
"""
|
132
|
+
(Updatable) The model that holds the frequency details.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "frequency_details")
|
135
|
+
|
136
|
+
@frequency_details.setter
|
137
|
+
def frequency_details(self, value: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']]):
|
138
|
+
pulumi.set(self, "frequency_details", value)
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="isDaylightAdjustmentEnabled")
|
142
|
+
def is_daylight_adjustment_enabled(self) -> Optional[pulumi.Input[bool]]:
|
143
|
+
"""
|
144
|
+
(Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "is_daylight_adjustment_enabled")
|
147
|
+
|
148
|
+
@is_daylight_adjustment_enabled.setter
|
149
|
+
def is_daylight_adjustment_enabled(self, value: Optional[pulumi.Input[bool]]):
|
150
|
+
pulumi.set(self, "is_daylight_adjustment_enabled", value)
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter
|
154
|
+
def key(self) -> Optional[pulumi.Input[str]]:
|
155
|
+
"""
|
156
|
+
(Updatable) The identifying key for the object.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "key")
|
159
|
+
|
160
|
+
@key.setter
|
161
|
+
def key(self, value: Optional[pulumi.Input[str]]):
|
162
|
+
pulumi.set(self, "key", value)
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="modelVersion")
|
166
|
+
def model_version(self) -> Optional[pulumi.Input[str]]:
|
167
|
+
"""
|
168
|
+
(Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "model_version")
|
171
|
+
|
172
|
+
@model_version.setter
|
173
|
+
def model_version(self, value: Optional[pulumi.Input[str]]):
|
174
|
+
pulumi.set(self, "model_version", value)
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter
|
178
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
179
|
+
"""
|
180
|
+
(Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "name")
|
183
|
+
|
184
|
+
@name.setter
|
185
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
186
|
+
pulumi.set(self, "name", value)
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="objectStatus")
|
190
|
+
def object_status(self) -> Optional[pulumi.Input[int]]:
|
191
|
+
"""
|
192
|
+
(Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "object_status")
|
195
|
+
|
196
|
+
@object_status.setter
|
197
|
+
def object_status(self, value: Optional[pulumi.Input[int]]):
|
198
|
+
pulumi.set(self, "object_status", value)
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="objectVersion")
|
202
|
+
def object_version(self) -> Optional[pulumi.Input[int]]:
|
203
|
+
"""
|
204
|
+
(Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "object_version")
|
207
|
+
|
208
|
+
@object_version.setter
|
209
|
+
def object_version(self, value: Optional[pulumi.Input[int]]):
|
210
|
+
pulumi.set(self, "object_version", value)
|
211
|
+
|
212
|
+
@property
|
213
|
+
@pulumi.getter(name="registryMetadata")
|
214
|
+
def registry_metadata(self) -> Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']]:
|
215
|
+
"""
|
216
|
+
(Updatable) Information about the object and its parent.
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "registry_metadata")
|
219
|
+
|
220
|
+
@registry_metadata.setter
|
221
|
+
def registry_metadata(self, value: Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']]):
|
222
|
+
pulumi.set(self, "registry_metadata", value)
|
223
|
+
|
224
|
+
@property
|
225
|
+
@pulumi.getter
|
226
|
+
def timezone(self) -> Optional[pulumi.Input[str]]:
|
227
|
+
"""
|
228
|
+
(Updatable) The timezone for the schedule.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "timezone")
|
231
|
+
|
232
|
+
@timezone.setter
|
233
|
+
def timezone(self, value: Optional[pulumi.Input[str]]):
|
234
|
+
pulumi.set(self, "timezone", value)
|
235
|
+
|
236
|
+
|
237
|
+
@pulumi.input_type
|
238
|
+
class _WorkspaceApplicationScheduleState:
|
239
|
+
def __init__(__self__, *,
|
240
|
+
application_key: Optional[pulumi.Input[str]] = None,
|
241
|
+
description: Optional[pulumi.Input[str]] = None,
|
242
|
+
frequency_details: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']] = None,
|
243
|
+
identifier: Optional[pulumi.Input[str]] = None,
|
244
|
+
is_daylight_adjustment_enabled: Optional[pulumi.Input[bool]] = None,
|
245
|
+
key: Optional[pulumi.Input[str]] = None,
|
246
|
+
metadatas: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataArgs']]]] = None,
|
247
|
+
model_type: Optional[pulumi.Input[str]] = None,
|
248
|
+
model_version: Optional[pulumi.Input[str]] = None,
|
249
|
+
name: Optional[pulumi.Input[str]] = None,
|
250
|
+
object_status: Optional[pulumi.Input[int]] = None,
|
251
|
+
object_version: Optional[pulumi.Input[int]] = None,
|
252
|
+
parent_reves: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleParentRefArgs']]]] = None,
|
253
|
+
registry_metadata: Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']] = None,
|
254
|
+
timezone: Optional[pulumi.Input[str]] = None,
|
255
|
+
workspace_id: Optional[pulumi.Input[str]] = None):
|
256
|
+
"""
|
257
|
+
Input properties used for looking up and filtering WorkspaceApplicationSchedule resources.
|
258
|
+
:param pulumi.Input[str] application_key: The application key.
|
259
|
+
:param pulumi.Input[str] description: (Updatable) Detailed description for the object.
|
260
|
+
:param pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs'] frequency_details: (Updatable) The model that holds the frequency details.
|
261
|
+
:param pulumi.Input[str] identifier: (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
262
|
+
:param pulumi.Input[bool] is_daylight_adjustment_enabled: (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
263
|
+
:param pulumi.Input[str] key: (Updatable) The identifying key for the object.
|
264
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataArgs']]] metadatas: A summary type containing information about the object including its key, name and when/who created/updated it.
|
265
|
+
:param pulumi.Input[str] model_type: (Updatable) The type of the model
|
266
|
+
:param pulumi.Input[str] model_version: (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
267
|
+
:param pulumi.Input[str] name: (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
268
|
+
:param pulumi.Input[int] object_status: (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
269
|
+
:param pulumi.Input[int] object_version: (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
270
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleParentRefArgs']]] parent_reves: A reference to the object's parent.
|
271
|
+
:param pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs'] registry_metadata: (Updatable) Information about the object and its parent.
|
272
|
+
:param pulumi.Input[str] timezone: (Updatable) The timezone for the schedule.
|
273
|
+
:param pulumi.Input[str] workspace_id: The workspace ID.
|
274
|
+
|
275
|
+
|
276
|
+
** IMPORTANT **
|
277
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
278
|
+
"""
|
279
|
+
if application_key is not None:
|
280
|
+
pulumi.set(__self__, "application_key", application_key)
|
281
|
+
if description is not None:
|
282
|
+
pulumi.set(__self__, "description", description)
|
283
|
+
if frequency_details is not None:
|
284
|
+
pulumi.set(__self__, "frequency_details", frequency_details)
|
285
|
+
if identifier is not None:
|
286
|
+
pulumi.set(__self__, "identifier", identifier)
|
287
|
+
if is_daylight_adjustment_enabled is not None:
|
288
|
+
pulumi.set(__self__, "is_daylight_adjustment_enabled", is_daylight_adjustment_enabled)
|
289
|
+
if key is not None:
|
290
|
+
pulumi.set(__self__, "key", key)
|
291
|
+
if metadatas is not None:
|
292
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
293
|
+
if model_type is not None:
|
294
|
+
pulumi.set(__self__, "model_type", model_type)
|
295
|
+
if model_version is not None:
|
296
|
+
pulumi.set(__self__, "model_version", model_version)
|
297
|
+
if name is not None:
|
298
|
+
pulumi.set(__self__, "name", name)
|
299
|
+
if object_status is not None:
|
300
|
+
pulumi.set(__self__, "object_status", object_status)
|
301
|
+
if object_version is not None:
|
302
|
+
pulumi.set(__self__, "object_version", object_version)
|
303
|
+
if parent_reves is not None:
|
304
|
+
pulumi.set(__self__, "parent_reves", parent_reves)
|
305
|
+
if registry_metadata is not None:
|
306
|
+
pulumi.set(__self__, "registry_metadata", registry_metadata)
|
307
|
+
if timezone is not None:
|
308
|
+
pulumi.set(__self__, "timezone", timezone)
|
309
|
+
if workspace_id is not None:
|
310
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
311
|
+
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="applicationKey")
|
314
|
+
def application_key(self) -> Optional[pulumi.Input[str]]:
|
315
|
+
"""
|
316
|
+
The application key.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "application_key")
|
319
|
+
|
320
|
+
@application_key.setter
|
321
|
+
def application_key(self, value: Optional[pulumi.Input[str]]):
|
322
|
+
pulumi.set(self, "application_key", value)
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter
|
326
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
327
|
+
"""
|
328
|
+
(Updatable) Detailed description for the object.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "description")
|
331
|
+
|
332
|
+
@description.setter
|
333
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
334
|
+
pulumi.set(self, "description", value)
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter(name="frequencyDetails")
|
338
|
+
def frequency_details(self) -> Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']]:
|
339
|
+
"""
|
340
|
+
(Updatable) The model that holds the frequency details.
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "frequency_details")
|
343
|
+
|
344
|
+
@frequency_details.setter
|
345
|
+
def frequency_details(self, value: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsArgs']]):
|
346
|
+
pulumi.set(self, "frequency_details", value)
|
347
|
+
|
348
|
+
@property
|
349
|
+
@pulumi.getter
|
350
|
+
def identifier(self) -> Optional[pulumi.Input[str]]:
|
351
|
+
"""
|
352
|
+
(Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "identifier")
|
355
|
+
|
356
|
+
@identifier.setter
|
357
|
+
def identifier(self, value: Optional[pulumi.Input[str]]):
|
358
|
+
pulumi.set(self, "identifier", value)
|
359
|
+
|
360
|
+
@property
|
361
|
+
@pulumi.getter(name="isDaylightAdjustmentEnabled")
|
362
|
+
def is_daylight_adjustment_enabled(self) -> Optional[pulumi.Input[bool]]:
|
363
|
+
"""
|
364
|
+
(Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "is_daylight_adjustment_enabled")
|
367
|
+
|
368
|
+
@is_daylight_adjustment_enabled.setter
|
369
|
+
def is_daylight_adjustment_enabled(self, value: Optional[pulumi.Input[bool]]):
|
370
|
+
pulumi.set(self, "is_daylight_adjustment_enabled", value)
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter
|
374
|
+
def key(self) -> Optional[pulumi.Input[str]]:
|
375
|
+
"""
|
376
|
+
(Updatable) The identifying key for the object.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "key")
|
379
|
+
|
380
|
+
@key.setter
|
381
|
+
def key(self, value: Optional[pulumi.Input[str]]):
|
382
|
+
pulumi.set(self, "key", value)
|
383
|
+
|
384
|
+
@property
|
385
|
+
@pulumi.getter
|
386
|
+
def metadatas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataArgs']]]]:
|
387
|
+
"""
|
388
|
+
A summary type containing information about the object including its key, name and when/who created/updated it.
|
389
|
+
"""
|
390
|
+
return pulumi.get(self, "metadatas")
|
391
|
+
|
392
|
+
@metadatas.setter
|
393
|
+
def metadatas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataArgs']]]]):
|
394
|
+
pulumi.set(self, "metadatas", value)
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="modelType")
|
398
|
+
def model_type(self) -> Optional[pulumi.Input[str]]:
|
399
|
+
"""
|
400
|
+
(Updatable) The type of the model
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "model_type")
|
403
|
+
|
404
|
+
@model_type.setter
|
405
|
+
def model_type(self, value: Optional[pulumi.Input[str]]):
|
406
|
+
pulumi.set(self, "model_type", value)
|
407
|
+
|
408
|
+
@property
|
409
|
+
@pulumi.getter(name="modelVersion")
|
410
|
+
def model_version(self) -> Optional[pulumi.Input[str]]:
|
411
|
+
"""
|
412
|
+
(Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
413
|
+
"""
|
414
|
+
return pulumi.get(self, "model_version")
|
415
|
+
|
416
|
+
@model_version.setter
|
417
|
+
def model_version(self, value: Optional[pulumi.Input[str]]):
|
418
|
+
pulumi.set(self, "model_version", value)
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter
|
422
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
423
|
+
"""
|
424
|
+
(Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "name")
|
427
|
+
|
428
|
+
@name.setter
|
429
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
430
|
+
pulumi.set(self, "name", value)
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter(name="objectStatus")
|
434
|
+
def object_status(self) -> Optional[pulumi.Input[int]]:
|
435
|
+
"""
|
436
|
+
(Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "object_status")
|
439
|
+
|
440
|
+
@object_status.setter
|
441
|
+
def object_status(self, value: Optional[pulumi.Input[int]]):
|
442
|
+
pulumi.set(self, "object_status", value)
|
443
|
+
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="objectVersion")
|
446
|
+
def object_version(self) -> Optional[pulumi.Input[int]]:
|
447
|
+
"""
|
448
|
+
(Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
449
|
+
"""
|
450
|
+
return pulumi.get(self, "object_version")
|
451
|
+
|
452
|
+
@object_version.setter
|
453
|
+
def object_version(self, value: Optional[pulumi.Input[int]]):
|
454
|
+
pulumi.set(self, "object_version", value)
|
455
|
+
|
456
|
+
@property
|
457
|
+
@pulumi.getter(name="parentReves")
|
458
|
+
def parent_reves(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleParentRefArgs']]]]:
|
459
|
+
"""
|
460
|
+
A reference to the object's parent.
|
461
|
+
"""
|
462
|
+
return pulumi.get(self, "parent_reves")
|
463
|
+
|
464
|
+
@parent_reves.setter
|
465
|
+
def parent_reves(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleParentRefArgs']]]]):
|
466
|
+
pulumi.set(self, "parent_reves", value)
|
467
|
+
|
468
|
+
@property
|
469
|
+
@pulumi.getter(name="registryMetadata")
|
470
|
+
def registry_metadata(self) -> Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']]:
|
471
|
+
"""
|
472
|
+
(Updatable) Information about the object and its parent.
|
473
|
+
"""
|
474
|
+
return pulumi.get(self, "registry_metadata")
|
475
|
+
|
476
|
+
@registry_metadata.setter
|
477
|
+
def registry_metadata(self, value: Optional[pulumi.Input['WorkspaceApplicationScheduleRegistryMetadataArgs']]):
|
478
|
+
pulumi.set(self, "registry_metadata", value)
|
479
|
+
|
480
|
+
@property
|
481
|
+
@pulumi.getter
|
482
|
+
def timezone(self) -> Optional[pulumi.Input[str]]:
|
483
|
+
"""
|
484
|
+
(Updatable) The timezone for the schedule.
|
485
|
+
"""
|
486
|
+
return pulumi.get(self, "timezone")
|
487
|
+
|
488
|
+
@timezone.setter
|
489
|
+
def timezone(self, value: Optional[pulumi.Input[str]]):
|
490
|
+
pulumi.set(self, "timezone", value)
|
491
|
+
|
492
|
+
@property
|
493
|
+
@pulumi.getter(name="workspaceId")
|
494
|
+
def workspace_id(self) -> Optional[pulumi.Input[str]]:
|
495
|
+
"""
|
496
|
+
The workspace ID.
|
497
|
+
|
498
|
+
|
499
|
+
** IMPORTANT **
|
500
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
501
|
+
"""
|
502
|
+
return pulumi.get(self, "workspace_id")
|
503
|
+
|
504
|
+
@workspace_id.setter
|
505
|
+
def workspace_id(self, value: Optional[pulumi.Input[str]]):
|
506
|
+
pulumi.set(self, "workspace_id", value)
|
507
|
+
|
508
|
+
|
509
|
+
class WorkspaceApplicationSchedule(pulumi.CustomResource):
|
510
|
+
@overload
|
511
|
+
def __init__(__self__,
|
512
|
+
resource_name: str,
|
513
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
514
|
+
application_key: Optional[pulumi.Input[str]] = None,
|
515
|
+
description: Optional[pulumi.Input[str]] = None,
|
516
|
+
frequency_details: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleFrequencyDetailsArgs']]] = None,
|
517
|
+
identifier: Optional[pulumi.Input[str]] = None,
|
518
|
+
is_daylight_adjustment_enabled: Optional[pulumi.Input[bool]] = None,
|
519
|
+
key: Optional[pulumi.Input[str]] = None,
|
520
|
+
model_version: Optional[pulumi.Input[str]] = None,
|
521
|
+
name: Optional[pulumi.Input[str]] = None,
|
522
|
+
object_status: Optional[pulumi.Input[int]] = None,
|
523
|
+
object_version: Optional[pulumi.Input[int]] = None,
|
524
|
+
registry_metadata: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleRegistryMetadataArgs']]] = None,
|
525
|
+
timezone: Optional[pulumi.Input[str]] = None,
|
526
|
+
workspace_id: Optional[pulumi.Input[str]] = None,
|
527
|
+
__props__=None):
|
528
|
+
"""
|
529
|
+
This resource provides the Workspace Application Schedule resource in Oracle Cloud Infrastructure Data Integration service.
|
530
|
+
|
531
|
+
Endpoint to create a new schedule
|
532
|
+
|
533
|
+
## Example Usage
|
534
|
+
|
535
|
+
```python
|
536
|
+
import pulumi
|
537
|
+
import pulumi_oci as oci
|
538
|
+
|
539
|
+
test_workspace_application_schedule = oci.data_integration.WorkspaceApplicationSchedule("testWorkspaceApplicationSchedule",
|
540
|
+
application_key=var["workspace_application_schedule_application_key"],
|
541
|
+
identifier=var["workspace_application_schedule_identifier"],
|
542
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
543
|
+
description=var["workspace_application_schedule_description"],
|
544
|
+
frequency_details=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsArgs(
|
545
|
+
model_type=var["workspace_application_schedule_frequency_details_model_type"],
|
546
|
+
custom_expression=var["workspace_application_schedule_frequency_details_custom_expression"],
|
547
|
+
day_of_week=var["workspace_application_schedule_frequency_details_day_of_week"],
|
548
|
+
days=var["workspace_application_schedule_frequency_details_days"],
|
549
|
+
frequency=var["workspace_application_schedule_frequency_details_frequency"],
|
550
|
+
interval=var["workspace_application_schedule_frequency_details_interval"],
|
551
|
+
time=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs(
|
552
|
+
hour=var["workspace_application_schedule_frequency_details_time_hour"],
|
553
|
+
minute=var["workspace_application_schedule_frequency_details_time_minute"],
|
554
|
+
second=var["workspace_application_schedule_frequency_details_time_second"],
|
555
|
+
),
|
556
|
+
week_of_month=var["workspace_application_schedule_frequency_details_week_of_month"],
|
557
|
+
),
|
558
|
+
is_daylight_adjustment_enabled=var["workspace_application_schedule_is_daylight_adjustment_enabled"],
|
559
|
+
key=var["workspace_application_schedule_key"],
|
560
|
+
model_version=var["workspace_application_schedule_model_version"],
|
561
|
+
object_status=var["workspace_application_schedule_object_status"],
|
562
|
+
object_version=var["workspace_application_schedule_object_version"],
|
563
|
+
registry_metadata=oci.data_integration.WorkspaceApplicationScheduleRegistryMetadataArgs(
|
564
|
+
aggregator_key=var["workspace_application_schedule_registry_metadata_aggregator_key"],
|
565
|
+
is_favorite=var["workspace_application_schedule_registry_metadata_is_favorite"],
|
566
|
+
key=var["workspace_application_schedule_registry_metadata_key"],
|
567
|
+
labels=var["workspace_application_schedule_registry_metadata_labels"],
|
568
|
+
registry_version=var["workspace_application_schedule_registry_metadata_registry_version"],
|
569
|
+
),
|
570
|
+
timezone=var["workspace_application_schedule_timezone"])
|
571
|
+
```
|
572
|
+
|
573
|
+
## Import
|
574
|
+
|
575
|
+
WorkspaceApplicationSchedules can be imported using the `id`, e.g.
|
576
|
+
|
577
|
+
```sh
|
578
|
+
$ pulumi import oci:DataIntegration/workspaceApplicationSchedule:WorkspaceApplicationSchedule test_workspace_application_schedule "workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}"
|
579
|
+
```
|
580
|
+
|
581
|
+
:param str resource_name: The name of the resource.
|
582
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
583
|
+
:param pulumi.Input[str] application_key: The application key.
|
584
|
+
:param pulumi.Input[str] description: (Updatable) Detailed description for the object.
|
585
|
+
:param pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleFrequencyDetailsArgs']] frequency_details: (Updatable) The model that holds the frequency details.
|
586
|
+
:param pulumi.Input[str] identifier: (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
587
|
+
:param pulumi.Input[bool] is_daylight_adjustment_enabled: (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
588
|
+
:param pulumi.Input[str] key: (Updatable) The identifying key for the object.
|
589
|
+
:param pulumi.Input[str] model_version: (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
590
|
+
:param pulumi.Input[str] name: (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
591
|
+
:param pulumi.Input[int] object_status: (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
592
|
+
:param pulumi.Input[int] object_version: (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
593
|
+
:param pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleRegistryMetadataArgs']] registry_metadata: (Updatable) Information about the object and its parent.
|
594
|
+
:param pulumi.Input[str] timezone: (Updatable) The timezone for the schedule.
|
595
|
+
:param pulumi.Input[str] workspace_id: The workspace ID.
|
596
|
+
|
597
|
+
|
598
|
+
** IMPORTANT **
|
599
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
600
|
+
"""
|
601
|
+
...
|
602
|
+
@overload
|
603
|
+
def __init__(__self__,
|
604
|
+
resource_name: str,
|
605
|
+
args: WorkspaceApplicationScheduleArgs,
|
606
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
607
|
+
"""
|
608
|
+
This resource provides the Workspace Application Schedule resource in Oracle Cloud Infrastructure Data Integration service.
|
609
|
+
|
610
|
+
Endpoint to create a new schedule
|
611
|
+
|
612
|
+
## Example Usage
|
613
|
+
|
614
|
+
```python
|
615
|
+
import pulumi
|
616
|
+
import pulumi_oci as oci
|
617
|
+
|
618
|
+
test_workspace_application_schedule = oci.data_integration.WorkspaceApplicationSchedule("testWorkspaceApplicationSchedule",
|
619
|
+
application_key=var["workspace_application_schedule_application_key"],
|
620
|
+
identifier=var["workspace_application_schedule_identifier"],
|
621
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
622
|
+
description=var["workspace_application_schedule_description"],
|
623
|
+
frequency_details=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsArgs(
|
624
|
+
model_type=var["workspace_application_schedule_frequency_details_model_type"],
|
625
|
+
custom_expression=var["workspace_application_schedule_frequency_details_custom_expression"],
|
626
|
+
day_of_week=var["workspace_application_schedule_frequency_details_day_of_week"],
|
627
|
+
days=var["workspace_application_schedule_frequency_details_days"],
|
628
|
+
frequency=var["workspace_application_schedule_frequency_details_frequency"],
|
629
|
+
interval=var["workspace_application_schedule_frequency_details_interval"],
|
630
|
+
time=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs(
|
631
|
+
hour=var["workspace_application_schedule_frequency_details_time_hour"],
|
632
|
+
minute=var["workspace_application_schedule_frequency_details_time_minute"],
|
633
|
+
second=var["workspace_application_schedule_frequency_details_time_second"],
|
634
|
+
),
|
635
|
+
week_of_month=var["workspace_application_schedule_frequency_details_week_of_month"],
|
636
|
+
),
|
637
|
+
is_daylight_adjustment_enabled=var["workspace_application_schedule_is_daylight_adjustment_enabled"],
|
638
|
+
key=var["workspace_application_schedule_key"],
|
639
|
+
model_version=var["workspace_application_schedule_model_version"],
|
640
|
+
object_status=var["workspace_application_schedule_object_status"],
|
641
|
+
object_version=var["workspace_application_schedule_object_version"],
|
642
|
+
registry_metadata=oci.data_integration.WorkspaceApplicationScheduleRegistryMetadataArgs(
|
643
|
+
aggregator_key=var["workspace_application_schedule_registry_metadata_aggregator_key"],
|
644
|
+
is_favorite=var["workspace_application_schedule_registry_metadata_is_favorite"],
|
645
|
+
key=var["workspace_application_schedule_registry_metadata_key"],
|
646
|
+
labels=var["workspace_application_schedule_registry_metadata_labels"],
|
647
|
+
registry_version=var["workspace_application_schedule_registry_metadata_registry_version"],
|
648
|
+
),
|
649
|
+
timezone=var["workspace_application_schedule_timezone"])
|
650
|
+
```
|
651
|
+
|
652
|
+
## Import
|
653
|
+
|
654
|
+
WorkspaceApplicationSchedules can be imported using the `id`, e.g.
|
655
|
+
|
656
|
+
```sh
|
657
|
+
$ pulumi import oci:DataIntegration/workspaceApplicationSchedule:WorkspaceApplicationSchedule test_workspace_application_schedule "workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}"
|
658
|
+
```
|
659
|
+
|
660
|
+
:param str resource_name: The name of the resource.
|
661
|
+
:param WorkspaceApplicationScheduleArgs args: The arguments to use to populate this resource's properties.
|
662
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
663
|
+
"""
|
664
|
+
...
|
665
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
666
|
+
resource_args, opts = _utilities.get_resource_args_opts(WorkspaceApplicationScheduleArgs, pulumi.ResourceOptions, *args, **kwargs)
|
667
|
+
if resource_args is not None:
|
668
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
669
|
+
else:
|
670
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
671
|
+
|
672
|
+
def _internal_init(__self__,
|
673
|
+
resource_name: str,
|
674
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
675
|
+
application_key: Optional[pulumi.Input[str]] = None,
|
676
|
+
description: Optional[pulumi.Input[str]] = None,
|
677
|
+
frequency_details: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleFrequencyDetailsArgs']]] = None,
|
678
|
+
identifier: Optional[pulumi.Input[str]] = None,
|
679
|
+
is_daylight_adjustment_enabled: Optional[pulumi.Input[bool]] = None,
|
680
|
+
key: Optional[pulumi.Input[str]] = None,
|
681
|
+
model_version: Optional[pulumi.Input[str]] = None,
|
682
|
+
name: Optional[pulumi.Input[str]] = None,
|
683
|
+
object_status: Optional[pulumi.Input[int]] = None,
|
684
|
+
object_version: Optional[pulumi.Input[int]] = None,
|
685
|
+
registry_metadata: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleRegistryMetadataArgs']]] = None,
|
686
|
+
timezone: Optional[pulumi.Input[str]] = None,
|
687
|
+
workspace_id: Optional[pulumi.Input[str]] = None,
|
688
|
+
__props__=None):
|
689
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
690
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
691
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
692
|
+
if opts.id is None:
|
693
|
+
if __props__ is not None:
|
694
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
695
|
+
__props__ = WorkspaceApplicationScheduleArgs.__new__(WorkspaceApplicationScheduleArgs)
|
696
|
+
|
697
|
+
if application_key is None and not opts.urn:
|
698
|
+
raise TypeError("Missing required property 'application_key'")
|
699
|
+
__props__.__dict__["application_key"] = application_key
|
700
|
+
__props__.__dict__["description"] = description
|
701
|
+
__props__.__dict__["frequency_details"] = frequency_details
|
702
|
+
if identifier is None and not opts.urn:
|
703
|
+
raise TypeError("Missing required property 'identifier'")
|
704
|
+
__props__.__dict__["identifier"] = identifier
|
705
|
+
__props__.__dict__["is_daylight_adjustment_enabled"] = is_daylight_adjustment_enabled
|
706
|
+
__props__.__dict__["key"] = key
|
707
|
+
__props__.__dict__["model_version"] = model_version
|
708
|
+
__props__.__dict__["name"] = name
|
709
|
+
__props__.__dict__["object_status"] = object_status
|
710
|
+
__props__.__dict__["object_version"] = object_version
|
711
|
+
__props__.__dict__["registry_metadata"] = registry_metadata
|
712
|
+
__props__.__dict__["timezone"] = timezone
|
713
|
+
if workspace_id is None and not opts.urn:
|
714
|
+
raise TypeError("Missing required property 'workspace_id'")
|
715
|
+
__props__.__dict__["workspace_id"] = workspace_id
|
716
|
+
__props__.__dict__["metadatas"] = None
|
717
|
+
__props__.__dict__["model_type"] = None
|
718
|
+
__props__.__dict__["parent_reves"] = None
|
719
|
+
super(WorkspaceApplicationSchedule, __self__).__init__(
|
720
|
+
'oci:DataIntegration/workspaceApplicationSchedule:WorkspaceApplicationSchedule',
|
721
|
+
resource_name,
|
722
|
+
__props__,
|
723
|
+
opts)
|
724
|
+
|
725
|
+
@staticmethod
|
726
|
+
def get(resource_name: str,
|
727
|
+
id: pulumi.Input[str],
|
728
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
729
|
+
application_key: Optional[pulumi.Input[str]] = None,
|
730
|
+
description: Optional[pulumi.Input[str]] = None,
|
731
|
+
frequency_details: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleFrequencyDetailsArgs']]] = None,
|
732
|
+
identifier: Optional[pulumi.Input[str]] = None,
|
733
|
+
is_daylight_adjustment_enabled: Optional[pulumi.Input[bool]] = None,
|
734
|
+
key: Optional[pulumi.Input[str]] = None,
|
735
|
+
metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleMetadataArgs']]]]] = None,
|
736
|
+
model_type: Optional[pulumi.Input[str]] = None,
|
737
|
+
model_version: Optional[pulumi.Input[str]] = None,
|
738
|
+
name: Optional[pulumi.Input[str]] = None,
|
739
|
+
object_status: Optional[pulumi.Input[int]] = None,
|
740
|
+
object_version: Optional[pulumi.Input[int]] = None,
|
741
|
+
parent_reves: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleParentRefArgs']]]]] = None,
|
742
|
+
registry_metadata: Optional[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleRegistryMetadataArgs']]] = None,
|
743
|
+
timezone: Optional[pulumi.Input[str]] = None,
|
744
|
+
workspace_id: Optional[pulumi.Input[str]] = None) -> 'WorkspaceApplicationSchedule':
|
745
|
+
"""
|
746
|
+
Get an existing WorkspaceApplicationSchedule resource's state with the given name, id, and optional extra
|
747
|
+
properties used to qualify the lookup.
|
748
|
+
|
749
|
+
:param str resource_name: The unique name of the resulting resource.
|
750
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
751
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
752
|
+
:param pulumi.Input[str] application_key: The application key.
|
753
|
+
:param pulumi.Input[str] description: (Updatable) Detailed description for the object.
|
754
|
+
:param pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleFrequencyDetailsArgs']] frequency_details: (Updatable) The model that holds the frequency details.
|
755
|
+
:param pulumi.Input[str] identifier: (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
756
|
+
:param pulumi.Input[bool] is_daylight_adjustment_enabled: (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
757
|
+
:param pulumi.Input[str] key: (Updatable) The identifying key for the object.
|
758
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleMetadataArgs']]]] metadatas: A summary type containing information about the object including its key, name and when/who created/updated it.
|
759
|
+
:param pulumi.Input[str] model_type: (Updatable) The type of the model
|
760
|
+
:param pulumi.Input[str] model_version: (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
761
|
+
:param pulumi.Input[str] name: (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
762
|
+
:param pulumi.Input[int] object_status: (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
763
|
+
:param pulumi.Input[int] object_version: (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
764
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleParentRefArgs']]]] parent_reves: A reference to the object's parent.
|
765
|
+
:param pulumi.Input[pulumi.InputType['WorkspaceApplicationScheduleRegistryMetadataArgs']] registry_metadata: (Updatable) Information about the object and its parent.
|
766
|
+
:param pulumi.Input[str] timezone: (Updatable) The timezone for the schedule.
|
767
|
+
:param pulumi.Input[str] workspace_id: The workspace ID.
|
768
|
+
|
769
|
+
|
770
|
+
** IMPORTANT **
|
771
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
772
|
+
"""
|
773
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
774
|
+
|
775
|
+
__props__ = _WorkspaceApplicationScheduleState.__new__(_WorkspaceApplicationScheduleState)
|
776
|
+
|
777
|
+
__props__.__dict__["application_key"] = application_key
|
778
|
+
__props__.__dict__["description"] = description
|
779
|
+
__props__.__dict__["frequency_details"] = frequency_details
|
780
|
+
__props__.__dict__["identifier"] = identifier
|
781
|
+
__props__.__dict__["is_daylight_adjustment_enabled"] = is_daylight_adjustment_enabled
|
782
|
+
__props__.__dict__["key"] = key
|
783
|
+
__props__.__dict__["metadatas"] = metadatas
|
784
|
+
__props__.__dict__["model_type"] = model_type
|
785
|
+
__props__.__dict__["model_version"] = model_version
|
786
|
+
__props__.__dict__["name"] = name
|
787
|
+
__props__.__dict__["object_status"] = object_status
|
788
|
+
__props__.__dict__["object_version"] = object_version
|
789
|
+
__props__.__dict__["parent_reves"] = parent_reves
|
790
|
+
__props__.__dict__["registry_metadata"] = registry_metadata
|
791
|
+
__props__.__dict__["timezone"] = timezone
|
792
|
+
__props__.__dict__["workspace_id"] = workspace_id
|
793
|
+
return WorkspaceApplicationSchedule(resource_name, opts=opts, __props__=__props__)
|
794
|
+
|
795
|
+
@property
|
796
|
+
@pulumi.getter(name="applicationKey")
|
797
|
+
def application_key(self) -> pulumi.Output[str]:
|
798
|
+
"""
|
799
|
+
The application key.
|
800
|
+
"""
|
801
|
+
return pulumi.get(self, "application_key")
|
802
|
+
|
803
|
+
@property
|
804
|
+
@pulumi.getter
|
805
|
+
def description(self) -> pulumi.Output[str]:
|
806
|
+
"""
|
807
|
+
(Updatable) Detailed description for the object.
|
808
|
+
"""
|
809
|
+
return pulumi.get(self, "description")
|
810
|
+
|
811
|
+
@property
|
812
|
+
@pulumi.getter(name="frequencyDetails")
|
813
|
+
def frequency_details(self) -> pulumi.Output['outputs.WorkspaceApplicationScheduleFrequencyDetails']:
|
814
|
+
"""
|
815
|
+
(Updatable) The model that holds the frequency details.
|
816
|
+
"""
|
817
|
+
return pulumi.get(self, "frequency_details")
|
818
|
+
|
819
|
+
@property
|
820
|
+
@pulumi.getter
|
821
|
+
def identifier(self) -> pulumi.Output[str]:
|
822
|
+
"""
|
823
|
+
(Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
824
|
+
"""
|
825
|
+
return pulumi.get(self, "identifier")
|
826
|
+
|
827
|
+
@property
|
828
|
+
@pulumi.getter(name="isDaylightAdjustmentEnabled")
|
829
|
+
def is_daylight_adjustment_enabled(self) -> pulumi.Output[bool]:
|
830
|
+
"""
|
831
|
+
(Updatable) A flag to indicate whether daylight adjustment should be considered or not.
|
832
|
+
"""
|
833
|
+
return pulumi.get(self, "is_daylight_adjustment_enabled")
|
834
|
+
|
835
|
+
@property
|
836
|
+
@pulumi.getter
|
837
|
+
def key(self) -> pulumi.Output[str]:
|
838
|
+
"""
|
839
|
+
(Updatable) The identifying key for the object.
|
840
|
+
"""
|
841
|
+
return pulumi.get(self, "key")
|
842
|
+
|
843
|
+
@property
|
844
|
+
@pulumi.getter
|
845
|
+
def metadatas(self) -> pulumi.Output[Sequence['outputs.WorkspaceApplicationScheduleMetadata']]:
|
846
|
+
"""
|
847
|
+
A summary type containing information about the object including its key, name and when/who created/updated it.
|
848
|
+
"""
|
849
|
+
return pulumi.get(self, "metadatas")
|
850
|
+
|
851
|
+
@property
|
852
|
+
@pulumi.getter(name="modelType")
|
853
|
+
def model_type(self) -> pulumi.Output[str]:
|
854
|
+
"""
|
855
|
+
(Updatable) The type of the model
|
856
|
+
"""
|
857
|
+
return pulumi.get(self, "model_type")
|
858
|
+
|
859
|
+
@property
|
860
|
+
@pulumi.getter(name="modelVersion")
|
861
|
+
def model_version(self) -> pulumi.Output[str]:
|
862
|
+
"""
|
863
|
+
(Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
864
|
+
"""
|
865
|
+
return pulumi.get(self, "model_version")
|
866
|
+
|
867
|
+
@property
|
868
|
+
@pulumi.getter
|
869
|
+
def name(self) -> pulumi.Output[str]:
|
870
|
+
"""
|
871
|
+
(Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
|
872
|
+
"""
|
873
|
+
return pulumi.get(self, "name")
|
874
|
+
|
875
|
+
@property
|
876
|
+
@pulumi.getter(name="objectStatus")
|
877
|
+
def object_status(self) -> pulumi.Output[int]:
|
878
|
+
"""
|
879
|
+
(Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
880
|
+
"""
|
881
|
+
return pulumi.get(self, "object_status")
|
882
|
+
|
883
|
+
@property
|
884
|
+
@pulumi.getter(name="objectVersion")
|
885
|
+
def object_version(self) -> pulumi.Output[int]:
|
886
|
+
"""
|
887
|
+
(Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
888
|
+
"""
|
889
|
+
return pulumi.get(self, "object_version")
|
890
|
+
|
891
|
+
@property
|
892
|
+
@pulumi.getter(name="parentReves")
|
893
|
+
def parent_reves(self) -> pulumi.Output[Sequence['outputs.WorkspaceApplicationScheduleParentRef']]:
|
894
|
+
"""
|
895
|
+
A reference to the object's parent.
|
896
|
+
"""
|
897
|
+
return pulumi.get(self, "parent_reves")
|
898
|
+
|
899
|
+
@property
|
900
|
+
@pulumi.getter(name="registryMetadata")
|
901
|
+
def registry_metadata(self) -> pulumi.Output['outputs.WorkspaceApplicationScheduleRegistryMetadata']:
|
902
|
+
"""
|
903
|
+
(Updatable) Information about the object and its parent.
|
904
|
+
"""
|
905
|
+
return pulumi.get(self, "registry_metadata")
|
906
|
+
|
907
|
+
@property
|
908
|
+
@pulumi.getter
|
909
|
+
def timezone(self) -> pulumi.Output[str]:
|
910
|
+
"""
|
911
|
+
(Updatable) The timezone for the schedule.
|
912
|
+
"""
|
913
|
+
return pulumi.get(self, "timezone")
|
914
|
+
|
915
|
+
@property
|
916
|
+
@pulumi.getter(name="workspaceId")
|
917
|
+
def workspace_id(self) -> pulumi.Output[str]:
|
918
|
+
"""
|
919
|
+
The workspace ID.
|
920
|
+
|
921
|
+
|
922
|
+
** IMPORTANT **
|
923
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
924
|
+
"""
|
925
|
+
return pulumi.get(self, "workspace_id")
|
926
|
+
|