pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__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/database/autonomous_database.py +155 -14
- pulumi_oci/database/get_autonomous_database.py +41 -2
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +68 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
- pulumi_oci/databasemanagement/outputs.py +267 -75
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +4504 -0
- pulumi_oci/dataintegration/get_workspace_task.py +443 -0
- pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
- pulumi_oci/dataintegration/outputs.py +16511 -4723
- pulumi_oci/dataintegration/workspace_task.py +1364 -0
- pulumi_oci/devops/_inputs.py +18 -2
- pulumi_oci/devops/deploy_artifact.py +2 -0
- pulumi_oci/devops/deploy_stage.py +141 -0
- pulumi_oci/devops/get_deploy_stage.py +40 -1
- pulumi_oci/devops/outputs.py +75 -6
- pulumi_oci/logging/_inputs.py +2751 -187
- pulumi_oci/logging/outputs.py +4981 -768
- pulumi_oci/logging/unified_agent_configuration.py +34 -208
- pulumi_oci/monitoring/_inputs.py +136 -0
- pulumi_oci/monitoring/alarm.py +173 -0
- pulumi_oci/monitoring/get_alarm.py +40 -1
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +305 -0
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +41 -34
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,443 @@
|
|
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
|
+
'GetWorkspaceTaskResult',
|
15
|
+
'AwaitableGetWorkspaceTaskResult',
|
16
|
+
'get_workspace_task',
|
17
|
+
'get_workspace_task_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetWorkspaceTaskResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getWorkspaceTask.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, api_call_mode=None, auth_configs=None, cancel_rest_call_configs=None, config_provider_delegates=None, description=None, execute_rest_call_configs=None, expand_references=None, id=None, identifier=None, input_ports=None, is_single_load=None, key=None, key_map=None, metadatas=None, model_type=None, model_version=None, name=None, object_status=None, object_version=None, op_config_values=None, operation=None, output_ports=None, parallel_load_limit=None, parameters=None, parent_reves=None, poll_rest_call_configs=None, registry_metadatas=None, typed_expressions=None, workspace_id=None):
|
26
|
+
if api_call_mode and not isinstance(api_call_mode, str):
|
27
|
+
raise TypeError("Expected argument 'api_call_mode' to be a str")
|
28
|
+
pulumi.set(__self__, "api_call_mode", api_call_mode)
|
29
|
+
if auth_configs and not isinstance(auth_configs, list):
|
30
|
+
raise TypeError("Expected argument 'auth_configs' to be a list")
|
31
|
+
pulumi.set(__self__, "auth_configs", auth_configs)
|
32
|
+
if cancel_rest_call_configs and not isinstance(cancel_rest_call_configs, list):
|
33
|
+
raise TypeError("Expected argument 'cancel_rest_call_configs' to be a list")
|
34
|
+
pulumi.set(__self__, "cancel_rest_call_configs", cancel_rest_call_configs)
|
35
|
+
if config_provider_delegates and not isinstance(config_provider_delegates, list):
|
36
|
+
raise TypeError("Expected argument 'config_provider_delegates' to be a list")
|
37
|
+
pulumi.set(__self__, "config_provider_delegates", config_provider_delegates)
|
38
|
+
if description and not isinstance(description, str):
|
39
|
+
raise TypeError("Expected argument 'description' to be a str")
|
40
|
+
pulumi.set(__self__, "description", description)
|
41
|
+
if execute_rest_call_configs and not isinstance(execute_rest_call_configs, list):
|
42
|
+
raise TypeError("Expected argument 'execute_rest_call_configs' to be a list")
|
43
|
+
pulumi.set(__self__, "execute_rest_call_configs", execute_rest_call_configs)
|
44
|
+
if expand_references and not isinstance(expand_references, str):
|
45
|
+
raise TypeError("Expected argument 'expand_references' to be a str")
|
46
|
+
pulumi.set(__self__, "expand_references", expand_references)
|
47
|
+
if id and not isinstance(id, str):
|
48
|
+
raise TypeError("Expected argument 'id' to be a str")
|
49
|
+
pulumi.set(__self__, "id", id)
|
50
|
+
if identifier and not isinstance(identifier, str):
|
51
|
+
raise TypeError("Expected argument 'identifier' to be a str")
|
52
|
+
pulumi.set(__self__, "identifier", identifier)
|
53
|
+
if input_ports and not isinstance(input_ports, list):
|
54
|
+
raise TypeError("Expected argument 'input_ports' to be a list")
|
55
|
+
pulumi.set(__self__, "input_ports", input_ports)
|
56
|
+
if is_single_load and not isinstance(is_single_load, bool):
|
57
|
+
raise TypeError("Expected argument 'is_single_load' to be a bool")
|
58
|
+
pulumi.set(__self__, "is_single_load", is_single_load)
|
59
|
+
if key and not isinstance(key, str):
|
60
|
+
raise TypeError("Expected argument 'key' to be a str")
|
61
|
+
pulumi.set(__self__, "key", key)
|
62
|
+
if key_map and not isinstance(key_map, dict):
|
63
|
+
raise TypeError("Expected argument 'key_map' to be a dict")
|
64
|
+
pulumi.set(__self__, "key_map", key_map)
|
65
|
+
if metadatas and not isinstance(metadatas, list):
|
66
|
+
raise TypeError("Expected argument 'metadatas' to be a list")
|
67
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
68
|
+
if model_type and not isinstance(model_type, str):
|
69
|
+
raise TypeError("Expected argument 'model_type' to be a str")
|
70
|
+
pulumi.set(__self__, "model_type", model_type)
|
71
|
+
if model_version and not isinstance(model_version, str):
|
72
|
+
raise TypeError("Expected argument 'model_version' to be a str")
|
73
|
+
pulumi.set(__self__, "model_version", model_version)
|
74
|
+
if name and not isinstance(name, str):
|
75
|
+
raise TypeError("Expected argument 'name' to be a str")
|
76
|
+
pulumi.set(__self__, "name", name)
|
77
|
+
if object_status and not isinstance(object_status, int):
|
78
|
+
raise TypeError("Expected argument 'object_status' to be a int")
|
79
|
+
pulumi.set(__self__, "object_status", object_status)
|
80
|
+
if object_version and not isinstance(object_version, int):
|
81
|
+
raise TypeError("Expected argument 'object_version' to be a int")
|
82
|
+
pulumi.set(__self__, "object_version", object_version)
|
83
|
+
if op_config_values and not isinstance(op_config_values, list):
|
84
|
+
raise TypeError("Expected argument 'op_config_values' to be a list")
|
85
|
+
pulumi.set(__self__, "op_config_values", op_config_values)
|
86
|
+
if operation and not isinstance(operation, str):
|
87
|
+
raise TypeError("Expected argument 'operation' to be a str")
|
88
|
+
pulumi.set(__self__, "operation", operation)
|
89
|
+
if output_ports and not isinstance(output_ports, list):
|
90
|
+
raise TypeError("Expected argument 'output_ports' to be a list")
|
91
|
+
pulumi.set(__self__, "output_ports", output_ports)
|
92
|
+
if parallel_load_limit and not isinstance(parallel_load_limit, int):
|
93
|
+
raise TypeError("Expected argument 'parallel_load_limit' to be a int")
|
94
|
+
pulumi.set(__self__, "parallel_load_limit", parallel_load_limit)
|
95
|
+
if parameters and not isinstance(parameters, list):
|
96
|
+
raise TypeError("Expected argument 'parameters' to be a list")
|
97
|
+
pulumi.set(__self__, "parameters", parameters)
|
98
|
+
if parent_reves and not isinstance(parent_reves, list):
|
99
|
+
raise TypeError("Expected argument 'parent_reves' to be a list")
|
100
|
+
pulumi.set(__self__, "parent_reves", parent_reves)
|
101
|
+
if poll_rest_call_configs and not isinstance(poll_rest_call_configs, list):
|
102
|
+
raise TypeError("Expected argument 'poll_rest_call_configs' to be a list")
|
103
|
+
pulumi.set(__self__, "poll_rest_call_configs", poll_rest_call_configs)
|
104
|
+
if registry_metadatas and not isinstance(registry_metadatas, list):
|
105
|
+
raise TypeError("Expected argument 'registry_metadatas' to be a list")
|
106
|
+
pulumi.set(__self__, "registry_metadatas", registry_metadatas)
|
107
|
+
if typed_expressions and not isinstance(typed_expressions, list):
|
108
|
+
raise TypeError("Expected argument 'typed_expressions' to be a list")
|
109
|
+
pulumi.set(__self__, "typed_expressions", typed_expressions)
|
110
|
+
if workspace_id and not isinstance(workspace_id, str):
|
111
|
+
raise TypeError("Expected argument 'workspace_id' to be a str")
|
112
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="apiCallMode")
|
116
|
+
def api_call_mode(self) -> str:
|
117
|
+
"""
|
118
|
+
The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "api_call_mode")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="authConfigs")
|
124
|
+
def auth_configs(self) -> Sequence['outputs.GetWorkspaceTaskAuthConfigResult']:
|
125
|
+
"""
|
126
|
+
Authentication configuration for Generic REST invocation.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "auth_configs")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="cancelRestCallConfigs")
|
132
|
+
def cancel_rest_call_configs(self) -> Sequence['outputs.GetWorkspaceTaskCancelRestCallConfigResult']:
|
133
|
+
"""
|
134
|
+
The REST API configuration for cancelling the task.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "cancel_rest_call_configs")
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="configProviderDelegates")
|
140
|
+
def config_provider_delegates(self) -> Sequence['outputs.GetWorkspaceTaskConfigProviderDelegateResult']:
|
141
|
+
"""
|
142
|
+
The information about the configuration provider.
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "config_provider_delegates")
|
145
|
+
|
146
|
+
@property
|
147
|
+
@pulumi.getter
|
148
|
+
def description(self) -> str:
|
149
|
+
"""
|
150
|
+
Detailed description for the object.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "description")
|
153
|
+
|
154
|
+
@property
|
155
|
+
@pulumi.getter(name="executeRestCallConfigs")
|
156
|
+
def execute_rest_call_configs(self) -> Sequence['outputs.GetWorkspaceTaskExecuteRestCallConfigResult']:
|
157
|
+
"""
|
158
|
+
The REST API configuration for execution.
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "execute_rest_call_configs")
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="expandReferences")
|
164
|
+
def expand_references(self) -> str:
|
165
|
+
return pulumi.get(self, "expand_references")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter
|
169
|
+
def id(self) -> str:
|
170
|
+
return pulumi.get(self, "id")
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter
|
174
|
+
def identifier(self) -> str:
|
175
|
+
"""
|
176
|
+
Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "identifier")
|
179
|
+
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="inputPorts")
|
182
|
+
def input_ports(self) -> Sequence['outputs.GetWorkspaceTaskInputPortResult']:
|
183
|
+
"""
|
184
|
+
An array of input ports.
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "input_ports")
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="isSingleLoad")
|
190
|
+
def is_single_load(self) -> bool:
|
191
|
+
"""
|
192
|
+
Defines whether Data Loader task is used for single load or multiple
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "is_single_load")
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter
|
198
|
+
def key(self) -> str:
|
199
|
+
"""
|
200
|
+
The key of the object.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "key")
|
203
|
+
|
204
|
+
@property
|
205
|
+
@pulumi.getter(name="keyMap")
|
206
|
+
def key_map(self) -> Mapping[str, Any]:
|
207
|
+
"""
|
208
|
+
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
|
209
|
+
"""
|
210
|
+
return pulumi.get(self, "key_map")
|
211
|
+
|
212
|
+
@property
|
213
|
+
@pulumi.getter
|
214
|
+
def metadatas(self) -> Sequence['outputs.GetWorkspaceTaskMetadataResult']:
|
215
|
+
"""
|
216
|
+
A summary type containing information about the object including its key, name and when/who created/updated it.
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "metadatas")
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter(name="modelType")
|
222
|
+
def model_type(self) -> str:
|
223
|
+
"""
|
224
|
+
The type of the types object.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "model_type")
|
227
|
+
|
228
|
+
@property
|
229
|
+
@pulumi.getter(name="modelVersion")
|
230
|
+
def model_version(self) -> str:
|
231
|
+
"""
|
232
|
+
The model version of an object.
|
233
|
+
"""
|
234
|
+
return pulumi.get(self, "model_version")
|
235
|
+
|
236
|
+
@property
|
237
|
+
@pulumi.getter
|
238
|
+
def name(self) -> str:
|
239
|
+
"""
|
240
|
+
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.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "name")
|
243
|
+
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="objectStatus")
|
246
|
+
def object_status(self) -> int:
|
247
|
+
"""
|
248
|
+
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "object_status")
|
251
|
+
|
252
|
+
@property
|
253
|
+
@pulumi.getter(name="objectVersion")
|
254
|
+
def object_version(self) -> int:
|
255
|
+
"""
|
256
|
+
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "object_version")
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="opConfigValues")
|
262
|
+
def op_config_values(self) -> Sequence['outputs.GetWorkspaceTaskOpConfigValueResult']:
|
263
|
+
"""
|
264
|
+
Configuration values can be string, objects, or parameters.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "op_config_values")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter
|
270
|
+
def operation(self) -> str:
|
271
|
+
"""
|
272
|
+
Describes the shape of the execution result
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "operation")
|
275
|
+
|
276
|
+
@property
|
277
|
+
@pulumi.getter(name="outputPorts")
|
278
|
+
def output_ports(self) -> Sequence['outputs.GetWorkspaceTaskOutputPortResult']:
|
279
|
+
"""
|
280
|
+
An array of output ports.
|
281
|
+
"""
|
282
|
+
return pulumi.get(self, "output_ports")
|
283
|
+
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="parallelLoadLimit")
|
286
|
+
def parallel_load_limit(self) -> int:
|
287
|
+
"""
|
288
|
+
Defines the number of entities being loaded in parallel at a time for a Data Loader task
|
289
|
+
"""
|
290
|
+
return pulumi.get(self, "parallel_load_limit")
|
291
|
+
|
292
|
+
@property
|
293
|
+
@pulumi.getter
|
294
|
+
def parameters(self) -> Sequence['outputs.GetWorkspaceTaskParameterResult']:
|
295
|
+
"""
|
296
|
+
A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "parameters")
|
299
|
+
|
300
|
+
@property
|
301
|
+
@pulumi.getter(name="parentReves")
|
302
|
+
def parent_reves(self) -> Sequence['outputs.GetWorkspaceTaskParentRefResult']:
|
303
|
+
"""
|
304
|
+
A reference to the object's parent.
|
305
|
+
"""
|
306
|
+
return pulumi.get(self, "parent_reves")
|
307
|
+
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="pollRestCallConfigs")
|
310
|
+
def poll_rest_call_configs(self) -> Sequence['outputs.GetWorkspaceTaskPollRestCallConfigResult']:
|
311
|
+
"""
|
312
|
+
The REST API configuration for polling.
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "poll_rest_call_configs")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="registryMetadatas")
|
318
|
+
def registry_metadatas(self) -> Sequence['outputs.GetWorkspaceTaskRegistryMetadataResult']:
|
319
|
+
"""
|
320
|
+
Information about the object and its parent.
|
321
|
+
"""
|
322
|
+
return pulumi.get(self, "registry_metadatas")
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="typedExpressions")
|
326
|
+
def typed_expressions(self) -> Sequence['outputs.GetWorkspaceTaskTypedExpressionResult']:
|
327
|
+
"""
|
328
|
+
List of typed expressions.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "typed_expressions")
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="workspaceId")
|
334
|
+
def workspace_id(self) -> str:
|
335
|
+
return pulumi.get(self, "workspace_id")
|
336
|
+
|
337
|
+
|
338
|
+
class AwaitableGetWorkspaceTaskResult(GetWorkspaceTaskResult):
|
339
|
+
# pylint: disable=using-constant-test
|
340
|
+
def __await__(self):
|
341
|
+
if False:
|
342
|
+
yield self
|
343
|
+
return GetWorkspaceTaskResult(
|
344
|
+
api_call_mode=self.api_call_mode,
|
345
|
+
auth_configs=self.auth_configs,
|
346
|
+
cancel_rest_call_configs=self.cancel_rest_call_configs,
|
347
|
+
config_provider_delegates=self.config_provider_delegates,
|
348
|
+
description=self.description,
|
349
|
+
execute_rest_call_configs=self.execute_rest_call_configs,
|
350
|
+
expand_references=self.expand_references,
|
351
|
+
id=self.id,
|
352
|
+
identifier=self.identifier,
|
353
|
+
input_ports=self.input_ports,
|
354
|
+
is_single_load=self.is_single_load,
|
355
|
+
key=self.key,
|
356
|
+
key_map=self.key_map,
|
357
|
+
metadatas=self.metadatas,
|
358
|
+
model_type=self.model_type,
|
359
|
+
model_version=self.model_version,
|
360
|
+
name=self.name,
|
361
|
+
object_status=self.object_status,
|
362
|
+
object_version=self.object_version,
|
363
|
+
op_config_values=self.op_config_values,
|
364
|
+
operation=self.operation,
|
365
|
+
output_ports=self.output_ports,
|
366
|
+
parallel_load_limit=self.parallel_load_limit,
|
367
|
+
parameters=self.parameters,
|
368
|
+
parent_reves=self.parent_reves,
|
369
|
+
poll_rest_call_configs=self.poll_rest_call_configs,
|
370
|
+
registry_metadatas=self.registry_metadatas,
|
371
|
+
typed_expressions=self.typed_expressions,
|
372
|
+
workspace_id=self.workspace_id)
|
373
|
+
|
374
|
+
|
375
|
+
def get_workspace_task(expand_references: Optional[str] = None,
|
376
|
+
key: Optional[str] = None,
|
377
|
+
workspace_id: Optional[str] = None,
|
378
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWorkspaceTaskResult:
|
379
|
+
"""
|
380
|
+
This data source provides details about a specific Workspace Task resource in Oracle Cloud Infrastructure Data Integration service.
|
381
|
+
|
382
|
+
Retrieves a task using the specified identifier.
|
383
|
+
|
384
|
+
|
385
|
+
:param str expand_references: Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul>
|
386
|
+
:param str key: The key of the object.
|
387
|
+
:param str workspace_id: The workspace ID.
|
388
|
+
"""
|
389
|
+
__args__ = dict()
|
390
|
+
__args__['expandReferences'] = expand_references
|
391
|
+
__args__['key'] = key
|
392
|
+
__args__['workspaceId'] = workspace_id
|
393
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
394
|
+
__ret__ = pulumi.runtime.invoke('oci:DataIntegration/getWorkspaceTask:getWorkspaceTask', __args__, opts=opts, typ=GetWorkspaceTaskResult).value
|
395
|
+
|
396
|
+
return AwaitableGetWorkspaceTaskResult(
|
397
|
+
api_call_mode=pulumi.get(__ret__, 'api_call_mode'),
|
398
|
+
auth_configs=pulumi.get(__ret__, 'auth_configs'),
|
399
|
+
cancel_rest_call_configs=pulumi.get(__ret__, 'cancel_rest_call_configs'),
|
400
|
+
config_provider_delegates=pulumi.get(__ret__, 'config_provider_delegates'),
|
401
|
+
description=pulumi.get(__ret__, 'description'),
|
402
|
+
execute_rest_call_configs=pulumi.get(__ret__, 'execute_rest_call_configs'),
|
403
|
+
expand_references=pulumi.get(__ret__, 'expand_references'),
|
404
|
+
id=pulumi.get(__ret__, 'id'),
|
405
|
+
identifier=pulumi.get(__ret__, 'identifier'),
|
406
|
+
input_ports=pulumi.get(__ret__, 'input_ports'),
|
407
|
+
is_single_load=pulumi.get(__ret__, 'is_single_load'),
|
408
|
+
key=pulumi.get(__ret__, 'key'),
|
409
|
+
key_map=pulumi.get(__ret__, 'key_map'),
|
410
|
+
metadatas=pulumi.get(__ret__, 'metadatas'),
|
411
|
+
model_type=pulumi.get(__ret__, 'model_type'),
|
412
|
+
model_version=pulumi.get(__ret__, 'model_version'),
|
413
|
+
name=pulumi.get(__ret__, 'name'),
|
414
|
+
object_status=pulumi.get(__ret__, 'object_status'),
|
415
|
+
object_version=pulumi.get(__ret__, 'object_version'),
|
416
|
+
op_config_values=pulumi.get(__ret__, 'op_config_values'),
|
417
|
+
operation=pulumi.get(__ret__, 'operation'),
|
418
|
+
output_ports=pulumi.get(__ret__, 'output_ports'),
|
419
|
+
parallel_load_limit=pulumi.get(__ret__, 'parallel_load_limit'),
|
420
|
+
parameters=pulumi.get(__ret__, 'parameters'),
|
421
|
+
parent_reves=pulumi.get(__ret__, 'parent_reves'),
|
422
|
+
poll_rest_call_configs=pulumi.get(__ret__, 'poll_rest_call_configs'),
|
423
|
+
registry_metadatas=pulumi.get(__ret__, 'registry_metadatas'),
|
424
|
+
typed_expressions=pulumi.get(__ret__, 'typed_expressions'),
|
425
|
+
workspace_id=pulumi.get(__ret__, 'workspace_id'))
|
426
|
+
|
427
|
+
|
428
|
+
@_utilities.lift_output_func(get_workspace_task)
|
429
|
+
def get_workspace_task_output(expand_references: Optional[pulumi.Input[str]] = None,
|
430
|
+
key: Optional[pulumi.Input[str]] = None,
|
431
|
+
workspace_id: Optional[pulumi.Input[str]] = None,
|
432
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetWorkspaceTaskResult]:
|
433
|
+
"""
|
434
|
+
This data source provides details about a specific Workspace Task resource in Oracle Cloud Infrastructure Data Integration service.
|
435
|
+
|
436
|
+
Retrieves a task using the specified identifier.
|
437
|
+
|
438
|
+
|
439
|
+
:param str expand_references: Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul>
|
440
|
+
:param str key: The key of the object.
|
441
|
+
:param str workspace_id: The workspace ID.
|
442
|
+
"""
|
443
|
+
...
|