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,316 @@
|
|
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
|
+
|
13
|
+
__all__ = [
|
14
|
+
'GetWorkspaceApplicationScheduleResult',
|
15
|
+
'AwaitableGetWorkspaceApplicationScheduleResult',
|
16
|
+
'get_workspace_application_schedule',
|
17
|
+
'get_workspace_application_schedule_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetWorkspaceApplicationScheduleResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getWorkspaceApplicationSchedule.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, application_key=None, description=None, frequency_details=None, id=None, identifier=None, is_daylight_adjustment_enabled=None, key=None, metadatas=None, model_type=None, model_version=None, name=None, object_status=None, object_version=None, parent_reves=None, registry_metadatas=None, schedule_key=None, timezone=None, workspace_id=None):
|
26
|
+
if application_key and not isinstance(application_key, str):
|
27
|
+
raise TypeError("Expected argument 'application_key' to be a str")
|
28
|
+
pulumi.set(__self__, "application_key", application_key)
|
29
|
+
if description and not isinstance(description, str):
|
30
|
+
raise TypeError("Expected argument 'description' to be a str")
|
31
|
+
pulumi.set(__self__, "description", description)
|
32
|
+
if frequency_details and not isinstance(frequency_details, list):
|
33
|
+
raise TypeError("Expected argument 'frequency_details' to be a list")
|
34
|
+
pulumi.set(__self__, "frequency_details", frequency_details)
|
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 identifier and not isinstance(identifier, str):
|
39
|
+
raise TypeError("Expected argument 'identifier' to be a str")
|
40
|
+
pulumi.set(__self__, "identifier", identifier)
|
41
|
+
if is_daylight_adjustment_enabled and not isinstance(is_daylight_adjustment_enabled, bool):
|
42
|
+
raise TypeError("Expected argument 'is_daylight_adjustment_enabled' to be a bool")
|
43
|
+
pulumi.set(__self__, "is_daylight_adjustment_enabled", is_daylight_adjustment_enabled)
|
44
|
+
if key and not isinstance(key, str):
|
45
|
+
raise TypeError("Expected argument 'key' to be a str")
|
46
|
+
pulumi.set(__self__, "key", key)
|
47
|
+
if metadatas and not isinstance(metadatas, list):
|
48
|
+
raise TypeError("Expected argument 'metadatas' to be a list")
|
49
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
50
|
+
if model_type and not isinstance(model_type, str):
|
51
|
+
raise TypeError("Expected argument 'model_type' to be a str")
|
52
|
+
pulumi.set(__self__, "model_type", model_type)
|
53
|
+
if model_version and not isinstance(model_version, str):
|
54
|
+
raise TypeError("Expected argument 'model_version' to be a str")
|
55
|
+
pulumi.set(__self__, "model_version", model_version)
|
56
|
+
if name and not isinstance(name, str):
|
57
|
+
raise TypeError("Expected argument 'name' to be a str")
|
58
|
+
pulumi.set(__self__, "name", name)
|
59
|
+
if object_status and not isinstance(object_status, int):
|
60
|
+
raise TypeError("Expected argument 'object_status' to be a int")
|
61
|
+
pulumi.set(__self__, "object_status", object_status)
|
62
|
+
if object_version and not isinstance(object_version, int):
|
63
|
+
raise TypeError("Expected argument 'object_version' to be a int")
|
64
|
+
pulumi.set(__self__, "object_version", object_version)
|
65
|
+
if parent_reves and not isinstance(parent_reves, list):
|
66
|
+
raise TypeError("Expected argument 'parent_reves' to be a list")
|
67
|
+
pulumi.set(__self__, "parent_reves", parent_reves)
|
68
|
+
if registry_metadatas and not isinstance(registry_metadatas, list):
|
69
|
+
raise TypeError("Expected argument 'registry_metadatas' to be a list")
|
70
|
+
pulumi.set(__self__, "registry_metadatas", registry_metadatas)
|
71
|
+
if schedule_key and not isinstance(schedule_key, str):
|
72
|
+
raise TypeError("Expected argument 'schedule_key' to be a str")
|
73
|
+
pulumi.set(__self__, "schedule_key", schedule_key)
|
74
|
+
if timezone and not isinstance(timezone, str):
|
75
|
+
raise TypeError("Expected argument 'timezone' to be a str")
|
76
|
+
pulumi.set(__self__, "timezone", timezone)
|
77
|
+
if workspace_id and not isinstance(workspace_id, str):
|
78
|
+
raise TypeError("Expected argument 'workspace_id' to be a str")
|
79
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter(name="applicationKey")
|
83
|
+
def application_key(self) -> str:
|
84
|
+
return pulumi.get(self, "application_key")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter
|
88
|
+
def description(self) -> str:
|
89
|
+
"""
|
90
|
+
The description of the aggregator.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "description")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="frequencyDetails")
|
96
|
+
def frequency_details(self) -> Sequence['outputs.GetWorkspaceApplicationScheduleFrequencyDetailResult']:
|
97
|
+
"""
|
98
|
+
The model that holds the frequency details.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "frequency_details")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def id(self) -> str:
|
105
|
+
return pulumi.get(self, "id")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def identifier(self) -> str:
|
110
|
+
"""
|
111
|
+
The identifier of the aggregator.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "identifier")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="isDaylightAdjustmentEnabled")
|
117
|
+
def is_daylight_adjustment_enabled(self) -> bool:
|
118
|
+
"""
|
119
|
+
A flag to indicate daylight saving.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "is_daylight_adjustment_enabled")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def key(self) -> str:
|
126
|
+
"""
|
127
|
+
The key of the aggregator object.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "key")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter
|
133
|
+
def metadatas(self) -> Sequence['outputs.GetWorkspaceApplicationScheduleMetadataResult']:
|
134
|
+
"""
|
135
|
+
A summary type containing information about the object including its key, name and when/who created/updated it.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "metadatas")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="modelType")
|
141
|
+
def model_type(self) -> str:
|
142
|
+
"""
|
143
|
+
The type of the object.
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "model_type")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="modelVersion")
|
149
|
+
def model_version(self) -> str:
|
150
|
+
"""
|
151
|
+
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "model_version")
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter
|
157
|
+
def name(self) -> str:
|
158
|
+
"""
|
159
|
+
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.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "name")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="objectStatus")
|
165
|
+
def object_status(self) -> int:
|
166
|
+
"""
|
167
|
+
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "object_status")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="objectVersion")
|
173
|
+
def object_version(self) -> int:
|
174
|
+
"""
|
175
|
+
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "object_version")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="parentReves")
|
181
|
+
def parent_reves(self) -> Sequence['outputs.GetWorkspaceApplicationScheduleParentRefResult']:
|
182
|
+
"""
|
183
|
+
A reference to the object's parent.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "parent_reves")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="registryMetadatas")
|
189
|
+
def registry_metadatas(self) -> Sequence['outputs.GetWorkspaceApplicationScheduleRegistryMetadataResult']:
|
190
|
+
return pulumi.get(self, "registry_metadatas")
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter(name="scheduleKey")
|
194
|
+
def schedule_key(self) -> str:
|
195
|
+
return pulumi.get(self, "schedule_key")
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter
|
199
|
+
def timezone(self) -> str:
|
200
|
+
"""
|
201
|
+
The timezone for the schedule.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "timezone")
|
204
|
+
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="workspaceId")
|
207
|
+
def workspace_id(self) -> str:
|
208
|
+
return pulumi.get(self, "workspace_id")
|
209
|
+
|
210
|
+
|
211
|
+
class AwaitableGetWorkspaceApplicationScheduleResult(GetWorkspaceApplicationScheduleResult):
|
212
|
+
# pylint: disable=using-constant-test
|
213
|
+
def __await__(self):
|
214
|
+
if False:
|
215
|
+
yield self
|
216
|
+
return GetWorkspaceApplicationScheduleResult(
|
217
|
+
application_key=self.application_key,
|
218
|
+
description=self.description,
|
219
|
+
frequency_details=self.frequency_details,
|
220
|
+
id=self.id,
|
221
|
+
identifier=self.identifier,
|
222
|
+
is_daylight_adjustment_enabled=self.is_daylight_adjustment_enabled,
|
223
|
+
key=self.key,
|
224
|
+
metadatas=self.metadatas,
|
225
|
+
model_type=self.model_type,
|
226
|
+
model_version=self.model_version,
|
227
|
+
name=self.name,
|
228
|
+
object_status=self.object_status,
|
229
|
+
object_version=self.object_version,
|
230
|
+
parent_reves=self.parent_reves,
|
231
|
+
registry_metadatas=self.registry_metadatas,
|
232
|
+
schedule_key=self.schedule_key,
|
233
|
+
timezone=self.timezone,
|
234
|
+
workspace_id=self.workspace_id)
|
235
|
+
|
236
|
+
|
237
|
+
def get_workspace_application_schedule(application_key: Optional[str] = None,
|
238
|
+
schedule_key: Optional[str] = None,
|
239
|
+
workspace_id: Optional[str] = None,
|
240
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWorkspaceApplicationScheduleResult:
|
241
|
+
"""
|
242
|
+
This data source provides details about a specific Workspace Application Schedule resource in Oracle Cloud Infrastructure Data Integration service.
|
243
|
+
|
244
|
+
Retrieves schedule by schedule key
|
245
|
+
|
246
|
+
## Example Usage
|
247
|
+
|
248
|
+
```python
|
249
|
+
import pulumi
|
250
|
+
import pulumi_oci as oci
|
251
|
+
|
252
|
+
test_workspace_application_schedule = oci.DataIntegration.get_workspace_application_schedule(application_key=var["workspace_application_schedule_application_key"],
|
253
|
+
schedule_key=var["workspace_application_schedule_schedule_key"],
|
254
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"])
|
255
|
+
```
|
256
|
+
|
257
|
+
|
258
|
+
:param str application_key: The application key.
|
259
|
+
:param str schedule_key: Schedule Key
|
260
|
+
:param str workspace_id: The workspace ID.
|
261
|
+
"""
|
262
|
+
__args__ = dict()
|
263
|
+
__args__['applicationKey'] = application_key
|
264
|
+
__args__['scheduleKey'] = schedule_key
|
265
|
+
__args__['workspaceId'] = workspace_id
|
266
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
267
|
+
__ret__ = pulumi.runtime.invoke('oci:DataIntegration/getWorkspaceApplicationSchedule:getWorkspaceApplicationSchedule', __args__, opts=opts, typ=GetWorkspaceApplicationScheduleResult).value
|
268
|
+
|
269
|
+
return AwaitableGetWorkspaceApplicationScheduleResult(
|
270
|
+
application_key=pulumi.get(__ret__, 'application_key'),
|
271
|
+
description=pulumi.get(__ret__, 'description'),
|
272
|
+
frequency_details=pulumi.get(__ret__, 'frequency_details'),
|
273
|
+
id=pulumi.get(__ret__, 'id'),
|
274
|
+
identifier=pulumi.get(__ret__, 'identifier'),
|
275
|
+
is_daylight_adjustment_enabled=pulumi.get(__ret__, 'is_daylight_adjustment_enabled'),
|
276
|
+
key=pulumi.get(__ret__, 'key'),
|
277
|
+
metadatas=pulumi.get(__ret__, 'metadatas'),
|
278
|
+
model_type=pulumi.get(__ret__, 'model_type'),
|
279
|
+
model_version=pulumi.get(__ret__, 'model_version'),
|
280
|
+
name=pulumi.get(__ret__, 'name'),
|
281
|
+
object_status=pulumi.get(__ret__, 'object_status'),
|
282
|
+
object_version=pulumi.get(__ret__, 'object_version'),
|
283
|
+
parent_reves=pulumi.get(__ret__, 'parent_reves'),
|
284
|
+
registry_metadatas=pulumi.get(__ret__, 'registry_metadatas'),
|
285
|
+
schedule_key=pulumi.get(__ret__, 'schedule_key'),
|
286
|
+
timezone=pulumi.get(__ret__, 'timezone'),
|
287
|
+
workspace_id=pulumi.get(__ret__, 'workspace_id'))
|
288
|
+
|
289
|
+
|
290
|
+
@_utilities.lift_output_func(get_workspace_application_schedule)
|
291
|
+
def get_workspace_application_schedule_output(application_key: Optional[pulumi.Input[str]] = None,
|
292
|
+
schedule_key: Optional[pulumi.Input[str]] = None,
|
293
|
+
workspace_id: Optional[pulumi.Input[str]] = None,
|
294
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetWorkspaceApplicationScheduleResult]:
|
295
|
+
"""
|
296
|
+
This data source provides details about a specific Workspace Application Schedule resource in Oracle Cloud Infrastructure Data Integration service.
|
297
|
+
|
298
|
+
Retrieves schedule by schedule key
|
299
|
+
|
300
|
+
## Example Usage
|
301
|
+
|
302
|
+
```python
|
303
|
+
import pulumi
|
304
|
+
import pulumi_oci as oci
|
305
|
+
|
306
|
+
test_workspace_application_schedule = oci.DataIntegration.get_workspace_application_schedule(application_key=var["workspace_application_schedule_application_key"],
|
307
|
+
schedule_key=var["workspace_application_schedule_schedule_key"],
|
308
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"])
|
309
|
+
```
|
310
|
+
|
311
|
+
|
312
|
+
:param str application_key: The application key.
|
313
|
+
:param str schedule_key: Schedule Key
|
314
|
+
:param str workspace_id: The workspace ID.
|
315
|
+
"""
|
316
|
+
...
|
@@ -0,0 +1,230 @@
|
|
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__ = [
|
15
|
+
'GetWorkspaceApplicationSchedulesResult',
|
16
|
+
'AwaitableGetWorkspaceApplicationSchedulesResult',
|
17
|
+
'get_workspace_application_schedules',
|
18
|
+
'get_workspace_application_schedules_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetWorkspaceApplicationSchedulesResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getWorkspaceApplicationSchedules.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, application_key=None, filters=None, id=None, identifiers=None, keys=None, name=None, schedule_summary_collections=None, types=None, workspace_id=None):
|
27
|
+
if application_key and not isinstance(application_key, str):
|
28
|
+
raise TypeError("Expected argument 'application_key' to be a str")
|
29
|
+
pulumi.set(__self__, "application_key", application_key)
|
30
|
+
if filters and not isinstance(filters, list):
|
31
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
32
|
+
pulumi.set(__self__, "filters", filters)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if identifiers and not isinstance(identifiers, list):
|
37
|
+
raise TypeError("Expected argument 'identifiers' to be a list")
|
38
|
+
pulumi.set(__self__, "identifiers", identifiers)
|
39
|
+
if keys and not isinstance(keys, list):
|
40
|
+
raise TypeError("Expected argument 'keys' to be a list")
|
41
|
+
pulumi.set(__self__, "keys", keys)
|
42
|
+
if name and not isinstance(name, str):
|
43
|
+
raise TypeError("Expected argument 'name' to be a str")
|
44
|
+
pulumi.set(__self__, "name", name)
|
45
|
+
if schedule_summary_collections and not isinstance(schedule_summary_collections, list):
|
46
|
+
raise TypeError("Expected argument 'schedule_summary_collections' to be a list")
|
47
|
+
pulumi.set(__self__, "schedule_summary_collections", schedule_summary_collections)
|
48
|
+
if types and not isinstance(types, list):
|
49
|
+
raise TypeError("Expected argument 'types' to be a list")
|
50
|
+
pulumi.set(__self__, "types", types)
|
51
|
+
if workspace_id and not isinstance(workspace_id, str):
|
52
|
+
raise TypeError("Expected argument 'workspace_id' to be a str")
|
53
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter(name="applicationKey")
|
57
|
+
def application_key(self) -> str:
|
58
|
+
return pulumi.get(self, "application_key")
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def filters(self) -> Optional[Sequence['outputs.GetWorkspaceApplicationSchedulesFilterResult']]:
|
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
|
75
|
+
def identifiers(self) -> Optional[Sequence[str]]:
|
76
|
+
"""
|
77
|
+
The identifier of the aggregator.
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "identifiers")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def keys(self) -> Optional[Sequence[str]]:
|
84
|
+
"""
|
85
|
+
The key of the aggregator object.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "keys")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter
|
91
|
+
def name(self) -> Optional[str]:
|
92
|
+
"""
|
93
|
+
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.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "name")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="scheduleSummaryCollections")
|
99
|
+
def schedule_summary_collections(self) -> Sequence['outputs.GetWorkspaceApplicationSchedulesScheduleSummaryCollectionResult']:
|
100
|
+
"""
|
101
|
+
The list of schedule_summary_collection.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "schedule_summary_collections")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter
|
107
|
+
def types(self) -> Optional[Sequence[str]]:
|
108
|
+
"""
|
109
|
+
The type of the aggregator.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "types")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="workspaceId")
|
115
|
+
def workspace_id(self) -> str:
|
116
|
+
return pulumi.get(self, "workspace_id")
|
117
|
+
|
118
|
+
|
119
|
+
class AwaitableGetWorkspaceApplicationSchedulesResult(GetWorkspaceApplicationSchedulesResult):
|
120
|
+
# pylint: disable=using-constant-test
|
121
|
+
def __await__(self):
|
122
|
+
if False:
|
123
|
+
yield self
|
124
|
+
return GetWorkspaceApplicationSchedulesResult(
|
125
|
+
application_key=self.application_key,
|
126
|
+
filters=self.filters,
|
127
|
+
id=self.id,
|
128
|
+
identifiers=self.identifiers,
|
129
|
+
keys=self.keys,
|
130
|
+
name=self.name,
|
131
|
+
schedule_summary_collections=self.schedule_summary_collections,
|
132
|
+
types=self.types,
|
133
|
+
workspace_id=self.workspace_id)
|
134
|
+
|
135
|
+
|
136
|
+
def get_workspace_application_schedules(application_key: Optional[str] = None,
|
137
|
+
filters: Optional[Sequence[pulumi.InputType['GetWorkspaceApplicationSchedulesFilterArgs']]] = None,
|
138
|
+
identifiers: Optional[Sequence[str]] = None,
|
139
|
+
keys: Optional[Sequence[str]] = None,
|
140
|
+
name: Optional[str] = None,
|
141
|
+
types: Optional[Sequence[str]] = None,
|
142
|
+
workspace_id: Optional[str] = None,
|
143
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWorkspaceApplicationSchedulesResult:
|
144
|
+
"""
|
145
|
+
This data source provides the list of Workspace Application Schedules in Oracle Cloud Infrastructure Data Integration service.
|
146
|
+
|
147
|
+
Use this endpoint to list schedules.
|
148
|
+
|
149
|
+
## Example Usage
|
150
|
+
|
151
|
+
```python
|
152
|
+
import pulumi
|
153
|
+
import pulumi_oci as oci
|
154
|
+
|
155
|
+
test_workspace_application_schedules = oci.DataIntegration.get_workspace_application_schedules(application_key=var["workspace_application_schedule_application_key"],
|
156
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
157
|
+
identifiers=var["workspace_application_schedule_identifier"],
|
158
|
+
keys=var["workspace_application_schedule_key"],
|
159
|
+
name=var["workspace_application_schedule_name"],
|
160
|
+
types=var["workspace_application_schedule_type"])
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
:param str application_key: The application key.
|
165
|
+
:param Sequence[str] identifiers: Used to filter by the identifier of the object.
|
166
|
+
:param Sequence[str] keys: Used to filter by the key of the object.
|
167
|
+
:param str name: Used to filter by the name of the object.
|
168
|
+
:param Sequence[str] types: Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. <br><br><B>Examples:</B><br> <ul> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=false</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=true</B> returns all objects of type data loader task</li> </ul>
|
169
|
+
:param str workspace_id: The workspace ID.
|
170
|
+
"""
|
171
|
+
__args__ = dict()
|
172
|
+
__args__['applicationKey'] = application_key
|
173
|
+
__args__['filters'] = filters
|
174
|
+
__args__['identifiers'] = identifiers
|
175
|
+
__args__['keys'] = keys
|
176
|
+
__args__['name'] = name
|
177
|
+
__args__['types'] = types
|
178
|
+
__args__['workspaceId'] = workspace_id
|
179
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
180
|
+
__ret__ = pulumi.runtime.invoke('oci:DataIntegration/getWorkspaceApplicationSchedules:getWorkspaceApplicationSchedules', __args__, opts=opts, typ=GetWorkspaceApplicationSchedulesResult).value
|
181
|
+
|
182
|
+
return AwaitableGetWorkspaceApplicationSchedulesResult(
|
183
|
+
application_key=pulumi.get(__ret__, 'application_key'),
|
184
|
+
filters=pulumi.get(__ret__, 'filters'),
|
185
|
+
id=pulumi.get(__ret__, 'id'),
|
186
|
+
identifiers=pulumi.get(__ret__, 'identifiers'),
|
187
|
+
keys=pulumi.get(__ret__, 'keys'),
|
188
|
+
name=pulumi.get(__ret__, 'name'),
|
189
|
+
schedule_summary_collections=pulumi.get(__ret__, 'schedule_summary_collections'),
|
190
|
+
types=pulumi.get(__ret__, 'types'),
|
191
|
+
workspace_id=pulumi.get(__ret__, 'workspace_id'))
|
192
|
+
|
193
|
+
|
194
|
+
@_utilities.lift_output_func(get_workspace_application_schedules)
|
195
|
+
def get_workspace_application_schedules_output(application_key: Optional[pulumi.Input[str]] = None,
|
196
|
+
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetWorkspaceApplicationSchedulesFilterArgs']]]]] = None,
|
197
|
+
identifiers: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
198
|
+
keys: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
199
|
+
name: Optional[pulumi.Input[Optional[str]]] = None,
|
200
|
+
types: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
201
|
+
workspace_id: Optional[pulumi.Input[str]] = None,
|
202
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetWorkspaceApplicationSchedulesResult]:
|
203
|
+
"""
|
204
|
+
This data source provides the list of Workspace Application Schedules in Oracle Cloud Infrastructure Data Integration service.
|
205
|
+
|
206
|
+
Use this endpoint to list schedules.
|
207
|
+
|
208
|
+
## Example Usage
|
209
|
+
|
210
|
+
```python
|
211
|
+
import pulumi
|
212
|
+
import pulumi_oci as oci
|
213
|
+
|
214
|
+
test_workspace_application_schedules = oci.DataIntegration.get_workspace_application_schedules(application_key=var["workspace_application_schedule_application_key"],
|
215
|
+
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
216
|
+
identifiers=var["workspace_application_schedule_identifier"],
|
217
|
+
keys=var["workspace_application_schedule_key"],
|
218
|
+
name=var["workspace_application_schedule_name"],
|
219
|
+
types=var["workspace_application_schedule_type"])
|
220
|
+
```
|
221
|
+
|
222
|
+
|
223
|
+
:param str application_key: The application key.
|
224
|
+
:param Sequence[str] identifiers: Used to filter by the identifier of the object.
|
225
|
+
:param Sequence[str] keys: Used to filter by the key of the object.
|
226
|
+
:param str name: Used to filter by the name of the object.
|
227
|
+
:param Sequence[str] types: Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. <br><br><B>Examples:</B><br> <ul> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=false</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=true</B> returns all objects of type data loader task</li> </ul>
|
228
|
+
:param str workspace_id: The workspace ID.
|
229
|
+
"""
|
230
|
+
...
|