pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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 +35 -0
- pulumi_oci/config/__init__.pyi +2 -0
- pulumi_oci/config/vars.py +4 -0
- pulumi_oci/containerengine/_inputs.py +40 -0
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/outputs.py +70 -0
- pulumi_oci/database/_inputs.py +487 -2
- pulumi_oci/database/autonomous_container_database.py +92 -0
- pulumi_oci/database/autonomous_database.py +97 -8
- pulumi_oci/database/backup_destination.py +84 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +111 -8
- pulumi_oci/database/get_autonomous_container_database.py +43 -1
- pulumi_oci/database/get_autonomous_database.py +32 -1
- pulumi_oci/database/get_autonomous_databases.py +0 -26
- pulumi_oci/database/get_backup_destination.py +43 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_maintenance_runs.py +20 -1
- pulumi_oci/database/outputs.py +1179 -48
- pulumi_oci/filestorage/file_system.py +28 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
- pulumi_oci/filestorage/get_outbound_connector.py +15 -1
- pulumi_oci/filestorage/get_replication.py +15 -1
- pulumi_oci/filestorage/get_replication_target.py +15 -1
- pulumi_oci/filestorage/get_snapshot.py +15 -1
- pulumi_oci/filestorage/mount_target.py +28 -0
- pulumi_oci/filestorage/outbound_connector.py +28 -0
- pulumi_oci/filestorage/outputs.py +77 -0
- pulumi_oci/filestorage/replication.py +28 -0
- pulumi_oci/filestorage/snapshot.py +28 -0
- pulumi_oci/goldengate/connection.py +561 -162
- pulumi_oci/goldengate/database_registration.py +14 -14
- pulumi_oci/goldengate/get_connection.py +117 -6
- pulumi_oci/goldengate/outputs.py +96 -10
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +196 -0
- pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
- pulumi_oci/jms/get_fleet_errors.py +264 -0
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
- pulumi_oci/jms/get_jms_plugins.py +23 -1
- pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
- pulumi_oci/jms/get_plugin_errors.py +264 -0
- pulumi_oci/jms/outputs.py +566 -6
- pulumi_oci/provider.py +20 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/__init__.py +8 -0
- pulumi_oci/stackmonitoring/_inputs.py +372 -1
- pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
- pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
- pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
- pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
- pulumi_oci/stackmonitoring/metric_extension.py +4 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
- pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
- pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
- pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
- pulumi_oci/stackmonitoring/outputs.py +1305 -118
- pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
- pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
- pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
- pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
- pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
- pulumi_oci/vault/__init__.py +1 -1
- pulumi_oci/vault/_inputs.py +92 -0
- pulumi_oci/vault/get_secret.py +40 -1
- pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
- pulumi_oci/vault/outputs.py +210 -0
- pulumi_oci/vault/secret.py +122 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/top_level.txt +0 -0
@@ -1609,6 +1609,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1609
1609
|
source_details: Sequence['outputs.GetFileSystemsFileSystemSourceDetailResult'],
|
1610
1610
|
source_snapshot_id: str,
|
1611
1611
|
state: str,
|
1612
|
+
system_tags: Mapping[str, str],
|
1612
1613
|
time_created: str):
|
1613
1614
|
"""
|
1614
1615
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
@@ -1631,6 +1632,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1631
1632
|
:param Sequence['GetFileSystemsFileSystemSourceDetailArgs'] source_details: Source information for the file system.
|
1632
1633
|
:param str source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
1633
1634
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
1635
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1634
1636
|
:param str time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1635
1637
|
"""
|
1636
1638
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -1655,6 +1657,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1655
1657
|
pulumi.set(__self__, "source_details", source_details)
|
1656
1658
|
pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
|
1657
1659
|
pulumi.set(__self__, "state", state)
|
1660
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
1658
1661
|
pulumi.set(__self__, "time_created", time_created)
|
1659
1662
|
|
1660
1663
|
@property
|
@@ -1827,6 +1830,14 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1827
1830
|
"""
|
1828
1831
|
return pulumi.get(self, "state")
|
1829
1832
|
|
1833
|
+
@property
|
1834
|
+
@pulumi.getter(name="systemTags")
|
1835
|
+
def system_tags(self) -> Mapping[str, str]:
|
1836
|
+
"""
|
1837
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1838
|
+
"""
|
1839
|
+
return pulumi.get(self, "system_tags")
|
1840
|
+
|
1830
1841
|
@property
|
1831
1842
|
@pulumi.getter(name="timeCreated")
|
1832
1843
|
def time_created(self) -> str:
|
@@ -1957,6 +1968,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1957
1968
|
policy_prefix: str,
|
1958
1969
|
schedules: Sequence['outputs.GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult'],
|
1959
1970
|
state: str,
|
1971
|
+
system_tags: Mapping[str, str],
|
1960
1972
|
time_created: str):
|
1961
1973
|
"""
|
1962
1974
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
@@ -1969,6 +1981,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1969
1981
|
:param str policy_prefix: The prefix to apply to all snapshots created by this policy. Example: `acme`
|
1970
1982
|
:param Sequence['GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleArgs'] schedules: The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
1971
1983
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
1984
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1972
1985
|
:param str time_created: The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1973
1986
|
"""
|
1974
1987
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -1982,6 +1995,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1982
1995
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
1983
1996
|
pulumi.set(__self__, "schedules", schedules)
|
1984
1997
|
pulumi.set(__self__, "state", state)
|
1998
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
1985
1999
|
pulumi.set(__self__, "time_created", time_created)
|
1986
2000
|
|
1987
2001
|
@property
|
@@ -2069,6 +2083,14 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
2069
2083
|
"""
|
2070
2084
|
return pulumi.get(self, "state")
|
2071
2085
|
|
2086
|
+
@property
|
2087
|
+
@pulumi.getter(name="systemTags")
|
2088
|
+
def system_tags(self) -> Mapping[str, str]:
|
2089
|
+
"""
|
2090
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
2091
|
+
"""
|
2092
|
+
return pulumi.get(self, "system_tags")
|
2093
|
+
|
2072
2094
|
@property
|
2073
2095
|
@pulumi.getter(name="timeCreated")
|
2074
2096
|
def time_created(self) -> str:
|
@@ -2471,6 +2493,7 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2471
2493
|
reserved_storage_capacity: str,
|
2472
2494
|
state: str,
|
2473
2495
|
subnet_id: str,
|
2496
|
+
system_tags: Mapping[str, str],
|
2474
2497
|
time_billing_cycle_end: str,
|
2475
2498
|
time_created: str):
|
2476
2499
|
"""
|
@@ -2493,6 +2516,7 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2493
2516
|
:param str reserved_storage_capacity: * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
|
2494
2517
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
2495
2518
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the mount target is in.
|
2519
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
2496
2520
|
:param str time_billing_cycle_end: The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
|
2497
2521
|
:param str time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2498
2522
|
"""
|
@@ -2518,6 +2542,7 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2518
2542
|
pulumi.set(__self__, "reserved_storage_capacity", reserved_storage_capacity)
|
2519
2543
|
pulumi.set(__self__, "state", state)
|
2520
2544
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2545
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
2521
2546
|
pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
|
2522
2547
|
pulumi.set(__self__, "time_created", time_created)
|
2523
2548
|
|
@@ -2688,6 +2713,14 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2688
2713
|
"""
|
2689
2714
|
return pulumi.get(self, "subnet_id")
|
2690
2715
|
|
2716
|
+
@property
|
2717
|
+
@pulumi.getter(name="systemTags")
|
2718
|
+
def system_tags(self) -> Mapping[str, str]:
|
2719
|
+
"""
|
2720
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
2721
|
+
"""
|
2722
|
+
return pulumi.get(self, "system_tags")
|
2723
|
+
|
2691
2724
|
@property
|
2692
2725
|
@pulumi.getter(name="timeBillingCycleEnd")
|
2693
2726
|
def time_billing_cycle_end(self) -> str:
|
@@ -3037,6 +3070,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
3037
3070
|
password_secret_id: str,
|
3038
3071
|
password_secret_version: int,
|
3039
3072
|
state: str,
|
3073
|
+
system_tags: Mapping[str, str],
|
3040
3074
|
time_created: str):
|
3041
3075
|
"""
|
3042
3076
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
@@ -3052,6 +3086,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
3052
3086
|
:param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the password for the LDAP bind account in the Vault.
|
3053
3087
|
:param int password_secret_version: Version of the password secret in the Vault to use.
|
3054
3088
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
3089
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3055
3090
|
:param str time_created: The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3056
3091
|
"""
|
3057
3092
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -3068,6 +3103,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
3068
3103
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
3069
3104
|
pulumi.set(__self__, "password_secret_version", password_secret_version)
|
3070
3105
|
pulumi.set(__self__, "state", state)
|
3106
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
3071
3107
|
pulumi.set(__self__, "time_created", time_created)
|
3072
3108
|
|
3073
3109
|
@property
|
@@ -3179,6 +3215,14 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
3179
3215
|
"""
|
3180
3216
|
return pulumi.get(self, "state")
|
3181
3217
|
|
3218
|
+
@property
|
3219
|
+
@pulumi.getter(name="systemTags")
|
3220
|
+
def system_tags(self) -> Mapping[str, str]:
|
3221
|
+
"""
|
3222
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3223
|
+
"""
|
3224
|
+
return pulumi.get(self, "system_tags")
|
3225
|
+
|
3182
3226
|
@property
|
3183
3227
|
@pulumi.getter(name="timeCreated")
|
3184
3228
|
def time_created(self) -> str:
|
@@ -3363,6 +3407,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
|
|
3363
3407
|
replication_id: str,
|
3364
3408
|
source_id: str,
|
3365
3409
|
state: str,
|
3410
|
+
system_tags: Mapping[str, str],
|
3366
3411
|
target_id: str,
|
3367
3412
|
time_created: str):
|
3368
3413
|
"""
|
@@ -3380,6 +3425,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
|
|
3380
3425
|
:param str replication_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of replication.
|
3381
3426
|
:param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of source filesystem.
|
3382
3427
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
3428
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3383
3429
|
:param str target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of target filesystem.
|
3384
3430
|
:param str time_created: The date and time the replication target was created in target region. in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3385
3431
|
"""
|
@@ -3397,6 +3443,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
|
|
3397
3443
|
pulumi.set(__self__, "replication_id", replication_id)
|
3398
3444
|
pulumi.set(__self__, "source_id", source_id)
|
3399
3445
|
pulumi.set(__self__, "state", state)
|
3446
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
3400
3447
|
pulumi.set(__self__, "target_id", target_id)
|
3401
3448
|
pulumi.set(__self__, "time_created", time_created)
|
3402
3449
|
|
@@ -3512,6 +3559,14 @@ class GetReplicationTargetsReplicationTargetResult(dict):
|
|
3512
3559
|
"""
|
3513
3560
|
return pulumi.get(self, "state")
|
3514
3561
|
|
3562
|
+
@property
|
3563
|
+
@pulumi.getter(name="systemTags")
|
3564
|
+
def system_tags(self) -> Mapping[str, str]:
|
3565
|
+
"""
|
3566
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3567
|
+
"""
|
3568
|
+
return pulumi.get(self, "system_tags")
|
3569
|
+
|
3515
3570
|
@property
|
3516
3571
|
@pulumi.getter(name="targetId")
|
3517
3572
|
def target_id(self) -> str:
|
@@ -3576,6 +3631,7 @@ class GetReplicationsReplicationResult(dict):
|
|
3576
3631
|
replication_target_id: str,
|
3577
3632
|
source_id: str,
|
3578
3633
|
state: str,
|
3634
|
+
system_tags: Mapping[str, str],
|
3579
3635
|
target_id: str,
|
3580
3636
|
time_created: str):
|
3581
3637
|
"""
|
@@ -3595,6 +3651,7 @@ class GetReplicationsReplicationResult(dict):
|
|
3595
3651
|
:param str replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
3596
3652
|
:param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
|
3597
3653
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
3654
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3598
3655
|
:param str target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
|
3599
3656
|
:param str time_created: The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3600
3657
|
"""
|
@@ -3615,6 +3672,7 @@ class GetReplicationsReplicationResult(dict):
|
|
3615
3672
|
pulumi.set(__self__, "replication_target_id", replication_target_id)
|
3616
3673
|
pulumi.set(__self__, "source_id", source_id)
|
3617
3674
|
pulumi.set(__self__, "state", state)
|
3675
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
3618
3676
|
pulumi.set(__self__, "target_id", target_id)
|
3619
3677
|
pulumi.set(__self__, "time_created", time_created)
|
3620
3678
|
|
@@ -3751,6 +3809,14 @@ class GetReplicationsReplicationResult(dict):
|
|
3751
3809
|
"""
|
3752
3810
|
return pulumi.get(self, "state")
|
3753
3811
|
|
3812
|
+
@property
|
3813
|
+
@pulumi.getter(name="systemTags")
|
3814
|
+
def system_tags(self) -> Mapping[str, str]:
|
3815
|
+
"""
|
3816
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3817
|
+
"""
|
3818
|
+
return pulumi.get(self, "system_tags")
|
3819
|
+
|
3754
3820
|
@property
|
3755
3821
|
@pulumi.getter(name="targetId")
|
3756
3822
|
def target_id(self) -> str:
|
@@ -3921,6 +3987,7 @@ class GetSnapshotsSnapshotResult(dict):
|
|
3921
3987
|
snapshot_time: str,
|
3922
3988
|
snapshot_type: str,
|
3923
3989
|
state: str,
|
3990
|
+
system_tags: Mapping[str, str],
|
3924
3991
|
time_created: str):
|
3925
3992
|
"""
|
3926
3993
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
@@ -3940,6 +4007,7 @@ class GetSnapshotsSnapshotResult(dict):
|
|
3940
4007
|
* If the snapshot is replicated from a file system.
|
3941
4008
|
:param str snapshot_type: Specifies the generation type of the snapshot.
|
3942
4009
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
4010
|
+
:param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
3943
4011
|
:param str time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3944
4012
|
"""
|
3945
4013
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -3957,6 +4025,7 @@ class GetSnapshotsSnapshotResult(dict):
|
|
3957
4025
|
pulumi.set(__self__, "snapshot_time", snapshot_time)
|
3958
4026
|
pulumi.set(__self__, "snapshot_type", snapshot_type)
|
3959
4027
|
pulumi.set(__self__, "state", state)
|
4028
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
3960
4029
|
pulumi.set(__self__, "time_created", time_created)
|
3961
4030
|
|
3962
4031
|
@property
|
@@ -4079,6 +4148,14 @@ class GetSnapshotsSnapshotResult(dict):
|
|
4079
4148
|
"""
|
4080
4149
|
return pulumi.get(self, "state")
|
4081
4150
|
|
4151
|
+
@property
|
4152
|
+
@pulumi.getter(name="systemTags")
|
4153
|
+
def system_tags(self) -> Mapping[str, str]:
|
4154
|
+
"""
|
4155
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
4156
|
+
"""
|
4157
|
+
return pulumi.get(self, "system_tags")
|
4158
|
+
|
4082
4159
|
@property
|
4083
4160
|
@pulumi.getter(name="timeCreated")
|
4084
4161
|
def time_created(self) -> str:
|
@@ -190,6 +190,7 @@ class _ReplicationState:
|
|
190
190
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
191
191
|
source_id: Optional[pulumi.Input[str]] = None,
|
192
192
|
state: Optional[pulumi.Input[str]] = None,
|
193
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
193
194
|
target_id: Optional[pulumi.Input[str]] = None,
|
194
195
|
time_created: Optional[pulumi.Input[str]] = None):
|
195
196
|
"""
|
@@ -209,6 +210,7 @@ class _ReplicationState:
|
|
209
210
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
210
211
|
:param pulumi.Input[str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
|
211
212
|
:param pulumi.Input[str] state: The current state of this replication. This resource can be in a `FAILED` state if replication target is deleted instead of the replication resource.
|
213
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
212
214
|
:param pulumi.Input[str] target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
|
213
215
|
|
214
216
|
|
@@ -248,6 +250,8 @@ class _ReplicationState:
|
|
248
250
|
pulumi.set(__self__, "source_id", source_id)
|
249
251
|
if state is not None:
|
250
252
|
pulumi.set(__self__, "state", state)
|
253
|
+
if system_tags is not None:
|
254
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
251
255
|
if target_id is not None:
|
252
256
|
pulumi.set(__self__, "target_id", target_id)
|
253
257
|
if time_created is not None:
|
@@ -442,6 +446,18 @@ class _ReplicationState:
|
|
442
446
|
def state(self, value: Optional[pulumi.Input[str]]):
|
443
447
|
pulumi.set(self, "state", value)
|
444
448
|
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="systemTags")
|
451
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
452
|
+
"""
|
453
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
454
|
+
"""
|
455
|
+
return pulumi.get(self, "system_tags")
|
456
|
+
|
457
|
+
@system_tags.setter
|
458
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
459
|
+
pulumi.set(self, "system_tags", value)
|
460
|
+
|
445
461
|
@property
|
446
462
|
@pulumi.getter(name="targetId")
|
447
463
|
def target_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -693,6 +709,7 @@ class Replication(pulumi.CustomResource):
|
|
693
709
|
__props__.__dict__["recovery_point_time"] = None
|
694
710
|
__props__.__dict__["replication_target_id"] = None
|
695
711
|
__props__.__dict__["state"] = None
|
712
|
+
__props__.__dict__["system_tags"] = None
|
696
713
|
__props__.__dict__["time_created"] = None
|
697
714
|
super(Replication, __self__).__init__(
|
698
715
|
'oci:FileStorage/replication:Replication',
|
@@ -720,6 +737,7 @@ class Replication(pulumi.CustomResource):
|
|
720
737
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
721
738
|
source_id: Optional[pulumi.Input[str]] = None,
|
722
739
|
state: Optional[pulumi.Input[str]] = None,
|
740
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
723
741
|
target_id: Optional[pulumi.Input[str]] = None,
|
724
742
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Replication':
|
725
743
|
"""
|
@@ -744,6 +762,7 @@ class Replication(pulumi.CustomResource):
|
|
744
762
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
745
763
|
:param pulumi.Input[str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
|
746
764
|
:param pulumi.Input[str] state: The current state of this replication. This resource can be in a `FAILED` state if replication target is deleted instead of the replication resource.
|
765
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
747
766
|
:param pulumi.Input[str] target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
|
748
767
|
|
749
768
|
|
@@ -771,6 +790,7 @@ class Replication(pulumi.CustomResource):
|
|
771
790
|
__props__.__dict__["replication_target_id"] = replication_target_id
|
772
791
|
__props__.__dict__["source_id"] = source_id
|
773
792
|
__props__.__dict__["state"] = state
|
793
|
+
__props__.__dict__["system_tags"] = system_tags
|
774
794
|
__props__.__dict__["target_id"] = target_id
|
775
795
|
__props__.__dict__["time_created"] = time_created
|
776
796
|
return Replication(resource_name, opts=opts, __props__=__props__)
|
@@ -900,6 +920,14 @@ class Replication(pulumi.CustomResource):
|
|
900
920
|
"""
|
901
921
|
return pulumi.get(self, "state")
|
902
922
|
|
923
|
+
@property
|
924
|
+
@pulumi.getter(name="systemTags")
|
925
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
926
|
+
"""
|
927
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
928
|
+
"""
|
929
|
+
return pulumi.get(self, "system_tags")
|
930
|
+
|
903
931
|
@property
|
904
932
|
@pulumi.getter(name="targetId")
|
905
933
|
def target_id(self) -> pulumi.Output[str]:
|
@@ -166,6 +166,7 @@ class _SnapshotState:
|
|
166
166
|
snapshot_time: Optional[pulumi.Input[str]] = None,
|
167
167
|
snapshot_type: Optional[pulumi.Input[str]] = None,
|
168
168
|
state: Optional[pulumi.Input[str]] = None,
|
169
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
169
170
|
time_created: Optional[pulumi.Input[str]] = None):
|
170
171
|
"""
|
171
172
|
Input properties used for looking up and filtering Snapshot resources.
|
@@ -193,6 +194,7 @@ class _SnapshotState:
|
|
193
194
|
* If the snapshot is replicated from a file system.
|
194
195
|
:param pulumi.Input[str] snapshot_type: Specifies the generation type of the snapshot.
|
195
196
|
:param pulumi.Input[str] state: The current state of the snapshot.
|
197
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
196
198
|
:param pulumi.Input[str] time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
197
199
|
"""
|
198
200
|
if defined_tags is not None:
|
@@ -223,6 +225,8 @@ class _SnapshotState:
|
|
223
225
|
pulumi.set(__self__, "snapshot_type", snapshot_type)
|
224
226
|
if state is not None:
|
225
227
|
pulumi.set(__self__, "state", state)
|
228
|
+
if system_tags is not None:
|
229
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
226
230
|
if time_created is not None:
|
227
231
|
pulumi.set(__self__, "time_created", time_created)
|
228
232
|
|
@@ -402,6 +406,18 @@ class _SnapshotState:
|
|
402
406
|
def state(self, value: Optional[pulumi.Input[str]]):
|
403
407
|
pulumi.set(self, "state", value)
|
404
408
|
|
409
|
+
@property
|
410
|
+
@pulumi.getter(name="systemTags")
|
411
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
412
|
+
"""
|
413
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
414
|
+
"""
|
415
|
+
return pulumi.get(self, "system_tags")
|
416
|
+
|
417
|
+
@system_tags.setter
|
418
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
419
|
+
pulumi.set(self, "system_tags", value)
|
420
|
+
|
405
421
|
@property
|
406
422
|
@pulumi.getter(name="timeCreated")
|
407
423
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -574,6 +590,7 @@ class Snapshot(pulumi.CustomResource):
|
|
574
590
|
__props__.__dict__["snapshot_time"] = None
|
575
591
|
__props__.__dict__["snapshot_type"] = None
|
576
592
|
__props__.__dict__["state"] = None
|
593
|
+
__props__.__dict__["system_tags"] = None
|
577
594
|
__props__.__dict__["time_created"] = None
|
578
595
|
super(Snapshot, __self__).__init__(
|
579
596
|
'oci:FileStorage/snapshot:Snapshot',
|
@@ -599,6 +616,7 @@ class Snapshot(pulumi.CustomResource):
|
|
599
616
|
snapshot_time: Optional[pulumi.Input[str]] = None,
|
600
617
|
snapshot_type: Optional[pulumi.Input[str]] = None,
|
601
618
|
state: Optional[pulumi.Input[str]] = None,
|
619
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
602
620
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Snapshot':
|
603
621
|
"""
|
604
622
|
Get an existing Snapshot resource's state with the given name, id, and optional extra
|
@@ -631,6 +649,7 @@ class Snapshot(pulumi.CustomResource):
|
|
631
649
|
* If the snapshot is replicated from a file system.
|
632
650
|
:param pulumi.Input[str] snapshot_type: Specifies the generation type of the snapshot.
|
633
651
|
:param pulumi.Input[str] state: The current state of the snapshot.
|
652
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
634
653
|
:param pulumi.Input[str] time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
635
654
|
"""
|
636
655
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -651,6 +670,7 @@ class Snapshot(pulumi.CustomResource):
|
|
651
670
|
__props__.__dict__["snapshot_time"] = snapshot_time
|
652
671
|
__props__.__dict__["snapshot_type"] = snapshot_type
|
653
672
|
__props__.__dict__["state"] = state
|
673
|
+
__props__.__dict__["system_tags"] = system_tags
|
654
674
|
__props__.__dict__["time_created"] = time_created
|
655
675
|
return Snapshot(resource_name, opts=opts, __props__=__props__)
|
656
676
|
|
@@ -774,6 +794,14 @@ class Snapshot(pulumi.CustomResource):
|
|
774
794
|
"""
|
775
795
|
return pulumi.get(self, "state")
|
776
796
|
|
797
|
+
@property
|
798
|
+
@pulumi.getter(name="systemTags")
|
799
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
800
|
+
"""
|
801
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "system_tags")
|
804
|
+
|
777
805
|
@property
|
778
806
|
@pulumi.getter(name="timeCreated")
|
779
807
|
def time_created(self) -> pulumi.Output[str]:
|