pulumi-oci 1.39.0__py3-none-any.whl → 1.39.0a1717546925__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 +0 -11
- pulumi_oci/database/__init__.py +0 -1
- pulumi_oci/database/_inputs.py +4 -44
- pulumi_oci/database/autonomous_database.py +14 -61
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
- pulumi_oci/database/get_autonomous_character_sets.py +0 -4
- pulumi_oci/database/get_autonomous_database.py +1 -14
- pulumi_oci/database/outputs.py +6 -102
- pulumi_oci/goldengate/_inputs.py +6 -219
- pulumi_oci/goldengate/connection.py +0 -334
- pulumi_oci/goldengate/connection_assignment.py +19 -68
- pulumi_oci/goldengate/deployment.py +7 -88
- pulumi_oci/goldengate/deployment_backup.py +3 -122
- pulumi_oci/goldengate/deployment_certificate.py +10 -59
- pulumi_oci/goldengate/get_connection.py +1 -80
- pulumi_oci/goldengate/get_connection_assignment.py +1 -11
- pulumi_oci/goldengate/get_deployment.py +2 -25
- pulumi_oci/goldengate/get_deployment_backup.py +1 -38
- pulumi_oci/goldengate/get_deployment_certificate.py +2 -12
- pulumi_oci/goldengate/get_deployment_certificates.py +0 -3
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +12 -720
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717546925.dist-info}/METADATA +1 -1
- {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717546925.dist-info}/RECORD +28 -35
- pulumi_oci/database/get_autonomous_database_peers.py +0 -133
- pulumi_oci/demandsignal/__init__.py +0 -12
- pulumi_oci/demandsignal/_inputs.py +0 -267
- pulumi_oci/demandsignal/get_occ_demand_signal.py +0 -259
- pulumi_oci/demandsignal/get_occ_demand_signals.py +0 -183
- pulumi_oci/demandsignal/occ_demand_signal.py +0 -630
- pulumi_oci/demandsignal/outputs.py +0 -700
- {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717546925.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717546925.dist-info}/top_level.txt +0 -0
@@ -1,259 +0,0 @@
|
|
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
|
-
...
|
@@ -1,183 +0,0 @@
|
|
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
|
-
'GetOccDemandSignalsResult',
|
16
|
-
'AwaitableGetOccDemandSignalsResult',
|
17
|
-
'get_occ_demand_signals',
|
18
|
-
'get_occ_demand_signals_output',
|
19
|
-
]
|
20
|
-
|
21
|
-
@pulumi.output_type
|
22
|
-
class GetOccDemandSignalsResult:
|
23
|
-
"""
|
24
|
-
A collection of values returned by getOccDemandSignals.
|
25
|
-
"""
|
26
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, occ_demand_signal_collections=None, state=None):
|
27
|
-
if compartment_id and not isinstance(compartment_id, str):
|
28
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
30
|
-
if display_name and not isinstance(display_name, str):
|
31
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
32
|
-
pulumi.set(__self__, "display_name", display_name)
|
33
|
-
if filters and not isinstance(filters, list):
|
34
|
-
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
-
pulumi.set(__self__, "filters", filters)
|
36
|
-
if id and not isinstance(id, str):
|
37
|
-
raise TypeError("Expected argument 'id' to be a str")
|
38
|
-
pulumi.set(__self__, "id", id)
|
39
|
-
if occ_demand_signal_collections and not isinstance(occ_demand_signal_collections, list):
|
40
|
-
raise TypeError("Expected argument 'occ_demand_signal_collections' to be a list")
|
41
|
-
pulumi.set(__self__, "occ_demand_signal_collections", occ_demand_signal_collections)
|
42
|
-
if state and not isinstance(state, str):
|
43
|
-
raise TypeError("Expected argument 'state' to be a str")
|
44
|
-
pulumi.set(__self__, "state", state)
|
45
|
-
|
46
|
-
@property
|
47
|
-
@pulumi.getter(name="compartmentId")
|
48
|
-
def compartment_id(self) -> Optional[str]:
|
49
|
-
"""
|
50
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
51
|
-
"""
|
52
|
-
return pulumi.get(self, "compartment_id")
|
53
|
-
|
54
|
-
@property
|
55
|
-
@pulumi.getter(name="displayName")
|
56
|
-
def display_name(self) -> Optional[str]:
|
57
|
-
"""
|
58
|
-
A user-friendly name. Does not have to be unique, and it's changeable.
|
59
|
-
"""
|
60
|
-
return pulumi.get(self, "display_name")
|
61
|
-
|
62
|
-
@property
|
63
|
-
@pulumi.getter
|
64
|
-
def filters(self) -> Optional[Sequence['outputs.GetOccDemandSignalsFilterResult']]:
|
65
|
-
return pulumi.get(self, "filters")
|
66
|
-
|
67
|
-
@property
|
68
|
-
@pulumi.getter
|
69
|
-
def id(self) -> Optional[str]:
|
70
|
-
"""
|
71
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
72
|
-
"""
|
73
|
-
return pulumi.get(self, "id")
|
74
|
-
|
75
|
-
@property
|
76
|
-
@pulumi.getter(name="occDemandSignalCollections")
|
77
|
-
def occ_demand_signal_collections(self) -> Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionResult']:
|
78
|
-
"""
|
79
|
-
The list of occ_demand_signal_collection.
|
80
|
-
"""
|
81
|
-
return pulumi.get(self, "occ_demand_signal_collections")
|
82
|
-
|
83
|
-
@property
|
84
|
-
@pulumi.getter
|
85
|
-
def state(self) -> Optional[str]:
|
86
|
-
"""
|
87
|
-
The current state of the OccDemandSignal.
|
88
|
-
"""
|
89
|
-
return pulumi.get(self, "state")
|
90
|
-
|
91
|
-
|
92
|
-
class AwaitableGetOccDemandSignalsResult(GetOccDemandSignalsResult):
|
93
|
-
# pylint: disable=using-constant-test
|
94
|
-
def __await__(self):
|
95
|
-
if False:
|
96
|
-
yield self
|
97
|
-
return GetOccDemandSignalsResult(
|
98
|
-
compartment_id=self.compartment_id,
|
99
|
-
display_name=self.display_name,
|
100
|
-
filters=self.filters,
|
101
|
-
id=self.id,
|
102
|
-
occ_demand_signal_collections=self.occ_demand_signal_collections,
|
103
|
-
state=self.state)
|
104
|
-
|
105
|
-
|
106
|
-
def get_occ_demand_signals(compartment_id: Optional[str] = None,
|
107
|
-
display_name: Optional[str] = None,
|
108
|
-
filters: Optional[Sequence[pulumi.InputType['GetOccDemandSignalsFilterArgs']]] = None,
|
109
|
-
id: Optional[str] = None,
|
110
|
-
state: Optional[str] = None,
|
111
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOccDemandSignalsResult:
|
112
|
-
"""
|
113
|
-
This data source provides the list of Occ Demand Signals in Oracle Cloud Infrastructure Demand Signal service.
|
114
|
-
|
115
|
-
Gets a list of OccDemandSignals.
|
116
|
-
|
117
|
-
## Example Usage
|
118
|
-
|
119
|
-
```python
|
120
|
-
import pulumi
|
121
|
-
import pulumi_oci as oci
|
122
|
-
|
123
|
-
test_occ_demand_signals = oci.DemandSignal.get_occ_demand_signals(compartment_id=compartment_id,
|
124
|
-
display_name=occ_demand_signal_display_name,
|
125
|
-
id=occ_demand_signal_id,
|
126
|
-
state=occ_demand_signal_state)
|
127
|
-
```
|
128
|
-
|
129
|
-
|
130
|
-
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
131
|
-
:param str display_name: A filter to return only resources that match the given display name exactly.
|
132
|
-
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
133
|
-
:param str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
134
|
-
"""
|
135
|
-
__args__ = dict()
|
136
|
-
__args__['compartmentId'] = compartment_id
|
137
|
-
__args__['displayName'] = display_name
|
138
|
-
__args__['filters'] = filters
|
139
|
-
__args__['id'] = id
|
140
|
-
__args__['state'] = state
|
141
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
142
|
-
__ret__ = pulumi.runtime.invoke('oci:DemandSignal/getOccDemandSignals:getOccDemandSignals', __args__, opts=opts, typ=GetOccDemandSignalsResult).value
|
143
|
-
|
144
|
-
return AwaitableGetOccDemandSignalsResult(
|
145
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
146
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
147
|
-
filters=pulumi.get(__ret__, 'filters'),
|
148
|
-
id=pulumi.get(__ret__, 'id'),
|
149
|
-
occ_demand_signal_collections=pulumi.get(__ret__, 'occ_demand_signal_collections'),
|
150
|
-
state=pulumi.get(__ret__, 'state'))
|
151
|
-
|
152
|
-
|
153
|
-
@_utilities.lift_output_func(get_occ_demand_signals)
|
154
|
-
def get_occ_demand_signals_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
155
|
-
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
156
|
-
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetOccDemandSignalsFilterArgs']]]]] = None,
|
157
|
-
id: Optional[pulumi.Input[Optional[str]]] = None,
|
158
|
-
state: Optional[pulumi.Input[Optional[str]]] = None,
|
159
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOccDemandSignalsResult]:
|
160
|
-
"""
|
161
|
-
This data source provides the list of Occ Demand Signals in Oracle Cloud Infrastructure Demand Signal service.
|
162
|
-
|
163
|
-
Gets a list of OccDemandSignals.
|
164
|
-
|
165
|
-
## Example Usage
|
166
|
-
|
167
|
-
```python
|
168
|
-
import pulumi
|
169
|
-
import pulumi_oci as oci
|
170
|
-
|
171
|
-
test_occ_demand_signals = oci.DemandSignal.get_occ_demand_signals(compartment_id=compartment_id,
|
172
|
-
display_name=occ_demand_signal_display_name,
|
173
|
-
id=occ_demand_signal_id,
|
174
|
-
state=occ_demand_signal_state)
|
175
|
-
```
|
176
|
-
|
177
|
-
|
178
|
-
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
179
|
-
:param str display_name: A filter to return only resources that match the given display name exactly.
|
180
|
-
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
|
181
|
-
:param str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
182
|
-
"""
|
183
|
-
...
|