pulumi-oci 2.7.0a1723456529__py3-none-any.whl → 2.7.0a1723624751__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 +16 -0
- pulumi_oci/database/autonomous_database.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +1 -1
- pulumi_oci/database/outputs.py +4 -4
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +120 -0
- pulumi_oci/datasafe/calculate_audit_volume_available.py +391 -0
- pulumi_oci/datasafe/calculate_audit_volume_collected.py +343 -0
- pulumi_oci/datasafe/outputs.py +132 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +1 -42
- pulumi_oci/integration/get_integration_instance.py +14 -1
- pulumi_oci/integration/integration_instance.py +28 -0
- pulumi_oci/integration/outputs.py +11 -0
- pulumi_oci/limits/get_limit_definitions.py +24 -7
- pulumi_oci/limits/get_limit_values.py +24 -7
- pulumi_oci/limits/get_resource_availability.py +24 -5
- pulumi_oci/limits/get_services.py +24 -7
- pulumi_oci/limits/outputs.py +35 -2
- pulumi_oci/networkloadbalancer/backend_set.py +2 -2
- pulumi_oci/networkloadbalancer/get_listener.py +29 -3
- pulumi_oci/networkloadbalancer/listener.py +122 -24
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +2 -2
- pulumi_oci/networkloadbalancer/outputs.py +27 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.7.0a1723456529.dist-info → pulumi_oci-2.7.0a1723624751.dist-info}/METADATA +1 -1
- {pulumi_oci-2.7.0a1723456529.dist-info → pulumi_oci-2.7.0a1723624751.dist-info}/RECORD +29 -27
- {pulumi_oci-2.7.0a1723456529.dist-info → pulumi_oci-2.7.0a1723624751.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.7.0a1723456529.dist-info → pulumi_oci-2.7.0a1723624751.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,343 @@
|
|
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__ = ['CalculateAuditVolumeCollectedArgs', 'CalculateAuditVolumeCollected']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class CalculateAuditVolumeCollectedArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
audit_profile_id: pulumi.Input[str],
|
20
|
+
time_from_month: pulumi.Input[str],
|
21
|
+
time_to_month: Optional[pulumi.Input[str]] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a CalculateAuditVolumeCollected resource.
|
24
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
25
|
+
:param pulumi.Input[str] time_from_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
26
|
+
:param pulumi.Input[str] time_to_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
27
|
+
|
28
|
+
|
29
|
+
** IMPORTANT **
|
30
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
33
|
+
pulumi.set(__self__, "time_from_month", time_from_month)
|
34
|
+
if time_to_month is not None:
|
35
|
+
pulumi.set(__self__, "time_to_month", time_to_month)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="auditProfileId")
|
39
|
+
def audit_profile_id(self) -> pulumi.Input[str]:
|
40
|
+
"""
|
41
|
+
The OCID of the audit.
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "audit_profile_id")
|
44
|
+
|
45
|
+
@audit_profile_id.setter
|
46
|
+
def audit_profile_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "audit_profile_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="timeFromMonth")
|
51
|
+
def time_from_month(self) -> pulumi.Input[str]:
|
52
|
+
"""
|
53
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "time_from_month")
|
56
|
+
|
57
|
+
@time_from_month.setter
|
58
|
+
def time_from_month(self, value: pulumi.Input[str]):
|
59
|
+
pulumi.set(self, "time_from_month", value)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="timeToMonth")
|
63
|
+
def time_to_month(self) -> Optional[pulumi.Input[str]]:
|
64
|
+
"""
|
65
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
66
|
+
|
67
|
+
|
68
|
+
** IMPORTANT **
|
69
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "time_to_month")
|
72
|
+
|
73
|
+
@time_to_month.setter
|
74
|
+
def time_to_month(self, value: Optional[pulumi.Input[str]]):
|
75
|
+
pulumi.set(self, "time_to_month", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _CalculateAuditVolumeCollectedState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
82
|
+
collected_audit_volumes: Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs']]]] = None,
|
83
|
+
time_from_month: Optional[pulumi.Input[str]] = None,
|
84
|
+
time_to_month: Optional[pulumi.Input[str]] = None):
|
85
|
+
"""
|
86
|
+
Input properties used for looking up and filtering CalculateAuditVolumeCollected resources.
|
87
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
88
|
+
:param pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs']]] collected_audit_volumes: List of collected audit volumes.
|
89
|
+
:param pulumi.Input[str] time_from_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
90
|
+
:param pulumi.Input[str] time_to_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
91
|
+
|
92
|
+
|
93
|
+
** IMPORTANT **
|
94
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
95
|
+
"""
|
96
|
+
if audit_profile_id is not None:
|
97
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
98
|
+
if collected_audit_volumes is not None:
|
99
|
+
pulumi.set(__self__, "collected_audit_volumes", collected_audit_volumes)
|
100
|
+
if time_from_month is not None:
|
101
|
+
pulumi.set(__self__, "time_from_month", time_from_month)
|
102
|
+
if time_to_month is not None:
|
103
|
+
pulumi.set(__self__, "time_to_month", time_to_month)
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter(name="auditProfileId")
|
107
|
+
def audit_profile_id(self) -> Optional[pulumi.Input[str]]:
|
108
|
+
"""
|
109
|
+
The OCID of the audit.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "audit_profile_id")
|
112
|
+
|
113
|
+
@audit_profile_id.setter
|
114
|
+
def audit_profile_id(self, value: Optional[pulumi.Input[str]]):
|
115
|
+
pulumi.set(self, "audit_profile_id", value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="collectedAuditVolumes")
|
119
|
+
def collected_audit_volumes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs']]]]:
|
120
|
+
"""
|
121
|
+
List of collected audit volumes.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "collected_audit_volumes")
|
124
|
+
|
125
|
+
@collected_audit_volumes.setter
|
126
|
+
def collected_audit_volumes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs']]]]):
|
127
|
+
pulumi.set(self, "collected_audit_volumes", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="timeFromMonth")
|
131
|
+
def time_from_month(self) -> Optional[pulumi.Input[str]]:
|
132
|
+
"""
|
133
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "time_from_month")
|
136
|
+
|
137
|
+
@time_from_month.setter
|
138
|
+
def time_from_month(self, value: Optional[pulumi.Input[str]]):
|
139
|
+
pulumi.set(self, "time_from_month", value)
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="timeToMonth")
|
143
|
+
def time_to_month(self) -> Optional[pulumi.Input[str]]:
|
144
|
+
"""
|
145
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
146
|
+
|
147
|
+
|
148
|
+
** IMPORTANT **
|
149
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "time_to_month")
|
152
|
+
|
153
|
+
@time_to_month.setter
|
154
|
+
def time_to_month(self, value: Optional[pulumi.Input[str]]):
|
155
|
+
pulumi.set(self, "time_to_month", value)
|
156
|
+
|
157
|
+
|
158
|
+
class CalculateAuditVolumeCollected(pulumi.CustomResource):
|
159
|
+
@overload
|
160
|
+
def __init__(__self__,
|
161
|
+
resource_name: str,
|
162
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
163
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
164
|
+
time_from_month: Optional[pulumi.Input[str]] = None,
|
165
|
+
time_to_month: Optional[pulumi.Input[str]] = None,
|
166
|
+
__props__=None):
|
167
|
+
"""
|
168
|
+
This resource provides the Calculate Audit Volume Collected resource in Oracle Cloud Infrastructure Data Safe service.
|
169
|
+
|
170
|
+
Calculates the volume of audit events collected by data safe.
|
171
|
+
|
172
|
+
## Example Usage
|
173
|
+
|
174
|
+
```python
|
175
|
+
import pulumi
|
176
|
+
import pulumi_oci as oci
|
177
|
+
|
178
|
+
test_calculate_audit_volume_collected = oci.data_safe.CalculateAuditVolumeCollected("test_calculate_audit_volume_collected",
|
179
|
+
audit_profile_id=test_audit_profile["id"],
|
180
|
+
time_from_month=calculate_audit_volume_collected_time_from_month,
|
181
|
+
time_to_month=calculate_audit_volume_collected_time_to_month)
|
182
|
+
```
|
183
|
+
|
184
|
+
## Import
|
185
|
+
|
186
|
+
CalculateAuditVolumeCollected can be imported using the `id`, e.g.
|
187
|
+
|
188
|
+
```sh
|
189
|
+
$ pulumi import oci:DataSafe/calculateAuditVolumeCollected:CalculateAuditVolumeCollected test_calculate_audit_volume_collected "id"
|
190
|
+
```
|
191
|
+
|
192
|
+
:param str resource_name: The name of the resource.
|
193
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
194
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
195
|
+
:param pulumi.Input[str] time_from_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
196
|
+
:param pulumi.Input[str] time_to_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
197
|
+
|
198
|
+
|
199
|
+
** IMPORTANT **
|
200
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
201
|
+
"""
|
202
|
+
...
|
203
|
+
@overload
|
204
|
+
def __init__(__self__,
|
205
|
+
resource_name: str,
|
206
|
+
args: CalculateAuditVolumeCollectedArgs,
|
207
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
208
|
+
"""
|
209
|
+
This resource provides the Calculate Audit Volume Collected resource in Oracle Cloud Infrastructure Data Safe service.
|
210
|
+
|
211
|
+
Calculates the volume of audit events collected by data safe.
|
212
|
+
|
213
|
+
## Example Usage
|
214
|
+
|
215
|
+
```python
|
216
|
+
import pulumi
|
217
|
+
import pulumi_oci as oci
|
218
|
+
|
219
|
+
test_calculate_audit_volume_collected = oci.data_safe.CalculateAuditVolumeCollected("test_calculate_audit_volume_collected",
|
220
|
+
audit_profile_id=test_audit_profile["id"],
|
221
|
+
time_from_month=calculate_audit_volume_collected_time_from_month,
|
222
|
+
time_to_month=calculate_audit_volume_collected_time_to_month)
|
223
|
+
```
|
224
|
+
|
225
|
+
## Import
|
226
|
+
|
227
|
+
CalculateAuditVolumeCollected can be imported using the `id`, e.g.
|
228
|
+
|
229
|
+
```sh
|
230
|
+
$ pulumi import oci:DataSafe/calculateAuditVolumeCollected:CalculateAuditVolumeCollected test_calculate_audit_volume_collected "id"
|
231
|
+
```
|
232
|
+
|
233
|
+
:param str resource_name: The name of the resource.
|
234
|
+
:param CalculateAuditVolumeCollectedArgs args: The arguments to use to populate this resource's properties.
|
235
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
236
|
+
"""
|
237
|
+
...
|
238
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
239
|
+
resource_args, opts = _utilities.get_resource_args_opts(CalculateAuditVolumeCollectedArgs, pulumi.ResourceOptions, *args, **kwargs)
|
240
|
+
if resource_args is not None:
|
241
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
242
|
+
else:
|
243
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
244
|
+
|
245
|
+
def _internal_init(__self__,
|
246
|
+
resource_name: str,
|
247
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
248
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
249
|
+
time_from_month: Optional[pulumi.Input[str]] = None,
|
250
|
+
time_to_month: Optional[pulumi.Input[str]] = None,
|
251
|
+
__props__=None):
|
252
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
253
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
254
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
255
|
+
if opts.id is None:
|
256
|
+
if __props__ is not None:
|
257
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
258
|
+
__props__ = CalculateAuditVolumeCollectedArgs.__new__(CalculateAuditVolumeCollectedArgs)
|
259
|
+
|
260
|
+
if audit_profile_id is None and not opts.urn:
|
261
|
+
raise TypeError("Missing required property 'audit_profile_id'")
|
262
|
+
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
263
|
+
if time_from_month is None and not opts.urn:
|
264
|
+
raise TypeError("Missing required property 'time_from_month'")
|
265
|
+
__props__.__dict__["time_from_month"] = time_from_month
|
266
|
+
__props__.__dict__["time_to_month"] = time_to_month
|
267
|
+
__props__.__dict__["collected_audit_volumes"] = None
|
268
|
+
super(CalculateAuditVolumeCollected, __self__).__init__(
|
269
|
+
'oci:DataSafe/calculateAuditVolumeCollected:CalculateAuditVolumeCollected',
|
270
|
+
resource_name,
|
271
|
+
__props__,
|
272
|
+
opts)
|
273
|
+
|
274
|
+
@staticmethod
|
275
|
+
def get(resource_name: str,
|
276
|
+
id: pulumi.Input[str],
|
277
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
278
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
279
|
+
collected_audit_volumes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs', 'CalculateAuditVolumeCollectedCollectedAuditVolumeArgsDict']]]]] = None,
|
280
|
+
time_from_month: Optional[pulumi.Input[str]] = None,
|
281
|
+
time_to_month: Optional[pulumi.Input[str]] = None) -> 'CalculateAuditVolumeCollected':
|
282
|
+
"""
|
283
|
+
Get an existing CalculateAuditVolumeCollected resource's state with the given name, id, and optional extra
|
284
|
+
properties used to qualify the lookup.
|
285
|
+
|
286
|
+
:param str resource_name: The unique name of the resulting resource.
|
287
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
288
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
289
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
290
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CalculateAuditVolumeCollectedCollectedAuditVolumeArgs', 'CalculateAuditVolumeCollectedCollectedAuditVolumeArgsDict']]]] collected_audit_volumes: List of collected audit volumes.
|
291
|
+
:param pulumi.Input[str] time_from_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
292
|
+
:param pulumi.Input[str] time_to_month: The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
293
|
+
|
294
|
+
|
295
|
+
** IMPORTANT **
|
296
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
297
|
+
"""
|
298
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
299
|
+
|
300
|
+
__props__ = _CalculateAuditVolumeCollectedState.__new__(_CalculateAuditVolumeCollectedState)
|
301
|
+
|
302
|
+
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
303
|
+
__props__.__dict__["collected_audit_volumes"] = collected_audit_volumes
|
304
|
+
__props__.__dict__["time_from_month"] = time_from_month
|
305
|
+
__props__.__dict__["time_to_month"] = time_to_month
|
306
|
+
return CalculateAuditVolumeCollected(resource_name, opts=opts, __props__=__props__)
|
307
|
+
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="auditProfileId")
|
310
|
+
def audit_profile_id(self) -> pulumi.Output[str]:
|
311
|
+
"""
|
312
|
+
The OCID of the audit.
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "audit_profile_id")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="collectedAuditVolumes")
|
318
|
+
def collected_audit_volumes(self) -> pulumi.Output[Sequence['outputs.CalculateAuditVolumeCollectedCollectedAuditVolume']]:
|
319
|
+
"""
|
320
|
+
List of collected audit volumes.
|
321
|
+
"""
|
322
|
+
return pulumi.get(self, "collected_audit_volumes")
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="timeFromMonth")
|
326
|
+
def time_from_month(self) -> pulumi.Output[str]:
|
327
|
+
"""
|
328
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "time_from_month")
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="timeToMonth")
|
334
|
+
def time_to_month(self) -> pulumi.Output[str]:
|
335
|
+
"""
|
336
|
+
The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.
|
337
|
+
|
338
|
+
|
339
|
+
** IMPORTANT **
|
340
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "time_to_month")
|
343
|
+
|
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -19,6 +19,8 @@ __all__ = [
|
|
19
19
|
'AuditPolicyManagementAuditConditionEnableCondition',
|
20
20
|
'AuditPolicyManagementAuditSpecification',
|
21
21
|
'AuditProfileAuditTrail',
|
22
|
+
'CalculateAuditVolumeAvailableAvailableAuditVolume',
|
23
|
+
'CalculateAuditVolumeCollectedCollectedAuditVolume',
|
22
24
|
'DataSafeConfigurationGlobalSetting',
|
23
25
|
'DatabaseSecurityConfigManagementSqlFirewallConfig',
|
24
26
|
'DatabaseSecurityConfigSqlFirewallConfig',
|
@@ -1465,6 +1467,136 @@ class AuditProfileAuditTrail(dict):
|
|
1465
1467
|
return pulumi.get(self, "work_request_id")
|
1466
1468
|
|
1467
1469
|
|
1470
|
+
@pulumi.output_type
|
1471
|
+
class CalculateAuditVolumeAvailableAvailableAuditVolume(dict):
|
1472
|
+
@staticmethod
|
1473
|
+
def __key_warning(key: str):
|
1474
|
+
suggest = None
|
1475
|
+
if key == "auditProfileId":
|
1476
|
+
suggest = "audit_profile_id"
|
1477
|
+
elif key == "monthInConsideration":
|
1478
|
+
suggest = "month_in_consideration"
|
1479
|
+
elif key == "trailLocation":
|
1480
|
+
suggest = "trail_location"
|
1481
|
+
|
1482
|
+
if suggest:
|
1483
|
+
pulumi.log.warn(f"Key '{key}' not found in CalculateAuditVolumeAvailableAvailableAuditVolume. Access the value via the '{suggest}' property getter instead.")
|
1484
|
+
|
1485
|
+
def __getitem__(self, key: str) -> Any:
|
1486
|
+
CalculateAuditVolumeAvailableAvailableAuditVolume.__key_warning(key)
|
1487
|
+
return super().__getitem__(key)
|
1488
|
+
|
1489
|
+
def get(self, key: str, default = None) -> Any:
|
1490
|
+
CalculateAuditVolumeAvailableAvailableAuditVolume.__key_warning(key)
|
1491
|
+
return super().get(key, default)
|
1492
|
+
|
1493
|
+
def __init__(__self__, *,
|
1494
|
+
audit_profile_id: Optional[str] = None,
|
1495
|
+
month_in_consideration: Optional[str] = None,
|
1496
|
+
trail_location: Optional[str] = None,
|
1497
|
+
volume: Optional[str] = None):
|
1498
|
+
"""
|
1499
|
+
:param str audit_profile_id: The OCID of the audit.
|
1500
|
+
"""
|
1501
|
+
if audit_profile_id is not None:
|
1502
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
1503
|
+
if month_in_consideration is not None:
|
1504
|
+
pulumi.set(__self__, "month_in_consideration", month_in_consideration)
|
1505
|
+
if trail_location is not None:
|
1506
|
+
pulumi.set(__self__, "trail_location", trail_location)
|
1507
|
+
if volume is not None:
|
1508
|
+
pulumi.set(__self__, "volume", volume)
|
1509
|
+
|
1510
|
+
@property
|
1511
|
+
@pulumi.getter(name="auditProfileId")
|
1512
|
+
def audit_profile_id(self) -> Optional[str]:
|
1513
|
+
"""
|
1514
|
+
The OCID of the audit.
|
1515
|
+
"""
|
1516
|
+
return pulumi.get(self, "audit_profile_id")
|
1517
|
+
|
1518
|
+
@property
|
1519
|
+
@pulumi.getter(name="monthInConsideration")
|
1520
|
+
def month_in_consideration(self) -> Optional[str]:
|
1521
|
+
return pulumi.get(self, "month_in_consideration")
|
1522
|
+
|
1523
|
+
@property
|
1524
|
+
@pulumi.getter(name="trailLocation")
|
1525
|
+
def trail_location(self) -> Optional[str]:
|
1526
|
+
return pulumi.get(self, "trail_location")
|
1527
|
+
|
1528
|
+
@property
|
1529
|
+
@pulumi.getter
|
1530
|
+
def volume(self) -> Optional[str]:
|
1531
|
+
return pulumi.get(self, "volume")
|
1532
|
+
|
1533
|
+
|
1534
|
+
@pulumi.output_type
|
1535
|
+
class CalculateAuditVolumeCollectedCollectedAuditVolume(dict):
|
1536
|
+
@staticmethod
|
1537
|
+
def __key_warning(key: str):
|
1538
|
+
suggest = None
|
1539
|
+
if key == "archivedVolume":
|
1540
|
+
suggest = "archived_volume"
|
1541
|
+
elif key == "auditProfileId":
|
1542
|
+
suggest = "audit_profile_id"
|
1543
|
+
elif key == "monthInConsideration":
|
1544
|
+
suggest = "month_in_consideration"
|
1545
|
+
elif key == "onlineVolume":
|
1546
|
+
suggest = "online_volume"
|
1547
|
+
|
1548
|
+
if suggest:
|
1549
|
+
pulumi.log.warn(f"Key '{key}' not found in CalculateAuditVolumeCollectedCollectedAuditVolume. Access the value via the '{suggest}' property getter instead.")
|
1550
|
+
|
1551
|
+
def __getitem__(self, key: str) -> Any:
|
1552
|
+
CalculateAuditVolumeCollectedCollectedAuditVolume.__key_warning(key)
|
1553
|
+
return super().__getitem__(key)
|
1554
|
+
|
1555
|
+
def get(self, key: str, default = None) -> Any:
|
1556
|
+
CalculateAuditVolumeCollectedCollectedAuditVolume.__key_warning(key)
|
1557
|
+
return super().get(key, default)
|
1558
|
+
|
1559
|
+
def __init__(__self__, *,
|
1560
|
+
archived_volume: Optional[str] = None,
|
1561
|
+
audit_profile_id: Optional[str] = None,
|
1562
|
+
month_in_consideration: Optional[str] = None,
|
1563
|
+
online_volume: Optional[str] = None):
|
1564
|
+
"""
|
1565
|
+
:param str audit_profile_id: The OCID of the audit.
|
1566
|
+
"""
|
1567
|
+
if archived_volume is not None:
|
1568
|
+
pulumi.set(__self__, "archived_volume", archived_volume)
|
1569
|
+
if audit_profile_id is not None:
|
1570
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
1571
|
+
if month_in_consideration is not None:
|
1572
|
+
pulumi.set(__self__, "month_in_consideration", month_in_consideration)
|
1573
|
+
if online_volume is not None:
|
1574
|
+
pulumi.set(__self__, "online_volume", online_volume)
|
1575
|
+
|
1576
|
+
@property
|
1577
|
+
@pulumi.getter(name="archivedVolume")
|
1578
|
+
def archived_volume(self) -> Optional[str]:
|
1579
|
+
return pulumi.get(self, "archived_volume")
|
1580
|
+
|
1581
|
+
@property
|
1582
|
+
@pulumi.getter(name="auditProfileId")
|
1583
|
+
def audit_profile_id(self) -> Optional[str]:
|
1584
|
+
"""
|
1585
|
+
The OCID of the audit.
|
1586
|
+
"""
|
1587
|
+
return pulumi.get(self, "audit_profile_id")
|
1588
|
+
|
1589
|
+
@property
|
1590
|
+
@pulumi.getter(name="monthInConsideration")
|
1591
|
+
def month_in_consideration(self) -> Optional[str]:
|
1592
|
+
return pulumi.get(self, "month_in_consideration")
|
1593
|
+
|
1594
|
+
@property
|
1595
|
+
@pulumi.getter(name="onlineVolume")
|
1596
|
+
def online_volume(self) -> Optional[str]:
|
1597
|
+
return pulumi.get(self, "online_volume")
|
1598
|
+
|
1599
|
+
|
1468
1600
|
@pulumi.output_type
|
1469
1601
|
class DataSafeConfigurationGlobalSetting(dict):
|
1470
1602
|
@staticmethod
|
@@ -23,7 +23,7 @@ class GetDrPlanExecutionsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getDrPlanExecutions.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, display_name=None, dr_plan_execution_collections=None, dr_plan_execution_id=None,
|
26
|
+
def __init__(__self__, display_name=None, dr_plan_execution_collections=None, dr_plan_execution_id=None, dr_protection_group_id=None, filters=None, id=None, state=None):
|
27
27
|
if display_name and not isinstance(display_name, str):
|
28
28
|
raise TypeError("Expected argument 'display_name' to be a str")
|
29
29
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -33,9 +33,6 @@ class GetDrPlanExecutionsResult:
|
|
33
33
|
if dr_plan_execution_id and not isinstance(dr_plan_execution_id, str):
|
34
34
|
raise TypeError("Expected argument 'dr_plan_execution_id' to be a str")
|
35
35
|
pulumi.set(__self__, "dr_plan_execution_id", dr_plan_execution_id)
|
36
|
-
if dr_plan_execution_type and not isinstance(dr_plan_execution_type, str):
|
37
|
-
raise TypeError("Expected argument 'dr_plan_execution_type' to be a str")
|
38
|
-
pulumi.set(__self__, "dr_plan_execution_type", dr_plan_execution_type)
|
39
36
|
if dr_protection_group_id and not isinstance(dr_protection_group_id, str):
|
40
37
|
raise TypeError("Expected argument 'dr_protection_group_id' to be a str")
|
41
38
|
pulumi.set(__self__, "dr_protection_group_id", dr_protection_group_id)
|
@@ -70,11 +67,6 @@ class GetDrPlanExecutionsResult:
|
|
70
67
|
def dr_plan_execution_id(self) -> Optional[str]:
|
71
68
|
return pulumi.get(self, "dr_plan_execution_id")
|
72
69
|
|
73
|
-
@property
|
74
|
-
@pulumi.getter(name="drPlanExecutionType")
|
75
|
-
def dr_plan_execution_type(self) -> Optional[str]:
|
76
|
-
return pulumi.get(self, "dr_plan_execution_type")
|
77
|
-
|
78
70
|
@property
|
79
71
|
@pulumi.getter(name="drProtectionGroupId")
|
80
72
|
def dr_protection_group_id(self) -> str:
|
@@ -114,7 +106,6 @@ class AwaitableGetDrPlanExecutionsResult(GetDrPlanExecutionsResult):
|
|
114
106
|
display_name=self.display_name,
|
115
107
|
dr_plan_execution_collections=self.dr_plan_execution_collections,
|
116
108
|
dr_plan_execution_id=self.dr_plan_execution_id,
|
117
|
-
dr_plan_execution_type=self.dr_plan_execution_type,
|
118
109
|
dr_protection_group_id=self.dr_protection_group_id,
|
119
110
|
filters=self.filters,
|
120
111
|
id=self.id,
|
@@ -123,7 +114,6 @@ class AwaitableGetDrPlanExecutionsResult(GetDrPlanExecutionsResult):
|
|
123
114
|
|
124
115
|
def get_dr_plan_executions(display_name: Optional[str] = None,
|
125
116
|
dr_plan_execution_id: Optional[str] = None,
|
126
|
-
dr_plan_execution_type: Optional[str] = None,
|
127
117
|
dr_protection_group_id: Optional[str] = None,
|
128
118
|
filters: Optional[Sequence[Union['GetDrPlanExecutionsFilterArgs', 'GetDrPlanExecutionsFilterArgsDict']]] = None,
|
129
119
|
state: Optional[str] = None,
|
@@ -133,30 +123,15 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
133
123
|
|
134
124
|
Get a summary list of all DR plan executions for a DR protection group.
|
135
125
|
|
136
|
-
## Example Usage
|
137
|
-
|
138
|
-
```python
|
139
|
-
import pulumi
|
140
|
-
import pulumi_oci as oci
|
141
|
-
|
142
|
-
test_dr_plan_executions = oci.DisasterRecovery.get_dr_plan_executions(dr_protection_group_id=test_dr_protection_group["id"],
|
143
|
-
display_name=dr_plan_execution_display_name,
|
144
|
-
dr_plan_execution_id=test_dr_plan_execution["id"],
|
145
|
-
dr_plan_execution_type=dr_plan_execution_dr_plan_execution_type,
|
146
|
-
state=dr_plan_execution_state)
|
147
|
-
```
|
148
|
-
|
149
126
|
|
150
127
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
151
128
|
:param str dr_plan_execution_id: The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`
|
152
|
-
:param str dr_plan_execution_type: The DR plan execution type.
|
153
129
|
:param str dr_protection_group_id: The OCID of the DR protection group. Mandatory query param. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
154
130
|
:param str state: A filter to return only DR plan executions that match the given lifecycle state.
|
155
131
|
"""
|
156
132
|
__args__ = dict()
|
157
133
|
__args__['displayName'] = display_name
|
158
134
|
__args__['drPlanExecutionId'] = dr_plan_execution_id
|
159
|
-
__args__['drPlanExecutionType'] = dr_plan_execution_type
|
160
135
|
__args__['drProtectionGroupId'] = dr_protection_group_id
|
161
136
|
__args__['filters'] = filters
|
162
137
|
__args__['state'] = state
|
@@ -167,7 +142,6 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
167
142
|
display_name=pulumi.get(__ret__, 'display_name'),
|
168
143
|
dr_plan_execution_collections=pulumi.get(__ret__, 'dr_plan_execution_collections'),
|
169
144
|
dr_plan_execution_id=pulumi.get(__ret__, 'dr_plan_execution_id'),
|
170
|
-
dr_plan_execution_type=pulumi.get(__ret__, 'dr_plan_execution_type'),
|
171
145
|
dr_protection_group_id=pulumi.get(__ret__, 'dr_protection_group_id'),
|
172
146
|
filters=pulumi.get(__ret__, 'filters'),
|
173
147
|
id=pulumi.get(__ret__, 'id'),
|
@@ -177,7 +151,6 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
177
151
|
@_utilities.lift_output_func(get_dr_plan_executions)
|
178
152
|
def get_dr_plan_executions_output(display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
179
153
|
dr_plan_execution_id: Optional[pulumi.Input[Optional[str]]] = None,
|
180
|
-
dr_plan_execution_type: Optional[pulumi.Input[Optional[str]]] = None,
|
181
154
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
182
155
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDrPlanExecutionsFilterArgs', 'GetDrPlanExecutionsFilterArgsDict']]]]] = None,
|
183
156
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -187,23 +160,9 @@ def get_dr_plan_executions_output(display_name: Optional[pulumi.Input[Optional[s
|
|
187
160
|
|
188
161
|
Get a summary list of all DR plan executions for a DR protection group.
|
189
162
|
|
190
|
-
## Example Usage
|
191
|
-
|
192
|
-
```python
|
193
|
-
import pulumi
|
194
|
-
import pulumi_oci as oci
|
195
|
-
|
196
|
-
test_dr_plan_executions = oci.DisasterRecovery.get_dr_plan_executions(dr_protection_group_id=test_dr_protection_group["id"],
|
197
|
-
display_name=dr_plan_execution_display_name,
|
198
|
-
dr_plan_execution_id=test_dr_plan_execution["id"],
|
199
|
-
dr_plan_execution_type=dr_plan_execution_dr_plan_execution_type,
|
200
|
-
state=dr_plan_execution_state)
|
201
|
-
```
|
202
|
-
|
203
163
|
|
204
164
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
205
165
|
:param str dr_plan_execution_id: The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`
|
206
|
-
:param str dr_plan_execution_type: The DR plan execution type.
|
207
166
|
:param str dr_protection_group_id: The OCID of the DR protection group. Mandatory query param. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
208
167
|
:param str state: A filter to return only DR plan executions that match the given lifecycle state.
|
209
168
|
"""
|
@@ -22,7 +22,7 @@ class GetIntegrationInstanceResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getIntegrationInstance.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, alternate_custom_endpoints=None, attachments=None, compartment_id=None, consumption_model=None, custom_endpoints=None, defined_tags=None, display_name=None, domain_id=None, enable_process_automation_trigger=None, freeform_tags=None, id=None, idcs_at=None, idcs_infos=None, instance_url=None, integration_instance_id=None, integration_instance_type=None, is_byol=None, is_file_server_enabled=None, is_visual_builder_enabled=None, message_packs=None, network_endpoint_details=None, private_endpoint_outbound_connections=None, shape=None, state=None, state_message=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, alternate_custom_endpoints=None, attachments=None, compartment_id=None, consumption_model=None, custom_endpoints=None, defined_tags=None, display_name=None, domain_id=None, enable_process_automation_trigger=None, freeform_tags=None, id=None, idcs_at=None, idcs_infos=None, instance_url=None, integration_instance_id=None, integration_instance_type=None, is_byol=None, is_file_server_enabled=None, is_visual_builder_enabled=None, message_packs=None, network_endpoint_details=None, private_endpoint_outbound_connections=None, shape=None, state=None, state_message=None, system_tags=None, time_created=None, time_updated=None):
|
26
26
|
if alternate_custom_endpoints and not isinstance(alternate_custom_endpoints, list):
|
27
27
|
raise TypeError("Expected argument 'alternate_custom_endpoints' to be a list")
|
28
28
|
pulumi.set(__self__, "alternate_custom_endpoints", alternate_custom_endpoints)
|
@@ -98,6 +98,9 @@ class GetIntegrationInstanceResult:
|
|
98
98
|
if state_message and not isinstance(state_message, str):
|
99
99
|
raise TypeError("Expected argument 'state_message' to be a str")
|
100
100
|
pulumi.set(__self__, "state_message", state_message)
|
101
|
+
if system_tags and not isinstance(system_tags, dict):
|
102
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
103
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
101
104
|
if time_created and not isinstance(time_created, str):
|
102
105
|
raise TypeError("Expected argument 'time_created' to be a str")
|
103
106
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -293,6 +296,14 @@ class GetIntegrationInstanceResult:
|
|
293
296
|
"""
|
294
297
|
return pulumi.get(self, "state_message")
|
295
298
|
|
299
|
+
@property
|
300
|
+
@pulumi.getter(name="systemTags")
|
301
|
+
def system_tags(self) -> Mapping[str, Any]:
|
302
|
+
"""
|
303
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
304
|
+
"""
|
305
|
+
return pulumi.get(self, "system_tags")
|
306
|
+
|
296
307
|
@property
|
297
308
|
@pulumi.getter(name="timeCreated")
|
298
309
|
def time_created(self) -> str:
|
@@ -341,6 +352,7 @@ class AwaitableGetIntegrationInstanceResult(GetIntegrationInstanceResult):
|
|
341
352
|
shape=self.shape,
|
342
353
|
state=self.state,
|
343
354
|
state_message=self.state_message,
|
355
|
+
system_tags=self.system_tags,
|
344
356
|
time_created=self.time_created,
|
345
357
|
time_updated=self.time_updated)
|
346
358
|
|
@@ -395,6 +407,7 @@ def get_integration_instance(integration_instance_id: Optional[str] = None,
|
|
395
407
|
shape=pulumi.get(__ret__, 'shape'),
|
396
408
|
state=pulumi.get(__ret__, 'state'),
|
397
409
|
state_message=pulumi.get(__ret__, 'state_message'),
|
410
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
398
411
|
time_created=pulumi.get(__ret__, 'time_created'),
|
399
412
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
400
413
|
|