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
pulumi_oci/__init__.py
CHANGED
@@ -1965,6 +1965,22 @@ _utilities.register(
|
|
1965
1965
|
"oci:DataSafe/auditTrailManagement:AuditTrailManagement": "AuditTrailManagement"
|
1966
1966
|
}
|
1967
1967
|
},
|
1968
|
+
{
|
1969
|
+
"pkg": "oci",
|
1970
|
+
"mod": "DataSafe/calculateAuditVolumeAvailable",
|
1971
|
+
"fqn": "pulumi_oci.datasafe",
|
1972
|
+
"classes": {
|
1973
|
+
"oci:DataSafe/calculateAuditVolumeAvailable:CalculateAuditVolumeAvailable": "CalculateAuditVolumeAvailable"
|
1974
|
+
}
|
1975
|
+
},
|
1976
|
+
{
|
1977
|
+
"pkg": "oci",
|
1978
|
+
"mod": "DataSafe/calculateAuditVolumeCollected",
|
1979
|
+
"fqn": "pulumi_oci.datasafe",
|
1980
|
+
"classes": {
|
1981
|
+
"oci:DataSafe/calculateAuditVolumeCollected:CalculateAuditVolumeCollected": "CalculateAuditVolumeCollected"
|
1982
|
+
}
|
1983
|
+
},
|
1968
1984
|
{
|
1969
1985
|
"pkg": "oci",
|
1970
1986
|
"mod": "DataSafe/compareSecurityAssessment",
|
@@ -161,7 +161,7 @@ class AutonomousDatabaseArgs:
|
|
161
161
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
162
162
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
163
163
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
164
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable)
|
164
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
165
165
|
:param pulumi.Input[bool] is_free_tier: (Updatable) Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
166
166
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
167
167
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -875,7 +875,7 @@ class AutonomousDatabaseArgs:
|
|
875
875
|
@pulumi.getter(name="isDevTier")
|
876
876
|
def is_dev_tier(self) -> Optional[pulumi.Input[bool]]:
|
877
877
|
"""
|
878
|
-
(Updatable)
|
878
|
+
(Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
879
879
|
"""
|
880
880
|
return pulumi.get(self, "is_dev_tier")
|
881
881
|
|
@@ -1653,7 +1653,7 @@ class _AutonomousDatabaseState:
|
|
1653
1653
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
1654
1654
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
1655
1655
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
1656
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable)
|
1656
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
1657
1657
|
:param pulumi.Input[bool] is_free_tier: (Updatable) Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
1658
1658
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
1659
1659
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -2682,7 +2682,7 @@ class _AutonomousDatabaseState:
|
|
2682
2682
|
@pulumi.getter(name="isDevTier")
|
2683
2683
|
def is_dev_tier(self) -> Optional[pulumi.Input[bool]]:
|
2684
2684
|
"""
|
2685
|
-
(Updatable)
|
2685
|
+
(Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
2686
2686
|
"""
|
2687
2687
|
return pulumi.get(self, "is_dev_tier")
|
2688
2688
|
|
@@ -3933,7 +3933,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3933
3933
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
3934
3934
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
3935
3935
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
3936
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable)
|
3936
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
3937
3937
|
:param pulumi.Input[bool] is_free_tier: (Updatable) Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
3938
3938
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
3939
3939
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -4521,7 +4521,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4521
4521
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
4522
4522
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4523
4523
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
4524
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable)
|
4524
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
4525
4525
|
:param pulumi.Input[bool] is_free_tier: (Updatable) Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
4526
4526
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4527
4527
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -5220,7 +5220,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5220
5220
|
@pulumi.getter(name="isDevTier")
|
5221
5221
|
def is_dev_tier(self) -> pulumi.Output[bool]:
|
5222
5222
|
"""
|
5223
|
-
(Updatable)
|
5223
|
+
(Updatable) Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
5224
5224
|
"""
|
5225
5225
|
return pulumi.get(self, "is_dev_tier")
|
5226
5226
|
|
@@ -828,7 +828,7 @@ class GetAutonomousDatabaseResult:
|
|
828
828
|
@pulumi.getter(name="isDevTier")
|
829
829
|
def is_dev_tier(self) -> bool:
|
830
830
|
"""
|
831
|
-
|
831
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
832
832
|
"""
|
833
833
|
return pulumi.get(self, "is_dev_tier")
|
834
834
|
|
pulumi_oci/database/outputs.py
CHANGED
@@ -17215,7 +17215,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17215
17215
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
17216
17216
|
:param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
|
17217
17217
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
17218
|
-
:param bool is_dev_tier:
|
17218
|
+
:param bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
17219
17219
|
:param bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
|
17220
17220
|
:param bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
17221
17221
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -17819,7 +17819,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17819
17819
|
@pulumi.getter(name="isDevTier")
|
17820
17820
|
def is_dev_tier(self) -> bool:
|
17821
17821
|
"""
|
17822
|
-
|
17822
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
17823
17823
|
"""
|
17824
17824
|
return pulumi.get(self, "is_dev_tier")
|
17825
17825
|
|
@@ -19499,7 +19499,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19499
19499
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
19500
19500
|
:param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
19501
19501
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
19502
|
-
:param bool is_dev_tier:
|
19502
|
+
:param bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
19503
19503
|
:param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
19504
19504
|
:param bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
19505
19505
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -20055,7 +20055,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
20055
20055
|
@pulumi.getter(name="isDevTier")
|
20056
20056
|
def is_dev_tier(self) -> bool:
|
20057
20057
|
"""
|
20058
|
-
|
20058
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
20059
20059
|
"""
|
20060
20060
|
return pulumi.get(self, "is_dev_tier")
|
20061
20061
|
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -16,6 +16,8 @@ from .audit_profile import *
|
|
16
16
|
from .audit_profile_management import *
|
17
17
|
from .audit_trail import *
|
18
18
|
from .audit_trail_management import *
|
19
|
+
from .calculate_audit_volume_available import *
|
20
|
+
from .calculate_audit_volume_collected import *
|
19
21
|
from .compare_security_assessment import *
|
20
22
|
from .compare_user_assessment import *
|
21
23
|
from .data_safe_configuration import *
|
pulumi_oci/datasafe/_inputs.py
CHANGED
@@ -18,6 +18,8 @@ __all__ = [
|
|
18
18
|
'AuditPolicyManagementAuditConditionEnableConditionArgs',
|
19
19
|
'AuditPolicyManagementAuditSpecificationArgs',
|
20
20
|
'AuditProfileAuditTrailArgs',
|
21
|
+
'CalculateAuditVolumeAvailableAvailableAuditVolumeArgs',
|
22
|
+
'CalculateAuditVolumeCollectedCollectedAuditVolumeArgs',
|
21
23
|
'DataSafeConfigurationGlobalSettingArgs',
|
22
24
|
'DatabaseSecurityConfigManagementSqlFirewallConfigArgs',
|
23
25
|
'DatabaseSecurityConfigSqlFirewallConfigArgs',
|
@@ -1236,6 +1238,124 @@ class AuditProfileAuditTrailArgs:
|
|
1236
1238
|
pulumi.set(self, "work_request_id", value)
|
1237
1239
|
|
1238
1240
|
|
1241
|
+
@pulumi.input_type
|
1242
|
+
class CalculateAuditVolumeAvailableAvailableAuditVolumeArgs:
|
1243
|
+
def __init__(__self__, *,
|
1244
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
1245
|
+
month_in_consideration: Optional[pulumi.Input[str]] = None,
|
1246
|
+
trail_location: Optional[pulumi.Input[str]] = None,
|
1247
|
+
volume: Optional[pulumi.Input[str]] = None):
|
1248
|
+
"""
|
1249
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
1250
|
+
"""
|
1251
|
+
if audit_profile_id is not None:
|
1252
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
1253
|
+
if month_in_consideration is not None:
|
1254
|
+
pulumi.set(__self__, "month_in_consideration", month_in_consideration)
|
1255
|
+
if trail_location is not None:
|
1256
|
+
pulumi.set(__self__, "trail_location", trail_location)
|
1257
|
+
if volume is not None:
|
1258
|
+
pulumi.set(__self__, "volume", volume)
|
1259
|
+
|
1260
|
+
@property
|
1261
|
+
@pulumi.getter(name="auditProfileId")
|
1262
|
+
def audit_profile_id(self) -> Optional[pulumi.Input[str]]:
|
1263
|
+
"""
|
1264
|
+
The OCID of the audit.
|
1265
|
+
"""
|
1266
|
+
return pulumi.get(self, "audit_profile_id")
|
1267
|
+
|
1268
|
+
@audit_profile_id.setter
|
1269
|
+
def audit_profile_id(self, value: Optional[pulumi.Input[str]]):
|
1270
|
+
pulumi.set(self, "audit_profile_id", value)
|
1271
|
+
|
1272
|
+
@property
|
1273
|
+
@pulumi.getter(name="monthInConsideration")
|
1274
|
+
def month_in_consideration(self) -> Optional[pulumi.Input[str]]:
|
1275
|
+
return pulumi.get(self, "month_in_consideration")
|
1276
|
+
|
1277
|
+
@month_in_consideration.setter
|
1278
|
+
def month_in_consideration(self, value: Optional[pulumi.Input[str]]):
|
1279
|
+
pulumi.set(self, "month_in_consideration", value)
|
1280
|
+
|
1281
|
+
@property
|
1282
|
+
@pulumi.getter(name="trailLocation")
|
1283
|
+
def trail_location(self) -> Optional[pulumi.Input[str]]:
|
1284
|
+
return pulumi.get(self, "trail_location")
|
1285
|
+
|
1286
|
+
@trail_location.setter
|
1287
|
+
def trail_location(self, value: Optional[pulumi.Input[str]]):
|
1288
|
+
pulumi.set(self, "trail_location", value)
|
1289
|
+
|
1290
|
+
@property
|
1291
|
+
@pulumi.getter
|
1292
|
+
def volume(self) -> Optional[pulumi.Input[str]]:
|
1293
|
+
return pulumi.get(self, "volume")
|
1294
|
+
|
1295
|
+
@volume.setter
|
1296
|
+
def volume(self, value: Optional[pulumi.Input[str]]):
|
1297
|
+
pulumi.set(self, "volume", value)
|
1298
|
+
|
1299
|
+
|
1300
|
+
@pulumi.input_type
|
1301
|
+
class CalculateAuditVolumeCollectedCollectedAuditVolumeArgs:
|
1302
|
+
def __init__(__self__, *,
|
1303
|
+
archived_volume: Optional[pulumi.Input[str]] = None,
|
1304
|
+
audit_profile_id: Optional[pulumi.Input[str]] = None,
|
1305
|
+
month_in_consideration: Optional[pulumi.Input[str]] = None,
|
1306
|
+
online_volume: Optional[pulumi.Input[str]] = None):
|
1307
|
+
"""
|
1308
|
+
:param pulumi.Input[str] audit_profile_id: The OCID of the audit.
|
1309
|
+
"""
|
1310
|
+
if archived_volume is not None:
|
1311
|
+
pulumi.set(__self__, "archived_volume", archived_volume)
|
1312
|
+
if audit_profile_id is not None:
|
1313
|
+
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
1314
|
+
if month_in_consideration is not None:
|
1315
|
+
pulumi.set(__self__, "month_in_consideration", month_in_consideration)
|
1316
|
+
if online_volume is not None:
|
1317
|
+
pulumi.set(__self__, "online_volume", online_volume)
|
1318
|
+
|
1319
|
+
@property
|
1320
|
+
@pulumi.getter(name="archivedVolume")
|
1321
|
+
def archived_volume(self) -> Optional[pulumi.Input[str]]:
|
1322
|
+
return pulumi.get(self, "archived_volume")
|
1323
|
+
|
1324
|
+
@archived_volume.setter
|
1325
|
+
def archived_volume(self, value: Optional[pulumi.Input[str]]):
|
1326
|
+
pulumi.set(self, "archived_volume", value)
|
1327
|
+
|
1328
|
+
@property
|
1329
|
+
@pulumi.getter(name="auditProfileId")
|
1330
|
+
def audit_profile_id(self) -> Optional[pulumi.Input[str]]:
|
1331
|
+
"""
|
1332
|
+
The OCID of the audit.
|
1333
|
+
"""
|
1334
|
+
return pulumi.get(self, "audit_profile_id")
|
1335
|
+
|
1336
|
+
@audit_profile_id.setter
|
1337
|
+
def audit_profile_id(self, value: Optional[pulumi.Input[str]]):
|
1338
|
+
pulumi.set(self, "audit_profile_id", value)
|
1339
|
+
|
1340
|
+
@property
|
1341
|
+
@pulumi.getter(name="monthInConsideration")
|
1342
|
+
def month_in_consideration(self) -> Optional[pulumi.Input[str]]:
|
1343
|
+
return pulumi.get(self, "month_in_consideration")
|
1344
|
+
|
1345
|
+
@month_in_consideration.setter
|
1346
|
+
def month_in_consideration(self, value: Optional[pulumi.Input[str]]):
|
1347
|
+
pulumi.set(self, "month_in_consideration", value)
|
1348
|
+
|
1349
|
+
@property
|
1350
|
+
@pulumi.getter(name="onlineVolume")
|
1351
|
+
def online_volume(self) -> Optional[pulumi.Input[str]]:
|
1352
|
+
return pulumi.get(self, "online_volume")
|
1353
|
+
|
1354
|
+
@online_volume.setter
|
1355
|
+
def online_volume(self, value: Optional[pulumi.Input[str]]):
|
1356
|
+
pulumi.set(self, "online_volume", value)
|
1357
|
+
|
1358
|
+
|
1239
1359
|
@pulumi.input_type
|
1240
1360
|
class DataSafeConfigurationGlobalSettingArgs:
|
1241
1361
|
def __init__(__self__, *,
|