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
pulumi_oci/__init__.py
CHANGED
@@ -1965,22 +1965,6 @@ _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
|
-
},
|
1984
1968
|
{
|
1985
1969
|
"pkg": "oci",
|
1986
1970
|
"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) Autonomous Database for Developers
|
164
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
878
|
+
(Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
1656
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
2685
|
+
(Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
3936
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
4524
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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) Autonomous Database for Developers
|
5223
|
+
(Updatable) This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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
|
-
Autonomous Database for Developers
|
831
|
+
This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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: Autonomous Database for Developers
|
17218
|
+
:param bool is_dev_tier: This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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
|
-
Autonomous Database for Developers
|
17822
|
+
This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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: Autonomous Database for Developers
|
19502
|
+
:param bool is_dev_tier: This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
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
|
-
Autonomous Database for Developers
|
20058
|
+
This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
|
20059
20059
|
"""
|
20060
20060
|
return pulumi.get(self, "is_dev_tier")
|
20061
20061
|
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -16,8 +16,6 @@ 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 *
|
21
19
|
from .compare_security_assessment import *
|
22
20
|
from .compare_user_assessment import *
|
23
21
|
from .data_safe_configuration import *
|
pulumi_oci/datasafe/_inputs.py
CHANGED
@@ -18,8 +18,6 @@ __all__ = [
|
|
18
18
|
'AuditPolicyManagementAuditConditionEnableConditionArgs',
|
19
19
|
'AuditPolicyManagementAuditSpecificationArgs',
|
20
20
|
'AuditProfileAuditTrailArgs',
|
21
|
-
'CalculateAuditVolumeAvailableAvailableAuditVolumeArgs',
|
22
|
-
'CalculateAuditVolumeCollectedCollectedAuditVolumeArgs',
|
23
21
|
'DataSafeConfigurationGlobalSettingArgs',
|
24
22
|
'DatabaseSecurityConfigManagementSqlFirewallConfigArgs',
|
25
23
|
'DatabaseSecurityConfigSqlFirewallConfigArgs',
|
@@ -1238,124 +1236,6 @@ class AuditProfileAuditTrailArgs:
|
|
1238
1236
|
pulumi.set(self, "work_request_id", value)
|
1239
1237
|
|
1240
1238
|
|
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
|
-
|
1359
1239
|
@pulumi.input_type
|
1360
1240
|
class DataSafeConfigurationGlobalSettingArgs:
|
1361
1241
|
def __init__(__self__, *,
|
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -19,8 +19,6 @@ __all__ = [
|
|
19
19
|
'AuditPolicyManagementAuditConditionEnableCondition',
|
20
20
|
'AuditPolicyManagementAuditSpecification',
|
21
21
|
'AuditProfileAuditTrail',
|
22
|
-
'CalculateAuditVolumeAvailableAvailableAuditVolume',
|
23
|
-
'CalculateAuditVolumeCollectedCollectedAuditVolume',
|
24
22
|
'DataSafeConfigurationGlobalSetting',
|
25
23
|
'DatabaseSecurityConfigManagementSqlFirewallConfig',
|
26
24
|
'DatabaseSecurityConfigSqlFirewallConfig',
|
@@ -1467,136 +1465,6 @@ class AuditProfileAuditTrail(dict):
|
|
1467
1465
|
return pulumi.get(self, "work_request_id")
|
1468
1466
|
|
1469
1467
|
|
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
|
-
|
1600
1468
|
@pulumi.output_type
|
1601
1469
|
class DataSafeConfigurationGlobalSetting(dict):
|
1602
1470
|
@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, dr_protection_group_id=None, filters=None, id=None, state=None):
|
26
|
+
def __init__(__self__, display_name=None, dr_plan_execution_collections=None, dr_plan_execution_id=None, dr_plan_execution_type=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,6 +33,9 @@ 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)
|
36
39
|
if dr_protection_group_id and not isinstance(dr_protection_group_id, str):
|
37
40
|
raise TypeError("Expected argument 'dr_protection_group_id' to be a str")
|
38
41
|
pulumi.set(__self__, "dr_protection_group_id", dr_protection_group_id)
|
@@ -67,6 +70,11 @@ class GetDrPlanExecutionsResult:
|
|
67
70
|
def dr_plan_execution_id(self) -> Optional[str]:
|
68
71
|
return pulumi.get(self, "dr_plan_execution_id")
|
69
72
|
|
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
|
+
|
70
78
|
@property
|
71
79
|
@pulumi.getter(name="drProtectionGroupId")
|
72
80
|
def dr_protection_group_id(self) -> str:
|
@@ -106,6 +114,7 @@ class AwaitableGetDrPlanExecutionsResult(GetDrPlanExecutionsResult):
|
|
106
114
|
display_name=self.display_name,
|
107
115
|
dr_plan_execution_collections=self.dr_plan_execution_collections,
|
108
116
|
dr_plan_execution_id=self.dr_plan_execution_id,
|
117
|
+
dr_plan_execution_type=self.dr_plan_execution_type,
|
109
118
|
dr_protection_group_id=self.dr_protection_group_id,
|
110
119
|
filters=self.filters,
|
111
120
|
id=self.id,
|
@@ -114,6 +123,7 @@ class AwaitableGetDrPlanExecutionsResult(GetDrPlanExecutionsResult):
|
|
114
123
|
|
115
124
|
def get_dr_plan_executions(display_name: Optional[str] = None,
|
116
125
|
dr_plan_execution_id: Optional[str] = None,
|
126
|
+
dr_plan_execution_type: Optional[str] = None,
|
117
127
|
dr_protection_group_id: Optional[str] = None,
|
118
128
|
filters: Optional[Sequence[Union['GetDrPlanExecutionsFilterArgs', 'GetDrPlanExecutionsFilterArgsDict']]] = None,
|
119
129
|
state: Optional[str] = None,
|
@@ -123,15 +133,30 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
123
133
|
|
124
134
|
Get a summary list of all DR plan executions for a DR protection group.
|
125
135
|
|
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
|
+
|
126
149
|
|
127
150
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
128
151
|
: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.
|
129
153
|
:param str dr_protection_group_id: The OCID of the DR protection group. Mandatory query param. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
130
154
|
:param str state: A filter to return only DR plan executions that match the given lifecycle state.
|
131
155
|
"""
|
132
156
|
__args__ = dict()
|
133
157
|
__args__['displayName'] = display_name
|
134
158
|
__args__['drPlanExecutionId'] = dr_plan_execution_id
|
159
|
+
__args__['drPlanExecutionType'] = dr_plan_execution_type
|
135
160
|
__args__['drProtectionGroupId'] = dr_protection_group_id
|
136
161
|
__args__['filters'] = filters
|
137
162
|
__args__['state'] = state
|
@@ -142,6 +167,7 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
142
167
|
display_name=pulumi.get(__ret__, 'display_name'),
|
143
168
|
dr_plan_execution_collections=pulumi.get(__ret__, 'dr_plan_execution_collections'),
|
144
169
|
dr_plan_execution_id=pulumi.get(__ret__, 'dr_plan_execution_id'),
|
170
|
+
dr_plan_execution_type=pulumi.get(__ret__, 'dr_plan_execution_type'),
|
145
171
|
dr_protection_group_id=pulumi.get(__ret__, 'dr_protection_group_id'),
|
146
172
|
filters=pulumi.get(__ret__, 'filters'),
|
147
173
|
id=pulumi.get(__ret__, 'id'),
|
@@ -151,6 +177,7 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
151
177
|
@_utilities.lift_output_func(get_dr_plan_executions)
|
152
178
|
def get_dr_plan_executions_output(display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
153
179
|
dr_plan_execution_id: Optional[pulumi.Input[Optional[str]]] = None,
|
180
|
+
dr_plan_execution_type: Optional[pulumi.Input[Optional[str]]] = None,
|
154
181
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
155
182
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDrPlanExecutionsFilterArgs', 'GetDrPlanExecutionsFilterArgsDict']]]]] = None,
|
156
183
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -160,9 +187,23 @@ def get_dr_plan_executions_output(display_name: Optional[pulumi.Input[Optional[s
|
|
160
187
|
|
161
188
|
Get a summary list of all DR plan executions for a DR protection group.
|
162
189
|
|
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
|
+
|
163
203
|
|
164
204
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
165
205
|
: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.
|
166
207
|
:param str dr_protection_group_id: The OCID of the DR protection group. Mandatory query param. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
167
208
|
:param str state: A filter to return only DR plan executions that match the given lifecycle state.
|
168
209
|
"""
|
@@ -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,
|
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):
|
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,9 +98,6 @@ 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)
|
104
101
|
if time_created and not isinstance(time_created, str):
|
105
102
|
raise TypeError("Expected argument 'time_created' to be a str")
|
106
103
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -296,14 +293,6 @@ class GetIntegrationInstanceResult:
|
|
296
293
|
"""
|
297
294
|
return pulumi.get(self, "state_message")
|
298
295
|
|
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
|
-
|
307
296
|
@property
|
308
297
|
@pulumi.getter(name="timeCreated")
|
309
298
|
def time_created(self) -> str:
|
@@ -352,7 +341,6 @@ class AwaitableGetIntegrationInstanceResult(GetIntegrationInstanceResult):
|
|
352
341
|
shape=self.shape,
|
353
342
|
state=self.state,
|
354
343
|
state_message=self.state_message,
|
355
|
-
system_tags=self.system_tags,
|
356
344
|
time_created=self.time_created,
|
357
345
|
time_updated=self.time_updated)
|
358
346
|
|
@@ -407,7 +395,6 @@ def get_integration_instance(integration_instance_id: Optional[str] = None,
|
|
407
395
|
shape=pulumi.get(__ret__, 'shape'),
|
408
396
|
state=pulumi.get(__ret__, 'state'),
|
409
397
|
state_message=pulumi.get(__ret__, 'state_message'),
|
410
|
-
system_tags=pulumi.get(__ret__, 'system_tags'),
|
411
398
|
time_created=pulumi.get(__ret__, 'time_created'),
|
412
399
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
413
400
|
|