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
@@ -248,6 +248,7 @@ class _FileSystemState:
|
|
248
248
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]]] = None,
|
249
249
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
250
250
|
state: Optional[pulumi.Input[str]] = None,
|
251
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
251
252
|
time_created: Optional[pulumi.Input[str]] = None):
|
252
253
|
"""
|
253
254
|
Input properties used for looking up and filtering FileSystem resources.
|
@@ -277,6 +278,7 @@ class _FileSystemState:
|
|
277
278
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]] source_details: Source information for the file system.
|
278
279
|
:param pulumi.Input[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).
|
279
280
|
:param pulumi.Input[str] state: The current state of the file system.
|
281
|
+
: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.
|
280
282
|
:param pulumi.Input[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`
|
281
283
|
"""
|
282
284
|
if availability_domain is not None:
|
@@ -321,6 +323,8 @@ class _FileSystemState:
|
|
321
323
|
pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
|
322
324
|
if state is not None:
|
323
325
|
pulumi.set(__self__, "state", state)
|
326
|
+
if system_tags is not None:
|
327
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
324
328
|
if time_created is not None:
|
325
329
|
pulumi.set(__self__, "time_created", time_created)
|
326
330
|
|
@@ -579,6 +583,18 @@ class _FileSystemState:
|
|
579
583
|
def state(self, value: Optional[pulumi.Input[str]]):
|
580
584
|
pulumi.set(self, "state", value)
|
581
585
|
|
586
|
+
@property
|
587
|
+
@pulumi.getter(name="systemTags")
|
588
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
589
|
+
"""
|
590
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "system_tags")
|
593
|
+
|
594
|
+
@system_tags.setter
|
595
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
596
|
+
pulumi.set(self, "system_tags", value)
|
597
|
+
|
582
598
|
@property
|
583
599
|
@pulumi.getter(name="timeCreated")
|
584
600
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -835,6 +851,7 @@ class FileSystem(pulumi.CustomResource):
|
|
835
851
|
__props__.__dict__["replication_target_id"] = None
|
836
852
|
__props__.__dict__["source_details"] = None
|
837
853
|
__props__.__dict__["state"] = None
|
854
|
+
__props__.__dict__["system_tags"] = None
|
838
855
|
__props__.__dict__["time_created"] = None
|
839
856
|
super(FileSystem, __self__).__init__(
|
840
857
|
'oci:FileStorage/fileSystem:FileSystem',
|
@@ -867,6 +884,7 @@ class FileSystem(pulumi.CustomResource):
|
|
867
884
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]]] = None,
|
868
885
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
869
886
|
state: Optional[pulumi.Input[str]] = None,
|
887
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
870
888
|
time_created: Optional[pulumi.Input[str]] = None) -> 'FileSystem':
|
871
889
|
"""
|
872
890
|
Get an existing FileSystem resource's state with the given name, id, and optional extra
|
@@ -901,6 +919,7 @@ class FileSystem(pulumi.CustomResource):
|
|
901
919
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]] source_details: Source information for the file system.
|
902
920
|
:param pulumi.Input[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).
|
903
921
|
:param pulumi.Input[str] state: The current state of the file system.
|
922
|
+
: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.
|
904
923
|
:param pulumi.Input[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`
|
905
924
|
"""
|
906
925
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -928,6 +947,7 @@ class FileSystem(pulumi.CustomResource):
|
|
928
947
|
__props__.__dict__["source_details"] = source_details
|
929
948
|
__props__.__dict__["source_snapshot_id"] = source_snapshot_id
|
930
949
|
__props__.__dict__["state"] = state
|
950
|
+
__props__.__dict__["system_tags"] = system_tags
|
931
951
|
__props__.__dict__["time_created"] = time_created
|
932
952
|
return FileSystem(resource_name, opts=opts, __props__=__props__)
|
933
953
|
|
@@ -1102,6 +1122,14 @@ class FileSystem(pulumi.CustomResource):
|
|
1102
1122
|
"""
|
1103
1123
|
return pulumi.get(self, "state")
|
1104
1124
|
|
1125
|
+
@property
|
1126
|
+
@pulumi.getter(name="systemTags")
|
1127
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1128
|
+
"""
|
1129
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1130
|
+
"""
|
1131
|
+
return pulumi.get(self, "system_tags")
|
1132
|
+
|
1105
1133
|
@property
|
1106
1134
|
@pulumi.getter(name="timeCreated")
|
1107
1135
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -205,6 +205,7 @@ class _FilesystemSnapshotPolicyState:
|
|
205
205
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
206
206
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]]] = None,
|
207
207
|
state: Optional[pulumi.Input[str]] = None,
|
208
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
208
209
|
time_created: Optional[pulumi.Input[str]] = None):
|
209
210
|
"""
|
210
211
|
Input properties used for looking up and filtering FilesystemSnapshotPolicy resources.
|
@@ -223,6 +224,7 @@ class _FilesystemSnapshotPolicyState:
|
|
223
224
|
|
224
225
|
** IMPORTANT **
|
225
226
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
227
|
+
: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.
|
226
228
|
:param pulumi.Input[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`
|
227
229
|
"""
|
228
230
|
if availability_domain is not None:
|
@@ -245,6 +247,8 @@ class _FilesystemSnapshotPolicyState:
|
|
245
247
|
pulumi.set(__self__, "schedules", schedules)
|
246
248
|
if state is not None:
|
247
249
|
pulumi.set(__self__, "state", state)
|
250
|
+
if system_tags is not None:
|
251
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
248
252
|
if time_created is not None:
|
249
253
|
pulumi.set(__self__, "time_created", time_created)
|
250
254
|
|
@@ -371,6 +375,18 @@ class _FilesystemSnapshotPolicyState:
|
|
371
375
|
def state(self, value: Optional[pulumi.Input[str]]):
|
372
376
|
pulumi.set(self, "state", value)
|
373
377
|
|
378
|
+
@property
|
379
|
+
@pulumi.getter(name="systemTags")
|
380
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
381
|
+
"""
|
382
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "system_tags")
|
385
|
+
|
386
|
+
@system_tags.setter
|
387
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
388
|
+
pulumi.set(self, "system_tags", value)
|
389
|
+
|
374
390
|
@property
|
375
391
|
@pulumi.getter(name="timeCreated")
|
376
392
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -578,6 +594,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
578
594
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
579
595
|
__props__.__dict__["schedules"] = schedules
|
580
596
|
__props__.__dict__["state"] = state
|
597
|
+
__props__.__dict__["system_tags"] = None
|
581
598
|
__props__.__dict__["time_created"] = None
|
582
599
|
super(FilesystemSnapshotPolicy, __self__).__init__(
|
583
600
|
'oci:FileStorage/filesystemSnapshotPolicy:FilesystemSnapshotPolicy',
|
@@ -599,6 +616,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
599
616
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
600
617
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = 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) -> 'FilesystemSnapshotPolicy':
|
603
621
|
"""
|
604
622
|
Get an existing FilesystemSnapshotPolicy resource's state with the given name, id, and optional extra
|
@@ -622,6 +640,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
622
640
|
|
623
641
|
** IMPORTANT **
|
624
642
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
643
|
+
: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.
|
625
644
|
:param pulumi.Input[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`
|
626
645
|
"""
|
627
646
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -638,6 +657,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
638
657
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
639
658
|
__props__.__dict__["schedules"] = schedules
|
640
659
|
__props__.__dict__["state"] = state
|
660
|
+
__props__.__dict__["system_tags"] = system_tags
|
641
661
|
__props__.__dict__["time_created"] = time_created
|
642
662
|
return FilesystemSnapshotPolicy(resource_name, opts=opts, __props__=__props__)
|
643
663
|
|
@@ -724,6 +744,14 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
724
744
|
"""
|
725
745
|
return pulumi.get(self, "state")
|
726
746
|
|
747
|
+
@property
|
748
|
+
@pulumi.getter(name="systemTags")
|
749
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
750
|
+
"""
|
751
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
752
|
+
"""
|
753
|
+
return pulumi.get(self, "system_tags")
|
754
|
+
|
727
755
|
@property
|
728
756
|
@pulumi.getter(name="timeCreated")
|
729
757
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -27,7 +27,7 @@ class GetFilesystemSnapshotPolicyResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getFilesystemSnapshotPolicy.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, policy_prefix=None, schedules=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, policy_prefix=None, schedules=None, state=None, system_tags=None, time_created=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -64,6 +64,9 @@ class GetFilesystemSnapshotPolicyResult:
|
|
64
64
|
if state and not isinstance(state, str):
|
65
65
|
raise TypeError("Expected argument 'state' to be a str")
|
66
66
|
pulumi.set(__self__, "state", state)
|
67
|
+
if system_tags and not isinstance(system_tags, dict):
|
68
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
69
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
67
70
|
if time_created and not isinstance(time_created, str):
|
68
71
|
raise TypeError("Expected argument 'time_created' to be a str")
|
69
72
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -158,6 +161,14 @@ class GetFilesystemSnapshotPolicyResult:
|
|
158
161
|
"""
|
159
162
|
return pulumi.get(self, "state")
|
160
163
|
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="systemTags")
|
166
|
+
def system_tags(self) -> Mapping[str, str]:
|
167
|
+
"""
|
168
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "system_tags")
|
171
|
+
|
161
172
|
@property
|
162
173
|
@pulumi.getter(name="timeCreated")
|
163
174
|
def time_created(self) -> str:
|
@@ -185,6 +196,7 @@ class AwaitableGetFilesystemSnapshotPolicyResult(GetFilesystemSnapshotPolicyResu
|
|
185
196
|
policy_prefix=self.policy_prefix,
|
186
197
|
schedules=self.schedules,
|
187
198
|
state=self.state,
|
199
|
+
system_tags=self.system_tags,
|
188
200
|
time_created=self.time_created)
|
189
201
|
|
190
202
|
|
@@ -225,6 +237,7 @@ def get_filesystem_snapshot_policy(filesystem_snapshot_policy_id: Optional[str]
|
|
225
237
|
policy_prefix=pulumi.get(__ret__, 'policy_prefix'),
|
226
238
|
schedules=pulumi.get(__ret__, 'schedules'),
|
227
239
|
state=pulumi.get(__ret__, 'state'),
|
240
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
228
241
|
time_created=pulumi.get(__ret__, 'time_created'))
|
229
242
|
def get_filesystem_snapshot_policy_output(filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
230
243
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFilesystemSnapshotPolicyResult]:
|
@@ -262,4 +275,5 @@ def get_filesystem_snapshot_policy_output(filesystem_snapshot_policy_id: Optiona
|
|
262
275
|
policy_prefix=pulumi.get(__response__, 'policy_prefix'),
|
263
276
|
schedules=pulumi.get(__response__, 'schedules'),
|
264
277
|
state=pulumi.get(__response__, 'state'),
|
278
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
265
279
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -27,7 +27,7 @@ class GetOutboundConnectorResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getOutboundConnector.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, bind_distinguished_name=None, compartment_id=None, connector_type=None, defined_tags=None, display_name=None, endpoints=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, outbound_connector_id=None, password_secret_id=None, password_secret_version=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, bind_distinguished_name=None, compartment_id=None, connector_type=None, defined_tags=None, display_name=None, endpoints=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, outbound_connector_id=None, password_secret_id=None, password_secret_version=None, state=None, system_tags=None, time_created=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -73,6 +73,9 @@ class GetOutboundConnectorResult:
|
|
73
73
|
if state and not isinstance(state, str):
|
74
74
|
raise TypeError("Expected argument 'state' to be a str")
|
75
75
|
pulumi.set(__self__, "state", state)
|
76
|
+
if system_tags and not isinstance(system_tags, dict):
|
77
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
78
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
76
79
|
if time_created and not isinstance(time_created, str):
|
77
80
|
raise TypeError("Expected argument 'time_created' to be a str")
|
78
81
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -191,6 +194,14 @@ class GetOutboundConnectorResult:
|
|
191
194
|
"""
|
192
195
|
return pulumi.get(self, "state")
|
193
196
|
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="systemTags")
|
199
|
+
def system_tags(self) -> Mapping[str, str]:
|
200
|
+
"""
|
201
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "system_tags")
|
204
|
+
|
194
205
|
@property
|
195
206
|
@pulumi.getter(name="timeCreated")
|
196
207
|
def time_created(self) -> str:
|
@@ -221,6 +232,7 @@ class AwaitableGetOutboundConnectorResult(GetOutboundConnectorResult):
|
|
221
232
|
password_secret_id=self.password_secret_id,
|
222
233
|
password_secret_version=self.password_secret_version,
|
223
234
|
state=self.state,
|
235
|
+
system_tags=self.system_tags,
|
224
236
|
time_created=self.time_created)
|
225
237
|
|
226
238
|
|
@@ -264,6 +276,7 @@ def get_outbound_connector(outbound_connector_id: Optional[str] = None,
|
|
264
276
|
password_secret_id=pulumi.get(__ret__, 'password_secret_id'),
|
265
277
|
password_secret_version=pulumi.get(__ret__, 'password_secret_version'),
|
266
278
|
state=pulumi.get(__ret__, 'state'),
|
279
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
267
280
|
time_created=pulumi.get(__ret__, 'time_created'))
|
268
281
|
def get_outbound_connector_output(outbound_connector_id: Optional[pulumi.Input[str]] = None,
|
269
282
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOutboundConnectorResult]:
|
@@ -304,4 +317,5 @@ def get_outbound_connector_output(outbound_connector_id: Optional[pulumi.Input[s
|
|
304
317
|
password_secret_id=pulumi.get(__response__, 'password_secret_id'),
|
305
318
|
password_secret_version=pulumi.get(__response__, 'password_secret_version'),
|
306
319
|
state=pulumi.get(__response__, 'state'),
|
320
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
307
321
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -27,7 +27,7 @@ class GetReplicationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getReplication.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, is_lock_override=None, last_snapshot_id=None, lifecycle_details=None, locks=None, recovery_point_time=None, replication_id=None, replication_interval=None, replication_target_id=None, source_id=None, state=None, target_id=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, is_lock_override=None, last_snapshot_id=None, lifecycle_details=None, locks=None, recovery_point_time=None, replication_id=None, replication_interval=None, replication_target_id=None, source_id=None, state=None, system_tags=None, target_id=None, time_created=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -82,6 +82,9 @@ class GetReplicationResult:
|
|
82
82
|
if state and not isinstance(state, str):
|
83
83
|
raise TypeError("Expected argument 'state' to be a str")
|
84
84
|
pulumi.set(__self__, "state", state)
|
85
|
+
if system_tags and not isinstance(system_tags, dict):
|
86
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
87
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
85
88
|
if target_id and not isinstance(target_id, str):
|
86
89
|
raise TypeError("Expected argument 'target_id' to be a str")
|
87
90
|
pulumi.set(__self__, "target_id", target_id)
|
@@ -227,6 +230,14 @@ class GetReplicationResult:
|
|
227
230
|
"""
|
228
231
|
return pulumi.get(self, "state")
|
229
232
|
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="systemTags")
|
235
|
+
def system_tags(self) -> Mapping[str, str]:
|
236
|
+
"""
|
237
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "system_tags")
|
240
|
+
|
230
241
|
@property
|
231
242
|
@pulumi.getter(name="targetId")
|
232
243
|
def target_id(self) -> str:
|
@@ -268,6 +279,7 @@ class AwaitableGetReplicationResult(GetReplicationResult):
|
|
268
279
|
replication_target_id=self.replication_target_id,
|
269
280
|
source_id=self.source_id,
|
270
281
|
state=self.state,
|
282
|
+
system_tags=self.system_tags,
|
271
283
|
target_id=self.target_id,
|
272
284
|
time_created=self.time_created)
|
273
285
|
|
@@ -315,6 +327,7 @@ def get_replication(replication_id: Optional[str] = None,
|
|
315
327
|
replication_target_id=pulumi.get(__ret__, 'replication_target_id'),
|
316
328
|
source_id=pulumi.get(__ret__, 'source_id'),
|
317
329
|
state=pulumi.get(__ret__, 'state'),
|
330
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
318
331
|
target_id=pulumi.get(__ret__, 'target_id'),
|
319
332
|
time_created=pulumi.get(__ret__, 'time_created'))
|
320
333
|
def get_replication_output(replication_id: Optional[pulumi.Input[str]] = None,
|
@@ -359,5 +372,6 @@ def get_replication_output(replication_id: Optional[pulumi.Input[str]] = None,
|
|
359
372
|
replication_target_id=pulumi.get(__response__, 'replication_target_id'),
|
360
373
|
source_id=pulumi.get(__response__, 'source_id'),
|
361
374
|
state=pulumi.get(__response__, 'state'),
|
375
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
362
376
|
target_id=pulumi.get(__response__, 'target_id'),
|
363
377
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -26,7 +26,7 @@ class GetReplicationTargetResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getReplicationTarget.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, last_snapshot_id=None, lifecycle_details=None, recovery_point_time=None, replication_id=None, replication_target_id=None, source_id=None, state=None, target_id=None, time_created=None):
|
29
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, last_snapshot_id=None, lifecycle_details=None, recovery_point_time=None, replication_id=None, replication_target_id=None, source_id=None, state=None, system_tags=None, target_id=None, time_created=None):
|
30
30
|
if availability_domain and not isinstance(availability_domain, str):
|
31
31
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
32
32
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -72,6 +72,9 @@ class GetReplicationTargetResult:
|
|
72
72
|
if state and not isinstance(state, str):
|
73
73
|
raise TypeError("Expected argument 'state' to be a str")
|
74
74
|
pulumi.set(__self__, "state", state)
|
75
|
+
if system_tags and not isinstance(system_tags, dict):
|
76
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
77
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
75
78
|
if target_id and not isinstance(target_id, str):
|
76
79
|
raise TypeError("Expected argument 'target_id' to be a str")
|
77
80
|
pulumi.set(__self__, "target_id", target_id)
|
@@ -196,6 +199,14 @@ class GetReplicationTargetResult:
|
|
196
199
|
"""
|
197
200
|
return pulumi.get(self, "state")
|
198
201
|
|
202
|
+
@property
|
203
|
+
@pulumi.getter(name="systemTags")
|
204
|
+
def system_tags(self) -> Mapping[str, str]:
|
205
|
+
"""
|
206
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "system_tags")
|
209
|
+
|
199
210
|
@property
|
200
211
|
@pulumi.getter(name="targetId")
|
201
212
|
def target_id(self) -> str:
|
@@ -234,6 +245,7 @@ class AwaitableGetReplicationTargetResult(GetReplicationTargetResult):
|
|
234
245
|
replication_target_id=self.replication_target_id,
|
235
246
|
source_id=self.source_id,
|
236
247
|
state=self.state,
|
248
|
+
system_tags=self.system_tags,
|
237
249
|
target_id=self.target_id,
|
238
250
|
time_created=self.time_created)
|
239
251
|
|
@@ -278,6 +290,7 @@ def get_replication_target(replication_target_id: Optional[str] = None,
|
|
278
290
|
replication_target_id=pulumi.get(__ret__, 'replication_target_id'),
|
279
291
|
source_id=pulumi.get(__ret__, 'source_id'),
|
280
292
|
state=pulumi.get(__ret__, 'state'),
|
293
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
281
294
|
target_id=pulumi.get(__ret__, 'target_id'),
|
282
295
|
time_created=pulumi.get(__ret__, 'time_created'))
|
283
296
|
def get_replication_target_output(replication_target_id: Optional[pulumi.Input[str]] = None,
|
@@ -319,5 +332,6 @@ def get_replication_target_output(replication_target_id: Optional[pulumi.Input[s
|
|
319
332
|
replication_target_id=pulumi.get(__response__, 'replication_target_id'),
|
320
333
|
source_id=pulumi.get(__response__, 'source_id'),
|
321
334
|
state=pulumi.get(__response__, 'state'),
|
335
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
322
336
|
target_id=pulumi.get(__response__, 'target_id'),
|
323
337
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -27,7 +27,7 @@ class GetSnapshotResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getSnapshot.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, defined_tags=None, expiration_time=None, file_system_id=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_clone_source=None, is_lock_override=None, lifecycle_details=None, locks=None, name=None, provenance_id=None, snapshot_id=None, snapshot_time=None, snapshot_type=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, defined_tags=None, expiration_time=None, file_system_id=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_clone_source=None, is_lock_override=None, lifecycle_details=None, locks=None, name=None, provenance_id=None, snapshot_id=None, snapshot_time=None, snapshot_type=None, state=None, system_tags=None, time_created=None):
|
31
31
|
if defined_tags and not isinstance(defined_tags, dict):
|
32
32
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
33
33
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -76,6 +76,9 @@ class GetSnapshotResult:
|
|
76
76
|
if state and not isinstance(state, str):
|
77
77
|
raise TypeError("Expected argument 'state' to be a str")
|
78
78
|
pulumi.set(__self__, "state", state)
|
79
|
+
if system_tags and not isinstance(system_tags, dict):
|
80
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
81
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
79
82
|
if time_created and not isinstance(time_created, str):
|
80
83
|
raise TypeError("Expected argument 'time_created' to be a str")
|
81
84
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -205,6 +208,14 @@ class GetSnapshotResult:
|
|
205
208
|
"""
|
206
209
|
return pulumi.get(self, "state")
|
207
210
|
|
211
|
+
@property
|
212
|
+
@pulumi.getter(name="systemTags")
|
213
|
+
def system_tags(self) -> Mapping[str, str]:
|
214
|
+
"""
|
215
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "system_tags")
|
218
|
+
|
208
219
|
@property
|
209
220
|
@pulumi.getter(name="timeCreated")
|
210
221
|
def time_created(self) -> str:
|
@@ -236,6 +247,7 @@ class AwaitableGetSnapshotResult(GetSnapshotResult):
|
|
236
247
|
snapshot_time=self.snapshot_time,
|
237
248
|
snapshot_type=self.snapshot_type,
|
238
249
|
state=self.state,
|
250
|
+
system_tags=self.system_tags,
|
239
251
|
time_created=self.time_created)
|
240
252
|
|
241
253
|
|
@@ -280,6 +292,7 @@ def get_snapshot(snapshot_id: Optional[str] = None,
|
|
280
292
|
snapshot_time=pulumi.get(__ret__, 'snapshot_time'),
|
281
293
|
snapshot_type=pulumi.get(__ret__, 'snapshot_type'),
|
282
294
|
state=pulumi.get(__ret__, 'state'),
|
295
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
283
296
|
time_created=pulumi.get(__ret__, 'time_created'))
|
284
297
|
def get_snapshot_output(snapshot_id: Optional[pulumi.Input[str]] = None,
|
285
298
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSnapshotResult]:
|
@@ -321,4 +334,5 @@ def get_snapshot_output(snapshot_id: Optional[pulumi.Input[str]] = None,
|
|
321
334
|
snapshot_time=pulumi.get(__response__, 'snapshot_time'),
|
322
335
|
snapshot_type=pulumi.get(__response__, 'snapshot_type'),
|
323
336
|
state=pulumi.get(__response__, 'state'),
|
337
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
324
338
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -307,6 +307,7 @@ class _MountTargetState:
|
|
307
307
|
reserved_storage_capacity: Optional[pulumi.Input[str]] = None,
|
308
308
|
state: Optional[pulumi.Input[str]] = None,
|
309
309
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
310
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
310
311
|
time_billing_cycle_end: Optional[pulumi.Input[str]] = None,
|
311
312
|
time_created: Optional[pulumi.Input[str]] = None):
|
312
313
|
"""
|
@@ -342,6 +343,7 @@ class _MountTargetState:
|
|
342
343
|
|
343
344
|
** IMPORTANT **
|
344
345
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
346
|
+
: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.
|
345
347
|
:param pulumi.Input[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`
|
346
348
|
:param pulumi.Input[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`
|
347
349
|
"""
|
@@ -387,6 +389,8 @@ class _MountTargetState:
|
|
387
389
|
pulumi.set(__self__, "state", state)
|
388
390
|
if subnet_id is not None:
|
389
391
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
392
|
+
if system_tags is not None:
|
393
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
390
394
|
if time_billing_cycle_end is not None:
|
391
395
|
pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
|
392
396
|
if time_created is not None:
|
@@ -654,6 +658,18 @@ class _MountTargetState:
|
|
654
658
|
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
655
659
|
pulumi.set(self, "subnet_id", value)
|
656
660
|
|
661
|
+
@property
|
662
|
+
@pulumi.getter(name="systemTags")
|
663
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
664
|
+
"""
|
665
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
666
|
+
"""
|
667
|
+
return pulumi.get(self, "system_tags")
|
668
|
+
|
669
|
+
@system_tags.setter
|
670
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
671
|
+
pulumi.set(self, "system_tags", value)
|
672
|
+
|
657
673
|
@property
|
658
674
|
@pulumi.getter(name="timeBillingCycleEnd")
|
659
675
|
def time_billing_cycle_end(self) -> Optional[pulumi.Input[str]]:
|
@@ -984,6 +1000,7 @@ class MountTarget(pulumi.CustomResource):
|
|
984
1000
|
__props__.__dict__["private_ip_ids"] = None
|
985
1001
|
__props__.__dict__["reserved_storage_capacity"] = None
|
986
1002
|
__props__.__dict__["state"] = None
|
1003
|
+
__props__.__dict__["system_tags"] = None
|
987
1004
|
__props__.__dict__["time_billing_cycle_end"] = None
|
988
1005
|
__props__.__dict__["time_created"] = None
|
989
1006
|
super(MountTarget, __self__).__init__(
|
@@ -1017,6 +1034,7 @@ class MountTarget(pulumi.CustomResource):
|
|
1017
1034
|
reserved_storage_capacity: Optional[pulumi.Input[str]] = None,
|
1018
1035
|
state: Optional[pulumi.Input[str]] = None,
|
1019
1036
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1037
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1020
1038
|
time_billing_cycle_end: Optional[pulumi.Input[str]] = None,
|
1021
1039
|
time_created: Optional[pulumi.Input[str]] = None) -> 'MountTarget':
|
1022
1040
|
"""
|
@@ -1057,6 +1075,7 @@ class MountTarget(pulumi.CustomResource):
|
|
1057
1075
|
|
1058
1076
|
** IMPORTANT **
|
1059
1077
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1078
|
+
: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.
|
1060
1079
|
:param pulumi.Input[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`
|
1061
1080
|
:param pulumi.Input[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`
|
1062
1081
|
"""
|
@@ -1085,6 +1104,7 @@ class MountTarget(pulumi.CustomResource):
|
|
1085
1104
|
__props__.__dict__["reserved_storage_capacity"] = reserved_storage_capacity
|
1086
1105
|
__props__.__dict__["state"] = state
|
1087
1106
|
__props__.__dict__["subnet_id"] = subnet_id
|
1107
|
+
__props__.__dict__["system_tags"] = system_tags
|
1088
1108
|
__props__.__dict__["time_billing_cycle_end"] = time_billing_cycle_end
|
1089
1109
|
__props__.__dict__["time_created"] = time_created
|
1090
1110
|
return MountTarget(resource_name, opts=opts, __props__=__props__)
|
@@ -1267,6 +1287,14 @@ class MountTarget(pulumi.CustomResource):
|
|
1267
1287
|
"""
|
1268
1288
|
return pulumi.get(self, "subnet_id")
|
1269
1289
|
|
1290
|
+
@property
|
1291
|
+
@pulumi.getter(name="systemTags")
|
1292
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1293
|
+
"""
|
1294
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
1295
|
+
"""
|
1296
|
+
return pulumi.get(self, "system_tags")
|
1297
|
+
|
1270
1298
|
@property
|
1271
1299
|
@pulumi.getter(name="timeBillingCycleEnd")
|
1272
1300
|
def time_billing_cycle_end(self) -> pulumi.Output[str]:
|
@@ -233,6 +233,7 @@ class _OutboundConnectorState:
|
|
233
233
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
234
234
|
password_secret_version: Optional[pulumi.Input[int]] = None,
|
235
235
|
state: Optional[pulumi.Input[str]] = None,
|
236
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
236
237
|
time_created: Optional[pulumi.Input[str]] = None):
|
237
238
|
"""
|
238
239
|
Input properties used for looking up and filtering OutboundConnector resources.
|
@@ -252,6 +253,7 @@ class _OutboundConnectorState:
|
|
252
253
|
** IMPORTANT **
|
253
254
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
254
255
|
:param pulumi.Input[str] state: The current state of this outbound connector.
|
256
|
+
: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.
|
255
257
|
:param pulumi.Input[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`
|
256
258
|
"""
|
257
259
|
if availability_domain is not None:
|
@@ -280,6 +282,8 @@ class _OutboundConnectorState:
|
|
280
282
|
pulumi.set(__self__, "password_secret_version", password_secret_version)
|
281
283
|
if state is not None:
|
282
284
|
pulumi.set(__self__, "state", state)
|
285
|
+
if system_tags is not None:
|
286
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
283
287
|
if time_created is not None:
|
284
288
|
pulumi.set(__self__, "time_created", time_created)
|
285
289
|
|
@@ -440,6 +444,18 @@ class _OutboundConnectorState:
|
|
440
444
|
def state(self, value: Optional[pulumi.Input[str]]):
|
441
445
|
pulumi.set(self, "state", value)
|
442
446
|
|
447
|
+
@property
|
448
|
+
@pulumi.getter(name="systemTags")
|
449
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
450
|
+
"""
|
451
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
452
|
+
"""
|
453
|
+
return pulumi.get(self, "system_tags")
|
454
|
+
|
455
|
+
@system_tags.setter
|
456
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
457
|
+
pulumi.set(self, "system_tags", value)
|
458
|
+
|
443
459
|
@property
|
444
460
|
@pulumi.getter(name="timeCreated")
|
445
461
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -682,6 +698,7 @@ class OutboundConnector(pulumi.CustomResource):
|
|
682
698
|
__props__.__dict__["password_secret_id"] = password_secret_id
|
683
699
|
__props__.__dict__["password_secret_version"] = password_secret_version
|
684
700
|
__props__.__dict__["state"] = None
|
701
|
+
__props__.__dict__["system_tags"] = None
|
685
702
|
__props__.__dict__["time_created"] = None
|
686
703
|
super(OutboundConnector, __self__).__init__(
|
687
704
|
'oci:FileStorage/outboundConnector:OutboundConnector',
|
@@ -706,6 +723,7 @@ class OutboundConnector(pulumi.CustomResource):
|
|
706
723
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
707
724
|
password_secret_version: Optional[pulumi.Input[int]] = None,
|
708
725
|
state: Optional[pulumi.Input[str]] = None,
|
726
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
709
727
|
time_created: Optional[pulumi.Input[str]] = None) -> 'OutboundConnector':
|
710
728
|
"""
|
711
729
|
Get an existing OutboundConnector resource's state with the given name, id, and optional extra
|
@@ -730,6 +748,7 @@ class OutboundConnector(pulumi.CustomResource):
|
|
730
748
|
** IMPORTANT **
|
731
749
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
732
750
|
:param pulumi.Input[str] state: The current state of this outbound connector.
|
751
|
+
: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.
|
733
752
|
:param pulumi.Input[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`
|
734
753
|
"""
|
735
754
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -749,6 +768,7 @@ class OutboundConnector(pulumi.CustomResource):
|
|
749
768
|
__props__.__dict__["password_secret_id"] = password_secret_id
|
750
769
|
__props__.__dict__["password_secret_version"] = password_secret_version
|
751
770
|
__props__.__dict__["state"] = state
|
771
|
+
__props__.__dict__["system_tags"] = system_tags
|
752
772
|
__props__.__dict__["time_created"] = time_created
|
753
773
|
return OutboundConnector(resource_name, opts=opts, __props__=__props__)
|
754
774
|
|
@@ -857,6 +877,14 @@ class OutboundConnector(pulumi.CustomResource):
|
|
857
877
|
"""
|
858
878
|
return pulumi.get(self, "state")
|
859
879
|
|
880
|
+
@property
|
881
|
+
@pulumi.getter(name="systemTags")
|
882
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
883
|
+
"""
|
884
|
+
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
|
885
|
+
"""
|
886
|
+
return pulumi.get(self, "system_tags")
|
887
|
+
|
860
888
|
@property
|
861
889
|
@pulumi.getter(name="timeCreated")
|
862
890
|
def time_created(self) -> pulumi.Output[str]:
|