pulumi-oci 1.39.0__py3-none-any.whl → 1.39.0a1717482940__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.
Files changed (35) hide show
  1. pulumi_oci/__init__.py +0 -11
  2. pulumi_oci/database/__init__.py +0 -1
  3. pulumi_oci/database/_inputs.py +4 -44
  4. pulumi_oci/database/autonomous_database.py +14 -61
  5. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  6. pulumi_oci/database/get_autonomous_character_sets.py +0 -4
  7. pulumi_oci/database/get_autonomous_database.py +1 -14
  8. pulumi_oci/database/outputs.py +6 -102
  9. pulumi_oci/goldengate/_inputs.py +6 -219
  10. pulumi_oci/goldengate/connection.py +0 -334
  11. pulumi_oci/goldengate/connection_assignment.py +19 -68
  12. pulumi_oci/goldengate/deployment.py +7 -88
  13. pulumi_oci/goldengate/deployment_backup.py +3 -122
  14. pulumi_oci/goldengate/deployment_certificate.py +10 -59
  15. pulumi_oci/goldengate/get_connection.py +1 -80
  16. pulumi_oci/goldengate/get_connection_assignment.py +1 -11
  17. pulumi_oci/goldengate/get_deployment.py +2 -25
  18. pulumi_oci/goldengate/get_deployment_backup.py +1 -38
  19. pulumi_oci/goldengate/get_deployment_certificate.py +2 -12
  20. pulumi_oci/goldengate/get_deployment_certificates.py +0 -3
  21. pulumi_oci/goldengate/get_trail_files.py +2 -2
  22. pulumi_oci/goldengate/get_trail_sequences.py +2 -2
  23. pulumi_oci/goldengate/outputs.py +12 -720
  24. pulumi_oci/pulumi-plugin.json +1 -1
  25. {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717482940.dist-info}/METADATA +1 -1
  26. {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717482940.dist-info}/RECORD +28 -35
  27. pulumi_oci/database/get_autonomous_database_peers.py +0 -133
  28. pulumi_oci/demandsignal/__init__.py +0 -12
  29. pulumi_oci/demandsignal/_inputs.py +0 -267
  30. pulumi_oci/demandsignal/get_occ_demand_signal.py +0 -259
  31. pulumi_oci/demandsignal/get_occ_demand_signals.py +0 -183
  32. pulumi_oci/demandsignal/occ_demand_signal.py +0 -630
  33. pulumi_oci/demandsignal/outputs.py +0 -700
  34. {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717482940.dist-info}/WHEEL +0 -0
  35. {pulumi_oci-1.39.0.dist-info → pulumi_oci-1.39.0a1717482940.dist-info}/top_level.txt +0 -0
@@ -1,700 +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
- 'OccDemandSignalOccDemandSignal',
15
- 'OccDemandSignalOccDemandSignalValue',
16
- 'OccDemandSignalPatchOperation',
17
- 'GetOccDemandSignalOccDemandSignalResult',
18
- 'GetOccDemandSignalOccDemandSignalValueResult',
19
- 'GetOccDemandSignalPatchOperationResult',
20
- 'GetOccDemandSignalsFilterResult',
21
- 'GetOccDemandSignalsOccDemandSignalCollectionResult',
22
- 'GetOccDemandSignalsOccDemandSignalCollectionItemResult',
23
- 'GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalResult',
24
- 'GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalValueResult',
25
- 'GetOccDemandSignalsOccDemandSignalCollectionItemPatchOperationResult',
26
- ]
27
-
28
- @pulumi.output_type
29
- class OccDemandSignalOccDemandSignal(dict):
30
- @staticmethod
31
- def __key_warning(key: str):
32
- suggest = None
33
- if key == "resourceType":
34
- suggest = "resource_type"
35
-
36
- if suggest:
37
- pulumi.log.warn(f"Key '{key}' not found in OccDemandSignalOccDemandSignal. Access the value via the '{suggest}' property getter instead.")
38
-
39
- def __getitem__(self, key: str) -> Any:
40
- OccDemandSignalOccDemandSignal.__key_warning(key)
41
- return super().__getitem__(key)
42
-
43
- def get(self, key: str, default = None) -> Any:
44
- OccDemandSignalOccDemandSignal.__key_warning(key)
45
- return super().get(key, default)
46
-
47
- def __init__(__self__, *,
48
- resource_type: str,
49
- units: str,
50
- values: Sequence['outputs.OccDemandSignalOccDemandSignalValue']):
51
- """
52
- :param str resource_type: The name of the resource for the data.
53
- :param str units: The units of the data.
54
- :param Sequence['OccDemandSignalOccDemandSignalValueArgs'] values: The values of forecast.
55
- """
56
- pulumi.set(__self__, "resource_type", resource_type)
57
- pulumi.set(__self__, "units", units)
58
- pulumi.set(__self__, "values", values)
59
-
60
- @property
61
- @pulumi.getter(name="resourceType")
62
- def resource_type(self) -> str:
63
- """
64
- The name of the resource for the data.
65
- """
66
- return pulumi.get(self, "resource_type")
67
-
68
- @property
69
- @pulumi.getter
70
- def units(self) -> str:
71
- """
72
- The units of the data.
73
- """
74
- return pulumi.get(self, "units")
75
-
76
- @property
77
- @pulumi.getter
78
- def values(self) -> Sequence['outputs.OccDemandSignalOccDemandSignalValue']:
79
- """
80
- The values of forecast.
81
- """
82
- return pulumi.get(self, "values")
83
-
84
-
85
- @pulumi.output_type
86
- class OccDemandSignalOccDemandSignalValue(dict):
87
- @staticmethod
88
- def __key_warning(key: str):
89
- suggest = None
90
- if key == "timeExpected":
91
- suggest = "time_expected"
92
-
93
- if suggest:
94
- pulumi.log.warn(f"Key '{key}' not found in OccDemandSignalOccDemandSignalValue. Access the value via the '{suggest}' property getter instead.")
95
-
96
- def __getitem__(self, key: str) -> Any:
97
- OccDemandSignalOccDemandSignalValue.__key_warning(key)
98
- return super().__getitem__(key)
99
-
100
- def get(self, key: str, default = None) -> Any:
101
- OccDemandSignalOccDemandSignalValue.__key_warning(key)
102
- return super().get(key, default)
103
-
104
- def __init__(__self__, *,
105
- time_expected: str,
106
- value: float,
107
- comments: Optional[str] = None):
108
- """
109
- :param str time_expected: The date of the Demand Signal Value.
110
- :param float value: The Demand Signal Value.
111
- :param str comments: Space provided for users to make comments regarding the value.
112
- """
113
- pulumi.set(__self__, "time_expected", time_expected)
114
- pulumi.set(__self__, "value", value)
115
- if comments is not None:
116
- pulumi.set(__self__, "comments", comments)
117
-
118
- @property
119
- @pulumi.getter(name="timeExpected")
120
- def time_expected(self) -> str:
121
- """
122
- The date of the Demand Signal Value.
123
- """
124
- return pulumi.get(self, "time_expected")
125
-
126
- @property
127
- @pulumi.getter
128
- def value(self) -> float:
129
- """
130
- The Demand Signal Value.
131
- """
132
- return pulumi.get(self, "value")
133
-
134
- @property
135
- @pulumi.getter
136
- def comments(self) -> Optional[str]:
137
- """
138
- Space provided for users to make comments regarding the value.
139
- """
140
- return pulumi.get(self, "comments")
141
-
142
-
143
- @pulumi.output_type
144
- class OccDemandSignalPatchOperation(dict):
145
- @staticmethod
146
- def __key_warning(key: str):
147
- suggest = None
148
- if key == "from":
149
- suggest = "from_"
150
- elif key == "selectedItem":
151
- suggest = "selected_item"
152
-
153
- if suggest:
154
- pulumi.log.warn(f"Key '{key}' not found in OccDemandSignalPatchOperation. Access the value via the '{suggest}' property getter instead.")
155
-
156
- def __getitem__(self, key: str) -> Any:
157
- OccDemandSignalPatchOperation.__key_warning(key)
158
- return super().__getitem__(key)
159
-
160
- def get(self, key: str, default = None) -> Any:
161
- OccDemandSignalPatchOperation.__key_warning(key)
162
- return super().get(key, default)
163
-
164
- def __init__(__self__, *,
165
- from_: str,
166
- operation: str,
167
- selection: str,
168
- value: Mapping[str, Any],
169
- position: Optional[str] = None,
170
- selected_item: Optional[str] = None):
171
- """
172
- :param str from_: (Updatable)
173
- :param str operation: (Updatable) The operation can be one of these values: `INSERT`, `INSERT_MULTIPLE`, `MERGE`, `MOVE`, `PROHIBIT`, `REMOVE`, `REPLACE`, `REQUIRE`
174
- :param str selection: (Updatable)
175
- :param Mapping[str, Any] value: (Updatable)
176
- :param str position: (Updatable)
177
- :param str selected_item: (Updatable)
178
- """
179
- pulumi.set(__self__, "from_", from_)
180
- pulumi.set(__self__, "operation", operation)
181
- pulumi.set(__self__, "selection", selection)
182
- pulumi.set(__self__, "value", value)
183
- if position is not None:
184
- pulumi.set(__self__, "position", position)
185
- if selected_item is not None:
186
- pulumi.set(__self__, "selected_item", selected_item)
187
-
188
- @property
189
- @pulumi.getter(name="from")
190
- def from_(self) -> str:
191
- """
192
- (Updatable)
193
- """
194
- return pulumi.get(self, "from_")
195
-
196
- @property
197
- @pulumi.getter
198
- def operation(self) -> str:
199
- """
200
- (Updatable) The operation can be one of these values: `INSERT`, `INSERT_MULTIPLE`, `MERGE`, `MOVE`, `PROHIBIT`, `REMOVE`, `REPLACE`, `REQUIRE`
201
- """
202
- return pulumi.get(self, "operation")
203
-
204
- @property
205
- @pulumi.getter
206
- def selection(self) -> str:
207
- """
208
- (Updatable)
209
- """
210
- return pulumi.get(self, "selection")
211
-
212
- @property
213
- @pulumi.getter
214
- def value(self) -> Mapping[str, Any]:
215
- """
216
- (Updatable)
217
- """
218
- return pulumi.get(self, "value")
219
-
220
- @property
221
- @pulumi.getter
222
- def position(self) -> Optional[str]:
223
- """
224
- (Updatable)
225
- """
226
- return pulumi.get(self, "position")
227
-
228
- @property
229
- @pulumi.getter(name="selectedItem")
230
- def selected_item(self) -> Optional[str]:
231
- """
232
- (Updatable)
233
- """
234
- return pulumi.get(self, "selected_item")
235
-
236
-
237
- @pulumi.output_type
238
- class GetOccDemandSignalOccDemandSignalResult(dict):
239
- def __init__(__self__, *,
240
- resource_type: str,
241
- units: str,
242
- values: Sequence['outputs.GetOccDemandSignalOccDemandSignalValueResult']):
243
- """
244
- :param str resource_type: The name of the resource for the data.
245
- :param str units: The units of the data.
246
- :param Sequence['GetOccDemandSignalOccDemandSignalValueArgs'] values: The values of forecast.
247
- """
248
- pulumi.set(__self__, "resource_type", resource_type)
249
- pulumi.set(__self__, "units", units)
250
- pulumi.set(__self__, "values", values)
251
-
252
- @property
253
- @pulumi.getter(name="resourceType")
254
- def resource_type(self) -> str:
255
- """
256
- The name of the resource for the data.
257
- """
258
- return pulumi.get(self, "resource_type")
259
-
260
- @property
261
- @pulumi.getter
262
- def units(self) -> str:
263
- """
264
- The units of the data.
265
- """
266
- return pulumi.get(self, "units")
267
-
268
- @property
269
- @pulumi.getter
270
- def values(self) -> Sequence['outputs.GetOccDemandSignalOccDemandSignalValueResult']:
271
- """
272
- The values of forecast.
273
- """
274
- return pulumi.get(self, "values")
275
-
276
-
277
- @pulumi.output_type
278
- class GetOccDemandSignalOccDemandSignalValueResult(dict):
279
- def __init__(__self__, *,
280
- comments: str,
281
- time_expected: str,
282
- value: float):
283
- """
284
- :param str comments: Space provided for users to make comments regarding the value.
285
- :param str time_expected: The date of the Demand Signal Value.
286
- :param float value: The Demand Signal Value.
287
- """
288
- pulumi.set(__self__, "comments", comments)
289
- pulumi.set(__self__, "time_expected", time_expected)
290
- pulumi.set(__self__, "value", value)
291
-
292
- @property
293
- @pulumi.getter
294
- def comments(self) -> str:
295
- """
296
- Space provided for users to make comments regarding the value.
297
- """
298
- return pulumi.get(self, "comments")
299
-
300
- @property
301
- @pulumi.getter(name="timeExpected")
302
- def time_expected(self) -> str:
303
- """
304
- The date of the Demand Signal Value.
305
- """
306
- return pulumi.get(self, "time_expected")
307
-
308
- @property
309
- @pulumi.getter
310
- def value(self) -> float:
311
- """
312
- The Demand Signal Value.
313
- """
314
- return pulumi.get(self, "value")
315
-
316
-
317
- @pulumi.output_type
318
- class GetOccDemandSignalPatchOperationResult(dict):
319
- def __init__(__self__, *,
320
- from_: str,
321
- operation: str,
322
- position: str,
323
- selected_item: str,
324
- selection: str,
325
- value: Mapping[str, Any]):
326
- """
327
- :param Mapping[str, Any] value: The Demand Signal Value.
328
- """
329
- pulumi.set(__self__, "from_", from_)
330
- pulumi.set(__self__, "operation", operation)
331
- pulumi.set(__self__, "position", position)
332
- pulumi.set(__self__, "selected_item", selected_item)
333
- pulumi.set(__self__, "selection", selection)
334
- pulumi.set(__self__, "value", value)
335
-
336
- @property
337
- @pulumi.getter(name="from")
338
- def from_(self) -> str:
339
- return pulumi.get(self, "from_")
340
-
341
- @property
342
- @pulumi.getter
343
- def operation(self) -> str:
344
- return pulumi.get(self, "operation")
345
-
346
- @property
347
- @pulumi.getter
348
- def position(self) -> str:
349
- return pulumi.get(self, "position")
350
-
351
- @property
352
- @pulumi.getter(name="selectedItem")
353
- def selected_item(self) -> str:
354
- return pulumi.get(self, "selected_item")
355
-
356
- @property
357
- @pulumi.getter
358
- def selection(self) -> str:
359
- return pulumi.get(self, "selection")
360
-
361
- @property
362
- @pulumi.getter
363
- def value(self) -> Mapping[str, Any]:
364
- """
365
- The Demand Signal Value.
366
- """
367
- return pulumi.get(self, "value")
368
-
369
-
370
- @pulumi.output_type
371
- class GetOccDemandSignalsFilterResult(dict):
372
- def __init__(__self__, *,
373
- name: str,
374
- values: Sequence[str],
375
- regex: Optional[bool] = None):
376
- """
377
- :param Sequence[str] values: The values of forecast.
378
- """
379
- pulumi.set(__self__, "name", name)
380
- pulumi.set(__self__, "values", values)
381
- if regex is not None:
382
- pulumi.set(__self__, "regex", regex)
383
-
384
- @property
385
- @pulumi.getter
386
- def name(self) -> str:
387
- return pulumi.get(self, "name")
388
-
389
- @property
390
- @pulumi.getter
391
- def values(self) -> Sequence[str]:
392
- """
393
- The values of forecast.
394
- """
395
- return pulumi.get(self, "values")
396
-
397
- @property
398
- @pulumi.getter
399
- def regex(self) -> Optional[bool]:
400
- return pulumi.get(self, "regex")
401
-
402
-
403
- @pulumi.output_type
404
- class GetOccDemandSignalsOccDemandSignalCollectionResult(dict):
405
- def __init__(__self__, *,
406
- items: Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemResult']):
407
- pulumi.set(__self__, "items", items)
408
-
409
- @property
410
- @pulumi.getter
411
- def items(self) -> Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemResult']:
412
- return pulumi.get(self, "items")
413
-
414
-
415
- @pulumi.output_type
416
- class GetOccDemandSignalsOccDemandSignalCollectionItemResult(dict):
417
- def __init__(__self__, *,
418
- compartment_id: str,
419
- defined_tags: Mapping[str, Any],
420
- display_name: str,
421
- freeform_tags: Mapping[str, Any],
422
- id: str,
423
- is_active: bool,
424
- lifecycle_details: str,
425
- occ_demand_signal_id: str,
426
- occ_demand_signals: Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalResult'],
427
- patch_operations: Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemPatchOperationResult'],
428
- state: str,
429
- system_tags: Mapping[str, Any],
430
- time_created: str,
431
- time_updated: str):
432
- """
433
- :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.
434
- :param Mapping[str, Any] defined_tags: 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"}`
435
- :param str display_name: A filter to return only resources that match the given display name exactly.
436
- :param Mapping[str, Any] freeform_tags: 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"}`
437
- :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
438
- :param bool is_active: Indicator of whether to share the data with Oracle.
439
- :param str lifecycle_details: 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.
440
- :param Sequence['GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalArgs'] occ_demand_signals: The OccDemandSignal data.
441
- :param str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
442
- :param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
443
- :param str time_created: 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`
444
- :param str time_updated: 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`
445
- """
446
- pulumi.set(__self__, "compartment_id", compartment_id)
447
- pulumi.set(__self__, "defined_tags", defined_tags)
448
- pulumi.set(__self__, "display_name", display_name)
449
- pulumi.set(__self__, "freeform_tags", freeform_tags)
450
- pulumi.set(__self__, "id", id)
451
- pulumi.set(__self__, "is_active", is_active)
452
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
453
- pulumi.set(__self__, "occ_demand_signal_id", occ_demand_signal_id)
454
- pulumi.set(__self__, "occ_demand_signals", occ_demand_signals)
455
- pulumi.set(__self__, "patch_operations", patch_operations)
456
- pulumi.set(__self__, "state", state)
457
- pulumi.set(__self__, "system_tags", system_tags)
458
- pulumi.set(__self__, "time_created", time_created)
459
- pulumi.set(__self__, "time_updated", time_updated)
460
-
461
- @property
462
- @pulumi.getter(name="compartmentId")
463
- def compartment_id(self) -> str:
464
- """
465
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
466
- """
467
- return pulumi.get(self, "compartment_id")
468
-
469
- @property
470
- @pulumi.getter(name="definedTags")
471
- def defined_tags(self) -> Mapping[str, Any]:
472
- """
473
- 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"}`
474
- """
475
- return pulumi.get(self, "defined_tags")
476
-
477
- @property
478
- @pulumi.getter(name="displayName")
479
- def display_name(self) -> str:
480
- """
481
- A filter to return only resources that match the given display name exactly.
482
- """
483
- return pulumi.get(self, "display_name")
484
-
485
- @property
486
- @pulumi.getter(name="freeformTags")
487
- def freeform_tags(self) -> Mapping[str, Any]:
488
- """
489
- 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"}`
490
- """
491
- return pulumi.get(self, "freeform_tags")
492
-
493
- @property
494
- @pulumi.getter
495
- def id(self) -> str:
496
- """
497
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal.
498
- """
499
- return pulumi.get(self, "id")
500
-
501
- @property
502
- @pulumi.getter(name="isActive")
503
- def is_active(self) -> bool:
504
- """
505
- Indicator of whether to share the data with Oracle.
506
- """
507
- return pulumi.get(self, "is_active")
508
-
509
- @property
510
- @pulumi.getter(name="lifecycleDetails")
511
- def lifecycle_details(self) -> str:
512
- """
513
- 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.
514
- """
515
- return pulumi.get(self, "lifecycle_details")
516
-
517
- @property
518
- @pulumi.getter(name="occDemandSignalId")
519
- def occ_demand_signal_id(self) -> str:
520
- return pulumi.get(self, "occ_demand_signal_id")
521
-
522
- @property
523
- @pulumi.getter(name="occDemandSignals")
524
- def occ_demand_signals(self) -> Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalResult']:
525
- """
526
- The OccDemandSignal data.
527
- """
528
- return pulumi.get(self, "occ_demand_signals")
529
-
530
- @property
531
- @pulumi.getter(name="patchOperations")
532
- def patch_operations(self) -> Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemPatchOperationResult']:
533
- return pulumi.get(self, "patch_operations")
534
-
535
- @property
536
- @pulumi.getter
537
- def state(self) -> str:
538
- """
539
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
540
- """
541
- return pulumi.get(self, "state")
542
-
543
- @property
544
- @pulumi.getter(name="systemTags")
545
- def system_tags(self) -> Mapping[str, Any]:
546
- """
547
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
548
- """
549
- return pulumi.get(self, "system_tags")
550
-
551
- @property
552
- @pulumi.getter(name="timeCreated")
553
- def time_created(self) -> str:
554
- """
555
- 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`
556
- """
557
- return pulumi.get(self, "time_created")
558
-
559
- @property
560
- @pulumi.getter(name="timeUpdated")
561
- def time_updated(self) -> str:
562
- """
563
- 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`
564
- """
565
- return pulumi.get(self, "time_updated")
566
-
567
-
568
- @pulumi.output_type
569
- class GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalResult(dict):
570
- def __init__(__self__, *,
571
- resource_type: str,
572
- units: str,
573
- values: Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalValueResult']):
574
- """
575
- :param str resource_type: The name of the resource for the data.
576
- :param str units: The units of the data.
577
- :param Sequence['GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalValueArgs'] values: The values of forecast.
578
- """
579
- pulumi.set(__self__, "resource_type", resource_type)
580
- pulumi.set(__self__, "units", units)
581
- pulumi.set(__self__, "values", values)
582
-
583
- @property
584
- @pulumi.getter(name="resourceType")
585
- def resource_type(self) -> str:
586
- """
587
- The name of the resource for the data.
588
- """
589
- return pulumi.get(self, "resource_type")
590
-
591
- @property
592
- @pulumi.getter
593
- def units(self) -> str:
594
- """
595
- The units of the data.
596
- """
597
- return pulumi.get(self, "units")
598
-
599
- @property
600
- @pulumi.getter
601
- def values(self) -> Sequence['outputs.GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalValueResult']:
602
- """
603
- The values of forecast.
604
- """
605
- return pulumi.get(self, "values")
606
-
607
-
608
- @pulumi.output_type
609
- class GetOccDemandSignalsOccDemandSignalCollectionItemOccDemandSignalValueResult(dict):
610
- def __init__(__self__, *,
611
- comments: str,
612
- time_expected: str,
613
- value: float):
614
- """
615
- :param str comments: Space provided for users to make comments regarding the value.
616
- :param str time_expected: The date of the Demand Signal Value.
617
- :param float value: The Demand Signal Value.
618
- """
619
- pulumi.set(__self__, "comments", comments)
620
- pulumi.set(__self__, "time_expected", time_expected)
621
- pulumi.set(__self__, "value", value)
622
-
623
- @property
624
- @pulumi.getter
625
- def comments(self) -> str:
626
- """
627
- Space provided for users to make comments regarding the value.
628
- """
629
- return pulumi.get(self, "comments")
630
-
631
- @property
632
- @pulumi.getter(name="timeExpected")
633
- def time_expected(self) -> str:
634
- """
635
- The date of the Demand Signal Value.
636
- """
637
- return pulumi.get(self, "time_expected")
638
-
639
- @property
640
- @pulumi.getter
641
- def value(self) -> float:
642
- """
643
- The Demand Signal Value.
644
- """
645
- return pulumi.get(self, "value")
646
-
647
-
648
- @pulumi.output_type
649
- class GetOccDemandSignalsOccDemandSignalCollectionItemPatchOperationResult(dict):
650
- def __init__(__self__, *,
651
- from_: str,
652
- operation: str,
653
- position: str,
654
- selected_item: str,
655
- selection: str,
656
- value: Mapping[str, Any]):
657
- """
658
- :param Mapping[str, Any] value: The Demand Signal Value.
659
- """
660
- pulumi.set(__self__, "from_", from_)
661
- pulumi.set(__self__, "operation", operation)
662
- pulumi.set(__self__, "position", position)
663
- pulumi.set(__self__, "selected_item", selected_item)
664
- pulumi.set(__self__, "selection", selection)
665
- pulumi.set(__self__, "value", value)
666
-
667
- @property
668
- @pulumi.getter(name="from")
669
- def from_(self) -> str:
670
- return pulumi.get(self, "from_")
671
-
672
- @property
673
- @pulumi.getter
674
- def operation(self) -> str:
675
- return pulumi.get(self, "operation")
676
-
677
- @property
678
- @pulumi.getter
679
- def position(self) -> str:
680
- return pulumi.get(self, "position")
681
-
682
- @property
683
- @pulumi.getter(name="selectedItem")
684
- def selected_item(self) -> str:
685
- return pulumi.get(self, "selected_item")
686
-
687
- @property
688
- @pulumi.getter
689
- def selection(self) -> str:
690
- return pulumi.get(self, "selection")
691
-
692
- @property
693
- @pulumi.getter
694
- def value(self) -> Mapping[str, Any]:
695
- """
696
- The Demand Signal Value.
697
- """
698
- return pulumi.get(self, "value")
699
-
700
-