pulumi-oci 2.7.0__py3-none-any.whl → 2.7.0a1723456529__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 -16
- 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 +0 -2
- pulumi_oci/datasafe/_inputs.py +0 -120
- pulumi_oci/datasafe/outputs.py +0 -132
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +42 -1
- pulumi_oci/integration/get_integration_instance.py +1 -14
- pulumi_oci/integration/integration_instance.py +0 -28
- pulumi_oci/integration/outputs.py +0 -11
- pulumi_oci/limits/get_limit_definitions.py +7 -24
- pulumi_oci/limits/get_limit_values.py +7 -24
- pulumi_oci/limits/get_resource_availability.py +5 -24
- pulumi_oci/limits/get_services.py +7 -24
- pulumi_oci/limits/outputs.py +2 -35
- pulumi_oci/networkloadbalancer/backend_set.py +2 -2
- pulumi_oci/networkloadbalancer/get_listener.py +3 -29
- pulumi_oci/networkloadbalancer/listener.py +24 -122
- 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 +5 -27
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.7.0.dist-info → pulumi_oci-2.7.0a1723456529.dist-info}/METADATA +1 -1
- {pulumi_oci-2.7.0.dist-info → pulumi_oci-2.7.0a1723456529.dist-info}/RECORD +27 -29
- {pulumi_oci-2.7.0.dist-info → pulumi_oci-2.7.0a1723456529.dist-info}/WHEEL +1 -1
- pulumi_oci/datasafe/calculate_audit_volume_available.py +0 -391
- pulumi_oci/datasafe/calculate_audit_volume_collected.py +0 -343
- {pulumi_oci-2.7.0.dist-info → pulumi_oci-2.7.0a1723456529.dist-info}/top_level.txt +0 -0
@@ -1,343 +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__ = ['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
|
-
|
File without changes
|