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,391 @@
|
|
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__ = ['CalculateAuditVolumeAvailableArgs', 'CalculateAuditVolumeAvailable']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class CalculateAuditVolumeAvailableArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
audit_profile_id: pulumi.Input[str],
|
20
|
+
audit_collection_start_time: Optional[pulumi.Input[str]] = None,
|
21
|
+
database_unique_name: Optional[pulumi.Input[str]] = None,
|
22
|
+
trail_locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
23
|
+
"""
|
24
|
+
The set of arguments for constructing a CalculateAuditVolumeAvailable resource.
|
25
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
26
|
+
:param pulumi.Input[str] audit_collection_start_time: The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
27
|
+
:param pulumi.Input[str] database_unique_name: Unique name of the database associated to the peer target database.
|
28
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trail_locations: The trail locations for which the audit data volume has to be calculated.
|
29
|
+
|
30
|
+
|
31
|
+
** IMPORTANT **
|
32
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
+
"""
|
34
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
35
|
+
if audit_collection_start_time is not None:
|
36
|
+
pulumi.set(__self__, "audit_collection_start_time", audit_collection_start_time)
|
37
|
+
if database_unique_name is not None:
|
38
|
+
pulumi.set(__self__, "database_unique_name", database_unique_name)
|
39
|
+
if trail_locations is not None:
|
40
|
+
pulumi.set(__self__, "trail_locations", trail_locations)
|
41
|
+
|
42
|
+
@property
|
43
|
+
@pulumi.getter(name="auditProfileId")
|
44
|
+
def audit_profile_id(self) -> pulumi.Input[str]:
|
45
|
+
"""
|
46
|
+
The OCID of the audit.
|
47
|
+
"""
|
48
|
+
return pulumi.get(self, "audit_profile_id")
|
49
|
+
|
50
|
+
@audit_profile_id.setter
|
51
|
+
def audit_profile_id(self, value: pulumi.Input[str]):
|
52
|
+
pulumi.set(self, "audit_profile_id", value)
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="auditCollectionStartTime")
|
56
|
+
def audit_collection_start_time(self) -> Optional[pulumi.Input[str]]:
|
57
|
+
"""
|
58
|
+
The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "audit_collection_start_time")
|
61
|
+
|
62
|
+
@audit_collection_start_time.setter
|
63
|
+
def audit_collection_start_time(self, value: Optional[pulumi.Input[str]]):
|
64
|
+
pulumi.set(self, "audit_collection_start_time", value)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="databaseUniqueName")
|
68
|
+
def database_unique_name(self) -> Optional[pulumi.Input[str]]:
|
69
|
+
"""
|
70
|
+
Unique name of the database associated to the peer target database.
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "database_unique_name")
|
73
|
+
|
74
|
+
@database_unique_name.setter
|
75
|
+
def database_unique_name(self, value: Optional[pulumi.Input[str]]):
|
76
|
+
pulumi.set(self, "database_unique_name", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="trailLocations")
|
80
|
+
def trail_locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
81
|
+
"""
|
82
|
+
The trail locations for which the audit data volume has to be calculated.
|
83
|
+
|
84
|
+
|
85
|
+
** IMPORTANT **
|
86
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "trail_locations")
|
89
|
+
|
90
|
+
@trail_locations.setter
|
91
|
+
def trail_locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
92
|
+
pulumi.set(self, "trail_locations", value)
|
93
|
+
|
94
|
+
|
95
|
+
@pulumi.input_type
|
96
|
+
class _CalculateAuditVolumeAvailableState:
|
97
|
+
def __init__(__self__, *,
|
98
|
+
audit_collection_start_time: Optional[pulumi.Input[str]] = None,
|
99
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
100
|
+
available_audit_volumes: Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs']]]] = None,
|
101
|
+
database_unique_name: Optional[pulumi.Input[str]] = None,
|
102
|
+
trail_locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
103
|
+
"""
|
104
|
+
Input properties used for looking up and filtering CalculateAuditVolumeAvailable resources.
|
105
|
+
:param pulumi.Input[str] audit_collection_start_time: The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
106
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
107
|
+
:param pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs']]] available_audit_volumes: List of available audit volumes.
|
108
|
+
:param pulumi.Input[str] database_unique_name: Unique name of the database associated to the peer target database.
|
109
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trail_locations: The trail locations for which the audit data volume has to be calculated.
|
110
|
+
|
111
|
+
|
112
|
+
** IMPORTANT **
|
113
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
114
|
+
"""
|
115
|
+
if audit_collection_start_time is not None:
|
116
|
+
pulumi.set(__self__, "audit_collection_start_time", audit_collection_start_time)
|
117
|
+
if audit_profile_id is not None:
|
118
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
119
|
+
if available_audit_volumes is not None:
|
120
|
+
pulumi.set(__self__, "available_audit_volumes", available_audit_volumes)
|
121
|
+
if database_unique_name is not None:
|
122
|
+
pulumi.set(__self__, "database_unique_name", database_unique_name)
|
123
|
+
if trail_locations is not None:
|
124
|
+
pulumi.set(__self__, "trail_locations", trail_locations)
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="auditCollectionStartTime")
|
128
|
+
def audit_collection_start_time(self) -> Optional[pulumi.Input[str]]:
|
129
|
+
"""
|
130
|
+
The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "audit_collection_start_time")
|
133
|
+
|
134
|
+
@audit_collection_start_time.setter
|
135
|
+
def audit_collection_start_time(self, value: Optional[pulumi.Input[str]]):
|
136
|
+
pulumi.set(self, "audit_collection_start_time", value)
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="auditProfileId")
|
140
|
+
def audit_profile_id(self) -> Optional[pulumi.Input[str]]:
|
141
|
+
"""
|
142
|
+
The OCID of the audit.
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "audit_profile_id")
|
145
|
+
|
146
|
+
@audit_profile_id.setter
|
147
|
+
def audit_profile_id(self, value: Optional[pulumi.Input[str]]):
|
148
|
+
pulumi.set(self, "audit_profile_id", value)
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="availableAuditVolumes")
|
152
|
+
def available_audit_volumes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs']]]]:
|
153
|
+
"""
|
154
|
+
List of available audit volumes.
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "available_audit_volumes")
|
157
|
+
|
158
|
+
@available_audit_volumes.setter
|
159
|
+
def available_audit_volumes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs']]]]):
|
160
|
+
pulumi.set(self, "available_audit_volumes", value)
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="databaseUniqueName")
|
164
|
+
def database_unique_name(self) -> Optional[pulumi.Input[str]]:
|
165
|
+
"""
|
166
|
+
Unique name of the database associated to the peer target database.
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "database_unique_name")
|
169
|
+
|
170
|
+
@database_unique_name.setter
|
171
|
+
def database_unique_name(self, value: Optional[pulumi.Input[str]]):
|
172
|
+
pulumi.set(self, "database_unique_name", value)
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="trailLocations")
|
176
|
+
def trail_locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
177
|
+
"""
|
178
|
+
The trail locations for which the audit data volume has to be calculated.
|
179
|
+
|
180
|
+
|
181
|
+
** IMPORTANT **
|
182
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "trail_locations")
|
185
|
+
|
186
|
+
@trail_locations.setter
|
187
|
+
def trail_locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
188
|
+
pulumi.set(self, "trail_locations", value)
|
189
|
+
|
190
|
+
|
191
|
+
class CalculateAuditVolumeAvailable(pulumi.CustomResource):
|
192
|
+
@overload
|
193
|
+
def __init__(__self__,
|
194
|
+
resource_name: str,
|
195
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
196
|
+
audit_collection_start_time: Optional[pulumi.Input[str]] = None,
|
197
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
198
|
+
database_unique_name: Optional[pulumi.Input[str]] = None,
|
199
|
+
trail_locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
200
|
+
__props__=None):
|
201
|
+
"""
|
202
|
+
This resource provides the Calculate Audit Volume Available resource in Oracle Cloud Infrastructure Data Safe service.
|
203
|
+
|
204
|
+
Calculates the volume of audit events available on the target database to be collected. Measurable up to the defined retention period of the audit target resource.
|
205
|
+
|
206
|
+
## Example Usage
|
207
|
+
|
208
|
+
```python
|
209
|
+
import pulumi
|
210
|
+
import pulumi_oci as oci
|
211
|
+
|
212
|
+
test_calculate_audit_volume_available = oci.data_safe.CalculateAuditVolumeAvailable("test_calculate_audit_volume_available",
|
213
|
+
audit_profile_id=test_audit_profile["id"],
|
214
|
+
audit_collection_start_time=calculate_audit_volume_available_audit_collection_start_time,
|
215
|
+
database_unique_name=calculate_audit_volume_available_database_unique_name,
|
216
|
+
trail_locations=calculate_audit_volume_available_trail_locations)
|
217
|
+
```
|
218
|
+
|
219
|
+
## Import
|
220
|
+
|
221
|
+
CalculateAuditVolumeAvailable can be imported using the `id`, e.g.
|
222
|
+
|
223
|
+
```sh
|
224
|
+
$ pulumi import oci:DataSafe/calculateAuditVolumeAvailable:CalculateAuditVolumeAvailable test_calculate_audit_volume_available "id"
|
225
|
+
```
|
226
|
+
|
227
|
+
:param str resource_name: The name of the resource.
|
228
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
229
|
+
:param pulumi.Input[str] audit_collection_start_time: The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
230
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
231
|
+
:param pulumi.Input[str] database_unique_name: Unique name of the database associated to the peer target database.
|
232
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trail_locations: The trail locations for which the audit data volume has to be calculated.
|
233
|
+
|
234
|
+
|
235
|
+
** IMPORTANT **
|
236
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
237
|
+
"""
|
238
|
+
...
|
239
|
+
@overload
|
240
|
+
def __init__(__self__,
|
241
|
+
resource_name: str,
|
242
|
+
args: CalculateAuditVolumeAvailableArgs,
|
243
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
244
|
+
"""
|
245
|
+
This resource provides the Calculate Audit Volume Available resource in Oracle Cloud Infrastructure Data Safe service.
|
246
|
+
|
247
|
+
Calculates the volume of audit events available on the target database to be collected. Measurable up to the defined retention period of the audit target resource.
|
248
|
+
|
249
|
+
## Example Usage
|
250
|
+
|
251
|
+
```python
|
252
|
+
import pulumi
|
253
|
+
import pulumi_oci as oci
|
254
|
+
|
255
|
+
test_calculate_audit_volume_available = oci.data_safe.CalculateAuditVolumeAvailable("test_calculate_audit_volume_available",
|
256
|
+
audit_profile_id=test_audit_profile["id"],
|
257
|
+
audit_collection_start_time=calculate_audit_volume_available_audit_collection_start_time,
|
258
|
+
database_unique_name=calculate_audit_volume_available_database_unique_name,
|
259
|
+
trail_locations=calculate_audit_volume_available_trail_locations)
|
260
|
+
```
|
261
|
+
|
262
|
+
## Import
|
263
|
+
|
264
|
+
CalculateAuditVolumeAvailable can be imported using the `id`, e.g.
|
265
|
+
|
266
|
+
```sh
|
267
|
+
$ pulumi import oci:DataSafe/calculateAuditVolumeAvailable:CalculateAuditVolumeAvailable test_calculate_audit_volume_available "id"
|
268
|
+
```
|
269
|
+
|
270
|
+
:param str resource_name: The name of the resource.
|
271
|
+
:param CalculateAuditVolumeAvailableArgs args: The arguments to use to populate this resource's properties.
|
272
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
273
|
+
"""
|
274
|
+
...
|
275
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
276
|
+
resource_args, opts = _utilities.get_resource_args_opts(CalculateAuditVolumeAvailableArgs, pulumi.ResourceOptions, *args, **kwargs)
|
277
|
+
if resource_args is not None:
|
278
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
279
|
+
else:
|
280
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
281
|
+
|
282
|
+
def _internal_init(__self__,
|
283
|
+
resource_name: str,
|
284
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
285
|
+
audit_collection_start_time: Optional[pulumi.Input[str]] = None,
|
286
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
287
|
+
database_unique_name: Optional[pulumi.Input[str]] = None,
|
288
|
+
trail_locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
289
|
+
__props__=None):
|
290
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
291
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
292
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
293
|
+
if opts.id is None:
|
294
|
+
if __props__ is not None:
|
295
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
296
|
+
__props__ = CalculateAuditVolumeAvailableArgs.__new__(CalculateAuditVolumeAvailableArgs)
|
297
|
+
|
298
|
+
__props__.__dict__["audit_collection_start_time"] = audit_collection_start_time
|
299
|
+
if audit_profile_id is None and not opts.urn:
|
300
|
+
raise TypeError("Missing required property 'audit_profile_id'")
|
301
|
+
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
302
|
+
__props__.__dict__["database_unique_name"] = database_unique_name
|
303
|
+
__props__.__dict__["trail_locations"] = trail_locations
|
304
|
+
__props__.__dict__["available_audit_volumes"] = None
|
305
|
+
super(CalculateAuditVolumeAvailable, __self__).__init__(
|
306
|
+
'oci:DataSafe/calculateAuditVolumeAvailable:CalculateAuditVolumeAvailable',
|
307
|
+
resource_name,
|
308
|
+
__props__,
|
309
|
+
opts)
|
310
|
+
|
311
|
+
@staticmethod
|
312
|
+
def get(resource_name: str,
|
313
|
+
id: pulumi.Input[str],
|
314
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
315
|
+
audit_collection_start_time: Optional[pulumi.Input[str]] = None,
|
316
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
317
|
+
available_audit_volumes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs', 'CalculateAuditVolumeAvailableAvailableAuditVolumeArgsDict']]]]] = None,
|
318
|
+
database_unique_name: Optional[pulumi.Input[str]] = None,
|
319
|
+
trail_locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'CalculateAuditVolumeAvailable':
|
320
|
+
"""
|
321
|
+
Get an existing CalculateAuditVolumeAvailable resource's state with the given name, id, and optional extra
|
322
|
+
properties used to qualify the lookup.
|
323
|
+
|
324
|
+
:param str resource_name: The unique name of the resulting resource.
|
325
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
326
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
327
|
+
:param pulumi.Input[str] audit_collection_start_time: The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
328
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
329
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CalculateAuditVolumeAvailableAvailableAuditVolumeArgs', 'CalculateAuditVolumeAvailableAvailableAuditVolumeArgsDict']]]] available_audit_volumes: List of available audit volumes.
|
330
|
+
:param pulumi.Input[str] database_unique_name: Unique name of the database associated to the peer target database.
|
331
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trail_locations: The trail locations for which the audit data volume has to be calculated.
|
332
|
+
|
333
|
+
|
334
|
+
** IMPORTANT **
|
335
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
336
|
+
"""
|
337
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
338
|
+
|
339
|
+
__props__ = _CalculateAuditVolumeAvailableState.__new__(_CalculateAuditVolumeAvailableState)
|
340
|
+
|
341
|
+
__props__.__dict__["audit_collection_start_time"] = audit_collection_start_time
|
342
|
+
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
343
|
+
__props__.__dict__["available_audit_volumes"] = available_audit_volumes
|
344
|
+
__props__.__dict__["database_unique_name"] = database_unique_name
|
345
|
+
__props__.__dict__["trail_locations"] = trail_locations
|
346
|
+
return CalculateAuditVolumeAvailable(resource_name, opts=opts, __props__=__props__)
|
347
|
+
|
348
|
+
@property
|
349
|
+
@pulumi.getter(name="auditCollectionStartTime")
|
350
|
+
def audit_collection_start_time(self) -> pulumi.Output[str]:
|
351
|
+
"""
|
352
|
+
The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "audit_collection_start_time")
|
355
|
+
|
356
|
+
@property
|
357
|
+
@pulumi.getter(name="auditProfileId")
|
358
|
+
def audit_profile_id(self) -> pulumi.Output[str]:
|
359
|
+
"""
|
360
|
+
The OCID of the audit.
|
361
|
+
"""
|
362
|
+
return pulumi.get(self, "audit_profile_id")
|
363
|
+
|
364
|
+
@property
|
365
|
+
@pulumi.getter(name="availableAuditVolumes")
|
366
|
+
def available_audit_volumes(self) -> pulumi.Output[Sequence['outputs.CalculateAuditVolumeAvailableAvailableAuditVolume']]:
|
367
|
+
"""
|
368
|
+
List of available audit volumes.
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "available_audit_volumes")
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter(name="databaseUniqueName")
|
374
|
+
def database_unique_name(self) -> pulumi.Output[str]:
|
375
|
+
"""
|
376
|
+
Unique name of the database associated to the peer target database.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "database_unique_name")
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter(name="trailLocations")
|
382
|
+
def trail_locations(self) -> pulumi.Output[Sequence[str]]:
|
383
|
+
"""
|
384
|
+
The trail locations for which the audit data volume has to be calculated.
|
385
|
+
|
386
|
+
|
387
|
+
** IMPORTANT **
|
388
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
389
|
+
"""
|
390
|
+
return pulumi.get(self, "trail_locations")
|
391
|
+
|