pulumi-oci 1.38.0a1717181239__py3-none-any.whl → 1.39.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 +11 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +35 -28
- {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,267 @@
|
|
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
|
+
|
12
|
+
__all__ = [
|
13
|
+
'OccDemandSignalOccDemandSignalArgs',
|
14
|
+
'OccDemandSignalOccDemandSignalValueArgs',
|
15
|
+
'OccDemandSignalPatchOperationArgs',
|
16
|
+
'GetOccDemandSignalsFilterArgs',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class OccDemandSignalOccDemandSignalArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
resource_type: pulumi.Input[str],
|
23
|
+
units: pulumi.Input[str],
|
24
|
+
values: pulumi.Input[Sequence[pulumi.Input['OccDemandSignalOccDemandSignalValueArgs']]]):
|
25
|
+
"""
|
26
|
+
:param pulumi.Input[str] resource_type: The name of the resource for the data.
|
27
|
+
:param pulumi.Input[str] units: The units of the data.
|
28
|
+
:param pulumi.Input[Sequence[pulumi.Input['OccDemandSignalOccDemandSignalValueArgs']]] values: The values of forecast.
|
29
|
+
"""
|
30
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
31
|
+
pulumi.set(__self__, "units", units)
|
32
|
+
pulumi.set(__self__, "values", values)
|
33
|
+
|
34
|
+
@property
|
35
|
+
@pulumi.getter(name="resourceType")
|
36
|
+
def resource_type(self) -> pulumi.Input[str]:
|
37
|
+
"""
|
38
|
+
The name of the resource for the data.
|
39
|
+
"""
|
40
|
+
return pulumi.get(self, "resource_type")
|
41
|
+
|
42
|
+
@resource_type.setter
|
43
|
+
def resource_type(self, value: pulumi.Input[str]):
|
44
|
+
pulumi.set(self, "resource_type", value)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter
|
48
|
+
def units(self) -> pulumi.Input[str]:
|
49
|
+
"""
|
50
|
+
The units of the data.
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "units")
|
53
|
+
|
54
|
+
@units.setter
|
55
|
+
def units(self, value: pulumi.Input[str]):
|
56
|
+
pulumi.set(self, "units", value)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter
|
60
|
+
def values(self) -> pulumi.Input[Sequence[pulumi.Input['OccDemandSignalOccDemandSignalValueArgs']]]:
|
61
|
+
"""
|
62
|
+
The values of forecast.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "values")
|
65
|
+
|
66
|
+
@values.setter
|
67
|
+
def values(self, value: pulumi.Input[Sequence[pulumi.Input['OccDemandSignalOccDemandSignalValueArgs']]]):
|
68
|
+
pulumi.set(self, "values", value)
|
69
|
+
|
70
|
+
|
71
|
+
@pulumi.input_type
|
72
|
+
class OccDemandSignalOccDemandSignalValueArgs:
|
73
|
+
def __init__(__self__, *,
|
74
|
+
time_expected: pulumi.Input[str],
|
75
|
+
value: pulumi.Input[float],
|
76
|
+
comments: Optional[pulumi.Input[str]] = None):
|
77
|
+
"""
|
78
|
+
:param pulumi.Input[str] time_expected: The date of the Demand Signal Value.
|
79
|
+
:param pulumi.Input[float] value: The Demand Signal Value.
|
80
|
+
:param pulumi.Input[str] comments: Space provided for users to make comments regarding the value.
|
81
|
+
"""
|
82
|
+
pulumi.set(__self__, "time_expected", time_expected)
|
83
|
+
pulumi.set(__self__, "value", value)
|
84
|
+
if comments is not None:
|
85
|
+
pulumi.set(__self__, "comments", comments)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="timeExpected")
|
89
|
+
def time_expected(self) -> pulumi.Input[str]:
|
90
|
+
"""
|
91
|
+
The date of the Demand Signal Value.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "time_expected")
|
94
|
+
|
95
|
+
@time_expected.setter
|
96
|
+
def time_expected(self, value: pulumi.Input[str]):
|
97
|
+
pulumi.set(self, "time_expected", value)
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter
|
101
|
+
def value(self) -> pulumi.Input[float]:
|
102
|
+
"""
|
103
|
+
The Demand Signal Value.
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "value")
|
106
|
+
|
107
|
+
@value.setter
|
108
|
+
def value(self, value: pulumi.Input[float]):
|
109
|
+
pulumi.set(self, "value", value)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter
|
113
|
+
def comments(self) -> Optional[pulumi.Input[str]]:
|
114
|
+
"""
|
115
|
+
Space provided for users to make comments regarding the value.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "comments")
|
118
|
+
|
119
|
+
@comments.setter
|
120
|
+
def comments(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
pulumi.set(self, "comments", value)
|
122
|
+
|
123
|
+
|
124
|
+
@pulumi.input_type
|
125
|
+
class OccDemandSignalPatchOperationArgs:
|
126
|
+
def __init__(__self__, *,
|
127
|
+
from_: pulumi.Input[str],
|
128
|
+
operation: pulumi.Input[str],
|
129
|
+
selection: pulumi.Input[str],
|
130
|
+
value: pulumi.Input[Mapping[str, Any]],
|
131
|
+
position: Optional[pulumi.Input[str]] = None,
|
132
|
+
selected_item: Optional[pulumi.Input[str]] = None):
|
133
|
+
"""
|
134
|
+
:param pulumi.Input[str] from_: (Updatable)
|
135
|
+
:param pulumi.Input[str] operation: (Updatable) The operation can be one of these values: `INSERT`, `INSERT_MULTIPLE`, `MERGE`, `MOVE`, `PROHIBIT`, `REMOVE`, `REPLACE`, `REQUIRE`
|
136
|
+
:param pulumi.Input[str] selection: (Updatable)
|
137
|
+
:param pulumi.Input[Mapping[str, Any]] value: (Updatable)
|
138
|
+
:param pulumi.Input[str] position: (Updatable)
|
139
|
+
:param pulumi.Input[str] selected_item: (Updatable)
|
140
|
+
"""
|
141
|
+
pulumi.set(__self__, "from_", from_)
|
142
|
+
pulumi.set(__self__, "operation", operation)
|
143
|
+
pulumi.set(__self__, "selection", selection)
|
144
|
+
pulumi.set(__self__, "value", value)
|
145
|
+
if position is not None:
|
146
|
+
pulumi.set(__self__, "position", position)
|
147
|
+
if selected_item is not None:
|
148
|
+
pulumi.set(__self__, "selected_item", selected_item)
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="from")
|
152
|
+
def from_(self) -> pulumi.Input[str]:
|
153
|
+
"""
|
154
|
+
(Updatable)
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "from_")
|
157
|
+
|
158
|
+
@from_.setter
|
159
|
+
def from_(self, value: pulumi.Input[str]):
|
160
|
+
pulumi.set(self, "from_", value)
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter
|
164
|
+
def operation(self) -> pulumi.Input[str]:
|
165
|
+
"""
|
166
|
+
(Updatable) The operation can be one of these values: `INSERT`, `INSERT_MULTIPLE`, `MERGE`, `MOVE`, `PROHIBIT`, `REMOVE`, `REPLACE`, `REQUIRE`
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "operation")
|
169
|
+
|
170
|
+
@operation.setter
|
171
|
+
def operation(self, value: pulumi.Input[str]):
|
172
|
+
pulumi.set(self, "operation", value)
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter
|
176
|
+
def selection(self) -> pulumi.Input[str]:
|
177
|
+
"""
|
178
|
+
(Updatable)
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "selection")
|
181
|
+
|
182
|
+
@selection.setter
|
183
|
+
def selection(self, value: pulumi.Input[str]):
|
184
|
+
pulumi.set(self, "selection", value)
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter
|
188
|
+
def value(self) -> pulumi.Input[Mapping[str, Any]]:
|
189
|
+
"""
|
190
|
+
(Updatable)
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "value")
|
193
|
+
|
194
|
+
@value.setter
|
195
|
+
def value(self, value: pulumi.Input[Mapping[str, Any]]):
|
196
|
+
pulumi.set(self, "value", value)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter
|
200
|
+
def position(self) -> Optional[pulumi.Input[str]]:
|
201
|
+
"""
|
202
|
+
(Updatable)
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "position")
|
205
|
+
|
206
|
+
@position.setter
|
207
|
+
def position(self, value: Optional[pulumi.Input[str]]):
|
208
|
+
pulumi.set(self, "position", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="selectedItem")
|
212
|
+
def selected_item(self) -> Optional[pulumi.Input[str]]:
|
213
|
+
"""
|
214
|
+
(Updatable)
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "selected_item")
|
217
|
+
|
218
|
+
@selected_item.setter
|
219
|
+
def selected_item(self, value: Optional[pulumi.Input[str]]):
|
220
|
+
pulumi.set(self, "selected_item", value)
|
221
|
+
|
222
|
+
|
223
|
+
@pulumi.input_type
|
224
|
+
class GetOccDemandSignalsFilterArgs:
|
225
|
+
def __init__(__self__, *,
|
226
|
+
name: str,
|
227
|
+
values: Sequence[str],
|
228
|
+
regex: Optional[bool] = None):
|
229
|
+
"""
|
230
|
+
:param Sequence[str] values: The values of forecast.
|
231
|
+
"""
|
232
|
+
pulumi.set(__self__, "name", name)
|
233
|
+
pulumi.set(__self__, "values", values)
|
234
|
+
if regex is not None:
|
235
|
+
pulumi.set(__self__, "regex", regex)
|
236
|
+
|
237
|
+
@property
|
238
|
+
@pulumi.getter
|
239
|
+
def name(self) -> str:
|
240
|
+
return pulumi.get(self, "name")
|
241
|
+
|
242
|
+
@name.setter
|
243
|
+
def name(self, value: str):
|
244
|
+
pulumi.set(self, "name", value)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter
|
248
|
+
def values(self) -> Sequence[str]:
|
249
|
+
"""
|
250
|
+
The values of forecast.
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "values")
|
253
|
+
|
254
|
+
@values.setter
|
255
|
+
def values(self, value: Sequence[str]):
|
256
|
+
pulumi.set(self, "values", value)
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter
|
260
|
+
def regex(self) -> Optional[bool]:
|
261
|
+
return pulumi.get(self, "regex")
|
262
|
+
|
263
|
+
@regex.setter
|
264
|
+
def regex(self, value: Optional[bool]):
|
265
|
+
pulumi.set(self, "regex", value)
|
266
|
+
|
267
|
+
|
@@ -0,0 +1,259 @@
|
|
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
|
+
'GetOccDemandSignalResult',
|
15
|
+
'AwaitableGetOccDemandSignalResult',
|
16
|
+
'get_occ_demand_signal',
|
17
|
+
'get_occ_demand_signal_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetOccDemandSignalResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getOccDemandSignal.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_active=None, lifecycle_details=None, occ_demand_signal_id=None, occ_demand_signals=None, patch_operations=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
26
|
+
if compartment_id and not isinstance(compartment_id, str):
|
27
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
29
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
30
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
31
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
32
|
+
if display_name and not isinstance(display_name, str):
|
33
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
34
|
+
pulumi.set(__self__, "display_name", display_name)
|
35
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
36
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
37
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if is_active and not isinstance(is_active, bool):
|
42
|
+
raise TypeError("Expected argument 'is_active' to be a bool")
|
43
|
+
pulumi.set(__self__, "is_active", is_active)
|
44
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
45
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
46
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
47
|
+
if occ_demand_signal_id and not isinstance(occ_demand_signal_id, str):
|
48
|
+
raise TypeError("Expected argument 'occ_demand_signal_id' to be a str")
|
49
|
+
pulumi.set(__self__, "occ_demand_signal_id", occ_demand_signal_id)
|
50
|
+
if occ_demand_signals and not isinstance(occ_demand_signals, list):
|
51
|
+
raise TypeError("Expected argument 'occ_demand_signals' to be a list")
|
52
|
+
pulumi.set(__self__, "occ_demand_signals", occ_demand_signals)
|
53
|
+
if patch_operations and not isinstance(patch_operations, list):
|
54
|
+
raise TypeError("Expected argument 'patch_operations' to be a list")
|
55
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
56
|
+
if state and not isinstance(state, str):
|
57
|
+
raise TypeError("Expected argument 'state' to be a str")
|
58
|
+
pulumi.set(__self__, "state", state)
|
59
|
+
if system_tags and not isinstance(system_tags, dict):
|
60
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
61
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
62
|
+
if time_created and not isinstance(time_created, str):
|
63
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
64
|
+
pulumi.set(__self__, "time_created", time_created)
|
65
|
+
if time_updated and not isinstance(time_updated, str):
|
66
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
67
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="compartmentId")
|
71
|
+
def compartment_id(self) -> str:
|
72
|
+
"""
|
73
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "compartment_id")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="definedTags")
|
79
|
+
def defined_tags(self) -> Mapping[str, Any]:
|
80
|
+
"""
|
81
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "defined_tags")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="displayName")
|
87
|
+
def display_name(self) -> str:
|
88
|
+
"""
|
89
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "display_name")
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="freeformTags")
|
95
|
+
def freeform_tags(self) -> Mapping[str, Any]:
|
96
|
+
"""
|
97
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "freeform_tags")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter
|
103
|
+
def id(self) -> str:
|
104
|
+
"""
|
105
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "id")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="isActive")
|
111
|
+
def is_active(self) -> bool:
|
112
|
+
"""
|
113
|
+
Indicator of whether to share the data with Oracle.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "is_active")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="lifecycleDetails")
|
119
|
+
def lifecycle_details(self) -> str:
|
120
|
+
"""
|
121
|
+
A message that describes the current state of the OccDemandSignal in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "lifecycle_details")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="occDemandSignalId")
|
127
|
+
def occ_demand_signal_id(self) -> str:
|
128
|
+
return pulumi.get(self, "occ_demand_signal_id")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="occDemandSignals")
|
132
|
+
def occ_demand_signals(self) -> Sequence['outputs.GetOccDemandSignalOccDemandSignalResult']:
|
133
|
+
"""
|
134
|
+
The OccDemandSignal data.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "occ_demand_signals")
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="patchOperations")
|
140
|
+
def patch_operations(self) -> Sequence['outputs.GetOccDemandSignalPatchOperationResult']:
|
141
|
+
return pulumi.get(self, "patch_operations")
|
142
|
+
|
143
|
+
@property
|
144
|
+
@pulumi.getter
|
145
|
+
def state(self) -> str:
|
146
|
+
"""
|
147
|
+
The current state of the OccDemandSignal.
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "state")
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="systemTags")
|
153
|
+
def system_tags(self) -> Mapping[str, Any]:
|
154
|
+
"""
|
155
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "system_tags")
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="timeCreated")
|
161
|
+
def time_created(self) -> str:
|
162
|
+
"""
|
163
|
+
The date and time the OccDemandSignal was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "time_created")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="timeUpdated")
|
169
|
+
def time_updated(self) -> str:
|
170
|
+
"""
|
171
|
+
The date and time the OccDemandSignal was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "time_updated")
|
174
|
+
|
175
|
+
|
176
|
+
class AwaitableGetOccDemandSignalResult(GetOccDemandSignalResult):
|
177
|
+
# pylint: disable=using-constant-test
|
178
|
+
def __await__(self):
|
179
|
+
if False:
|
180
|
+
yield self
|
181
|
+
return GetOccDemandSignalResult(
|
182
|
+
compartment_id=self.compartment_id,
|
183
|
+
defined_tags=self.defined_tags,
|
184
|
+
display_name=self.display_name,
|
185
|
+
freeform_tags=self.freeform_tags,
|
186
|
+
id=self.id,
|
187
|
+
is_active=self.is_active,
|
188
|
+
lifecycle_details=self.lifecycle_details,
|
189
|
+
occ_demand_signal_id=self.occ_demand_signal_id,
|
190
|
+
occ_demand_signals=self.occ_demand_signals,
|
191
|
+
patch_operations=self.patch_operations,
|
192
|
+
state=self.state,
|
193
|
+
system_tags=self.system_tags,
|
194
|
+
time_created=self.time_created,
|
195
|
+
time_updated=self.time_updated)
|
196
|
+
|
197
|
+
|
198
|
+
def get_occ_demand_signal(occ_demand_signal_id: Optional[str] = None,
|
199
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOccDemandSignalResult:
|
200
|
+
"""
|
201
|
+
This data source provides details about a specific Occ Demand Signal resource in Oracle Cloud Infrastructure Demand Signal service.
|
202
|
+
|
203
|
+
Gets information about a OccDemandSignal.
|
204
|
+
|
205
|
+
## Example Usage
|
206
|
+
|
207
|
+
```python
|
208
|
+
import pulumi
|
209
|
+
import pulumi_oci as oci
|
210
|
+
|
211
|
+
test_occ_demand_signal = oci.DemandSignal.get_occ_demand_signal(occ_demand_signal_id=test_occ_demand_signal_oci_demand_signal_occ_demand_signal["id"])
|
212
|
+
```
|
213
|
+
|
214
|
+
|
215
|
+
:param str occ_demand_signal_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
216
|
+
"""
|
217
|
+
__args__ = dict()
|
218
|
+
__args__['occDemandSignalId'] = occ_demand_signal_id
|
219
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
220
|
+
__ret__ = pulumi.runtime.invoke('oci:DemandSignal/getOccDemandSignal:getOccDemandSignal', __args__, opts=opts, typ=GetOccDemandSignalResult).value
|
221
|
+
|
222
|
+
return AwaitableGetOccDemandSignalResult(
|
223
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
224
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
225
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
226
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
227
|
+
id=pulumi.get(__ret__, 'id'),
|
228
|
+
is_active=pulumi.get(__ret__, 'is_active'),
|
229
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
230
|
+
occ_demand_signal_id=pulumi.get(__ret__, 'occ_demand_signal_id'),
|
231
|
+
occ_demand_signals=pulumi.get(__ret__, 'occ_demand_signals'),
|
232
|
+
patch_operations=pulumi.get(__ret__, 'patch_operations'),
|
233
|
+
state=pulumi.get(__ret__, 'state'),
|
234
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
235
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
236
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
237
|
+
|
238
|
+
|
239
|
+
@_utilities.lift_output_func(get_occ_demand_signal)
|
240
|
+
def get_occ_demand_signal_output(occ_demand_signal_id: Optional[pulumi.Input[str]] = None,
|
241
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOccDemandSignalResult]:
|
242
|
+
"""
|
243
|
+
This data source provides details about a specific Occ Demand Signal resource in Oracle Cloud Infrastructure Demand Signal service.
|
244
|
+
|
245
|
+
Gets information about a OccDemandSignal.
|
246
|
+
|
247
|
+
## Example Usage
|
248
|
+
|
249
|
+
```python
|
250
|
+
import pulumi
|
251
|
+
import pulumi_oci as oci
|
252
|
+
|
253
|
+
test_occ_demand_signal = oci.DemandSignal.get_occ_demand_signal(occ_demand_signal_id=test_occ_demand_signal_oci_demand_signal_occ_demand_signal["id"])
|
254
|
+
```
|
255
|
+
|
256
|
+
|
257
|
+
:param str occ_demand_signal_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
258
|
+
"""
|
259
|
+
...
|