pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.26.0a1741943394__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
pulumi_oci/mysql/channel.py
CHANGED
@@ -164,6 +164,7 @@ class _ChannelState:
|
|
164
164
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
165
165
|
source: Optional[pulumi.Input['ChannelSourceArgs']] = None,
|
166
166
|
state: Optional[pulumi.Input[str]] = None,
|
167
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
167
168
|
target: Optional[pulumi.Input['ChannelTargetArgs']] = None,
|
168
169
|
time_created: Optional[pulumi.Input[str]] = None,
|
169
170
|
time_updated: Optional[pulumi.Input[str]] = None):
|
@@ -178,6 +179,7 @@ class _ChannelState:
|
|
178
179
|
:param pulumi.Input[str] lifecycle_details: A message describing the state of the Channel.
|
179
180
|
:param pulumi.Input['ChannelSourceArgs'] source: (Updatable) Parameters detailing how to provision the source for the given Channel.
|
180
181
|
:param pulumi.Input[str] state: The state of the Channel.
|
182
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
181
183
|
:param pulumi.Input['ChannelTargetArgs'] target: (Updatable) Parameters detailing how to provision the target for the given Channel.
|
182
184
|
:param pulumi.Input[str] time_created: The date and time the Channel was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
183
185
|
:param pulumi.Input[str] time_updated: The time the Channel was last updated, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
@@ -200,6 +202,8 @@ class _ChannelState:
|
|
200
202
|
pulumi.set(__self__, "source", source)
|
201
203
|
if state is not None:
|
202
204
|
pulumi.set(__self__, "state", state)
|
205
|
+
if system_tags is not None:
|
206
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
203
207
|
if target is not None:
|
204
208
|
pulumi.set(__self__, "target", target)
|
205
209
|
if time_created is not None:
|
@@ -315,6 +319,18 @@ class _ChannelState:
|
|
315
319
|
def state(self, value: Optional[pulumi.Input[str]]):
|
316
320
|
pulumi.set(self, "state", value)
|
317
321
|
|
322
|
+
@property
|
323
|
+
@pulumi.getter(name="systemTags")
|
324
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
325
|
+
"""
|
326
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
327
|
+
"""
|
328
|
+
return pulumi.get(self, "system_tags")
|
329
|
+
|
330
|
+
@system_tags.setter
|
331
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
332
|
+
pulumi.set(self, "system_tags", value)
|
333
|
+
|
318
334
|
@property
|
319
335
|
@pulumi.getter
|
320
336
|
def target(self) -> Optional[pulumi.Input['ChannelTargetArgs']]:
|
@@ -455,6 +471,7 @@ class Channel(pulumi.CustomResource):
|
|
455
471
|
__props__.__dict__["target"] = target
|
456
472
|
__props__.__dict__["lifecycle_details"] = None
|
457
473
|
__props__.__dict__["state"] = None
|
474
|
+
__props__.__dict__["system_tags"] = None
|
458
475
|
__props__.__dict__["time_created"] = None
|
459
476
|
__props__.__dict__["time_updated"] = None
|
460
477
|
super(Channel, __self__).__init__(
|
@@ -476,6 +493,7 @@ class Channel(pulumi.CustomResource):
|
|
476
493
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
477
494
|
source: Optional[pulumi.Input[Union['ChannelSourceArgs', 'ChannelSourceArgsDict']]] = None,
|
478
495
|
state: Optional[pulumi.Input[str]] = None,
|
496
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
479
497
|
target: Optional[pulumi.Input[Union['ChannelTargetArgs', 'ChannelTargetArgsDict']]] = None,
|
480
498
|
time_created: Optional[pulumi.Input[str]] = None,
|
481
499
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'Channel':
|
@@ -495,6 +513,7 @@ class Channel(pulumi.CustomResource):
|
|
495
513
|
:param pulumi.Input[str] lifecycle_details: A message describing the state of the Channel.
|
496
514
|
:param pulumi.Input[Union['ChannelSourceArgs', 'ChannelSourceArgsDict']] source: (Updatable) Parameters detailing how to provision the source for the given Channel.
|
497
515
|
:param pulumi.Input[str] state: The state of the Channel.
|
516
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
498
517
|
:param pulumi.Input[Union['ChannelTargetArgs', 'ChannelTargetArgsDict']] target: (Updatable) Parameters detailing how to provision the target for the given Channel.
|
499
518
|
:param pulumi.Input[str] time_created: The date and time the Channel was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
500
519
|
:param pulumi.Input[str] time_updated: The time the Channel was last updated, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
@@ -512,6 +531,7 @@ class Channel(pulumi.CustomResource):
|
|
512
531
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
513
532
|
__props__.__dict__["source"] = source
|
514
533
|
__props__.__dict__["state"] = state
|
534
|
+
__props__.__dict__["system_tags"] = system_tags
|
515
535
|
__props__.__dict__["target"] = target
|
516
536
|
__props__.__dict__["time_created"] = time_created
|
517
537
|
__props__.__dict__["time_updated"] = time_updated
|
@@ -589,6 +609,14 @@ class Channel(pulumi.CustomResource):
|
|
589
609
|
"""
|
590
610
|
return pulumi.get(self, "state")
|
591
611
|
|
612
|
+
@property
|
613
|
+
@pulumi.getter(name="systemTags")
|
614
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
615
|
+
"""
|
616
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
617
|
+
"""
|
618
|
+
return pulumi.get(self, "system_tags")
|
619
|
+
|
592
620
|
@property
|
593
621
|
@pulumi.getter
|
594
622
|
def target(self) -> pulumi.Output['outputs.ChannelTarget']:
|
pulumi_oci/mysql/get_channel.py
CHANGED
@@ -27,7 +27,7 @@ class GetChannelResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getChannel.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, channel_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_enabled=None, lifecycle_details=None, sources=None, state=None, targets=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, channel_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_enabled=None, lifecycle_details=None, sources=None, state=None, system_tags=None, targets=None, time_created=None, time_updated=None):
|
31
31
|
if channel_id and not isinstance(channel_id, str):
|
32
32
|
raise TypeError("Expected argument 'channel_id' to be a str")
|
33
33
|
pulumi.set(__self__, "channel_id", channel_id)
|
@@ -61,6 +61,9 @@ class GetChannelResult:
|
|
61
61
|
if state and not isinstance(state, str):
|
62
62
|
raise TypeError("Expected argument 'state' to be a str")
|
63
63
|
pulumi.set(__self__, "state", state)
|
64
|
+
if system_tags and not isinstance(system_tags, dict):
|
65
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
66
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
64
67
|
if targets and not isinstance(targets, list):
|
65
68
|
raise TypeError("Expected argument 'targets' to be a list")
|
66
69
|
pulumi.set(__self__, "targets", targets)
|
@@ -153,6 +156,14 @@ class GetChannelResult:
|
|
153
156
|
"""
|
154
157
|
return pulumi.get(self, "state")
|
155
158
|
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="systemTags")
|
161
|
+
def system_tags(self) -> Mapping[str, str]:
|
162
|
+
"""
|
163
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "system_tags")
|
166
|
+
|
156
167
|
@property
|
157
168
|
@pulumi.getter
|
158
169
|
def targets(self) -> Sequence['outputs.GetChannelTargetResult']:
|
@@ -195,6 +206,7 @@ class AwaitableGetChannelResult(GetChannelResult):
|
|
195
206
|
lifecycle_details=self.lifecycle_details,
|
196
207
|
sources=self.sources,
|
197
208
|
state=self.state,
|
209
|
+
system_tags=self.system_tags,
|
198
210
|
targets=self.targets,
|
199
211
|
time_created=self.time_created,
|
200
212
|
time_updated=self.time_updated)
|
@@ -238,6 +250,7 @@ def get_channel(channel_id: Optional[str] = None,
|
|
238
250
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
239
251
|
sources=pulumi.get(__ret__, 'sources'),
|
240
252
|
state=pulumi.get(__ret__, 'state'),
|
253
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
241
254
|
targets=pulumi.get(__ret__, 'targets'),
|
242
255
|
time_created=pulumi.get(__ret__, 'time_created'),
|
243
256
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
@@ -278,6 +291,7 @@ def get_channel_output(channel_id: Optional[pulumi.Input[str]] = None,
|
|
278
291
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
279
292
|
sources=pulumi.get(__response__, 'sources'),
|
280
293
|
state=pulumi.get(__response__, 'state'),
|
294
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
281
295
|
targets=pulumi.get(__response__, 'targets'),
|
282
296
|
time_created=pulumi.get(__response__, 'time_created'),
|
283
297
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -27,7 +27,7 @@ class GetMysqlBackupResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMysqlBackup.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshot_summaries=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, immediate_source_backup_id=None, lifecycle_details=None, mysql_version=None, original_source_backup_id=None, retention_in_days=None, shape_name=None, source_details=None, state=None, time_copy_created=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshot_summaries=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, immediate_source_backup_id=None, lifecycle_details=None, mysql_version=None, original_source_backup_id=None, retention_in_days=None, shape_name=None, source_details=None, state=None, system_tags=None, time_copy_created=None, time_created=None, time_updated=None):
|
31
31
|
if backup_id and not isinstance(backup_id, str):
|
32
32
|
raise TypeError("Expected argument 'backup_id' to be a str")
|
33
33
|
pulumi.set(__self__, "backup_id", backup_id)
|
@@ -94,6 +94,9 @@ class GetMysqlBackupResult:
|
|
94
94
|
if state and not isinstance(state, str):
|
95
95
|
raise TypeError("Expected argument 'state' to be a str")
|
96
96
|
pulumi.set(__self__, "state", state)
|
97
|
+
if system_tags and not isinstance(system_tags, dict):
|
98
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
99
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
97
100
|
if time_copy_created and not isinstance(time_copy_created, str):
|
98
101
|
raise TypeError("Expected argument 'time_copy_created' to be a str")
|
99
102
|
pulumi.set(__self__, "time_copy_created", time_copy_created)
|
@@ -271,6 +274,14 @@ class GetMysqlBackupResult:
|
|
271
274
|
"""
|
272
275
|
return pulumi.get(self, "state")
|
273
276
|
|
277
|
+
@property
|
278
|
+
@pulumi.getter(name="systemTags")
|
279
|
+
def system_tags(self) -> Mapping[str, str]:
|
280
|
+
"""
|
281
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "system_tags")
|
284
|
+
|
274
285
|
@property
|
275
286
|
@pulumi.getter(name="timeCopyCreated")
|
276
287
|
def time_copy_created(self) -> str:
|
@@ -324,6 +335,7 @@ class AwaitableGetMysqlBackupResult(GetMysqlBackupResult):
|
|
324
335
|
shape_name=self.shape_name,
|
325
336
|
source_details=self.source_details,
|
326
337
|
state=self.state,
|
338
|
+
system_tags=self.system_tags,
|
327
339
|
time_copy_created=self.time_copy_created,
|
328
340
|
time_created=self.time_created,
|
329
341
|
time_updated=self.time_updated)
|
@@ -376,6 +388,7 @@ def get_mysql_backup(backup_id: Optional[str] = None,
|
|
376
388
|
shape_name=pulumi.get(__ret__, 'shape_name'),
|
377
389
|
source_details=pulumi.get(__ret__, 'source_details'),
|
378
390
|
state=pulumi.get(__ret__, 'state'),
|
391
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
379
392
|
time_copy_created=pulumi.get(__ret__, 'time_copy_created'),
|
380
393
|
time_created=pulumi.get(__ret__, 'time_created'),
|
381
394
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
@@ -425,6 +438,7 @@ def get_mysql_backup_output(backup_id: Optional[pulumi.Input[str]] = None,
|
|
425
438
|
shape_name=pulumi.get(__response__, 'shape_name'),
|
426
439
|
source_details=pulumi.get(__response__, 'source_details'),
|
427
440
|
state=pulumi.get(__response__, 'state'),
|
441
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
428
442
|
time_copy_created=pulumi.get(__response__, 'time_copy_created'),
|
429
443
|
time_created=pulumi.get(__response__, 'time_created'),
|
430
444
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -27,7 +27,7 @@ class GetMysqlConfigurationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMysqlConfiguration.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, configuration_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, init_variables=None, parent_configuration_id=None, shape_name=None, state=None, time_created=None, time_updated=None, type=None, variables=None):
|
30
|
+
def __init__(__self__, compartment_id=None, configuration_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, init_variables=None, parent_configuration_id=None, shape_name=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None, variables=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -61,6 +61,9 @@ class GetMysqlConfigurationResult:
|
|
61
61
|
if state and not isinstance(state, str):
|
62
62
|
raise TypeError("Expected argument 'state' to be a str")
|
63
63
|
pulumi.set(__self__, "state", state)
|
64
|
+
if system_tags and not isinstance(system_tags, dict):
|
65
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
66
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
64
67
|
if time_created and not isinstance(time_created, str):
|
65
68
|
raise TypeError("Expected argument 'time_created' to be a str")
|
66
69
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -159,6 +162,14 @@ class GetMysqlConfigurationResult:
|
|
159
162
|
"""
|
160
163
|
return pulumi.get(self, "state")
|
161
164
|
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="systemTags")
|
167
|
+
def system_tags(self) -> Mapping[str, str]:
|
168
|
+
"""
|
169
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "system_tags")
|
172
|
+
|
162
173
|
@property
|
163
174
|
@pulumi.getter(name="timeCreated")
|
164
175
|
def time_created(self) -> str:
|
@@ -209,6 +220,7 @@ class AwaitableGetMysqlConfigurationResult(GetMysqlConfigurationResult):
|
|
209
220
|
parent_configuration_id=self.parent_configuration_id,
|
210
221
|
shape_name=self.shape_name,
|
211
222
|
state=self.state,
|
223
|
+
system_tags=self.system_tags,
|
212
224
|
time_created=self.time_created,
|
213
225
|
time_updated=self.time_updated,
|
214
226
|
type=self.type,
|
@@ -251,6 +263,7 @@ def get_mysql_configuration(configuration_id: Optional[str] = None,
|
|
251
263
|
parent_configuration_id=pulumi.get(__ret__, 'parent_configuration_id'),
|
252
264
|
shape_name=pulumi.get(__ret__, 'shape_name'),
|
253
265
|
state=pulumi.get(__ret__, 'state'),
|
266
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
254
267
|
time_created=pulumi.get(__ret__, 'time_created'),
|
255
268
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
256
269
|
type=pulumi.get(__ret__, 'type'),
|
@@ -290,6 +303,7 @@ def get_mysql_configuration_output(configuration_id: Optional[pulumi.Input[str]]
|
|
290
303
|
parent_configuration_id=pulumi.get(__response__, 'parent_configuration_id'),
|
291
304
|
shape_name=pulumi.get(__response__, 'shape_name'),
|
292
305
|
state=pulumi.get(__response__, 'state'),
|
306
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
293
307
|
time_created=pulumi.get(__response__, 'time_created'),
|
294
308
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
295
309
|
type=pulumi.get(__response__, 'type'),
|
@@ -27,7 +27,7 @@ class GetMysqlDbSystemResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMysqlDbSystem.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, access_mode=None, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, customer_contacts=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, database_mode=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, read_endpoints=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, access_mode=None, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, customer_contacts=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, database_mode=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, read_endpoints=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
|
31
31
|
if access_mode and not isinstance(access_mode, str):
|
32
32
|
raise TypeError("Expected argument 'access_mode' to be a str")
|
33
33
|
pulumi.set(__self__, "access_mode", access_mode)
|
@@ -154,6 +154,9 @@ class GetMysqlDbSystemResult:
|
|
154
154
|
if subnet_id and not isinstance(subnet_id, str):
|
155
155
|
raise TypeError("Expected argument 'subnet_id' to be a str")
|
156
156
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
157
|
+
if system_tags and not isinstance(system_tags, dict):
|
158
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
159
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
157
160
|
if time_created and not isinstance(time_created, str):
|
158
161
|
raise TypeError("Expected argument 'time_created' to be a str")
|
159
162
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -492,6 +495,14 @@ class GetMysqlDbSystemResult:
|
|
492
495
|
"""
|
493
496
|
return pulumi.get(self, "subnet_id")
|
494
497
|
|
498
|
+
@property
|
499
|
+
@pulumi.getter(name="systemTags")
|
500
|
+
def system_tags(self) -> Mapping[str, str]:
|
501
|
+
"""
|
502
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
503
|
+
"""
|
504
|
+
return pulumi.get(self, "system_tags")
|
505
|
+
|
495
506
|
@property
|
496
507
|
@pulumi.getter(name="timeCreated")
|
497
508
|
def time_created(self) -> str:
|
@@ -557,6 +568,7 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
|
|
557
568
|
sources=self.sources,
|
558
569
|
state=self.state,
|
559
570
|
subnet_id=self.subnet_id,
|
571
|
+
system_tags=self.system_tags,
|
560
572
|
time_created=self.time_created,
|
561
573
|
time_updated=self.time_updated)
|
562
574
|
|
@@ -628,6 +640,7 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
|
|
628
640
|
sources=pulumi.get(__ret__, 'sources'),
|
629
641
|
state=pulumi.get(__ret__, 'state'),
|
630
642
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
643
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
631
644
|
time_created=pulumi.get(__ret__, 'time_created'),
|
632
645
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
633
646
|
def get_mysql_db_system_output(db_system_id: Optional[pulumi.Input[str]] = None,
|
@@ -696,5 +709,6 @@ def get_mysql_db_system_output(db_system_id: Optional[pulumi.Input[str]] = None,
|
|
696
709
|
sources=pulumi.get(__response__, 'sources'),
|
697
710
|
state=pulumi.get(__response__, 'state'),
|
698
711
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
712
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
699
713
|
time_created=pulumi.get(__response__, 'time_created'),
|
700
714
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
pulumi_oci/mysql/mysql_backup.py
CHANGED
@@ -205,6 +205,7 @@ class _MysqlBackupState:
|
|
205
205
|
shape_name: Optional[pulumi.Input[str]] = None,
|
206
206
|
source_details: Optional[pulumi.Input['MysqlBackupSourceDetailsArgs']] = None,
|
207
207
|
state: Optional[pulumi.Input[str]] = None,
|
208
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
208
209
|
time_copy_created: Optional[pulumi.Input[str]] = None,
|
209
210
|
time_created: Optional[pulumi.Input[str]] = None,
|
210
211
|
time_updated: Optional[pulumi.Input[str]] = None):
|
@@ -229,6 +230,7 @@ class _MysqlBackupState:
|
|
229
230
|
:param pulumi.Input[str] shape_name: The shape of the DB System instance used for backup.
|
230
231
|
:param pulumi.Input['MysqlBackupSourceDetailsArgs'] source_details: Details of backup source in the cloud.
|
231
232
|
:param pulumi.Input[str] state: The state of the backup.
|
233
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
232
234
|
:param pulumi.Input[str] time_copy_created: The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
233
235
|
:param pulumi.Input[str] time_created: The time the backup record was created.
|
234
236
|
:param pulumi.Input[str] time_updated: The time at which the backup was updated.
|
@@ -273,6 +275,8 @@ class _MysqlBackupState:
|
|
273
275
|
pulumi.set(__self__, "source_details", source_details)
|
274
276
|
if state is not None:
|
275
277
|
pulumi.set(__self__, "state", state)
|
278
|
+
if system_tags is not None:
|
279
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
276
280
|
if time_copy_created is not None:
|
277
281
|
pulumi.set(__self__, "time_copy_created", time_copy_created)
|
278
282
|
if time_created is not None:
|
@@ -517,6 +521,18 @@ class _MysqlBackupState:
|
|
517
521
|
def state(self, value: Optional[pulumi.Input[str]]):
|
518
522
|
pulumi.set(self, "state", value)
|
519
523
|
|
524
|
+
@property
|
525
|
+
@pulumi.getter(name="systemTags")
|
526
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
527
|
+
"""
|
528
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
529
|
+
"""
|
530
|
+
return pulumi.get(self, "system_tags")
|
531
|
+
|
532
|
+
@system_tags.setter
|
533
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
534
|
+
pulumi.set(self, "system_tags", value)
|
535
|
+
|
520
536
|
@property
|
521
537
|
@pulumi.getter(name="timeCopyCreated")
|
522
538
|
def time_copy_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -708,6 +724,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
708
724
|
__props__.__dict__["original_source_backup_id"] = None
|
709
725
|
__props__.__dict__["shape_name"] = None
|
710
726
|
__props__.__dict__["state"] = None
|
727
|
+
__props__.__dict__["system_tags"] = None
|
711
728
|
__props__.__dict__["time_copy_created"] = None
|
712
729
|
__props__.__dict__["time_created"] = None
|
713
730
|
__props__.__dict__["time_updated"] = None
|
@@ -741,6 +758,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
741
758
|
shape_name: Optional[pulumi.Input[str]] = None,
|
742
759
|
source_details: Optional[pulumi.Input[Union['MysqlBackupSourceDetailsArgs', 'MysqlBackupSourceDetailsArgsDict']]] = None,
|
743
760
|
state: Optional[pulumi.Input[str]] = None,
|
761
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
744
762
|
time_copy_created: Optional[pulumi.Input[str]] = None,
|
745
763
|
time_created: Optional[pulumi.Input[str]] = None,
|
746
764
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'MysqlBackup':
|
@@ -770,6 +788,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
770
788
|
:param pulumi.Input[str] shape_name: The shape of the DB System instance used for backup.
|
771
789
|
:param pulumi.Input[Union['MysqlBackupSourceDetailsArgs', 'MysqlBackupSourceDetailsArgsDict']] source_details: Details of backup source in the cloud.
|
772
790
|
:param pulumi.Input[str] state: The state of the backup.
|
791
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
773
792
|
:param pulumi.Input[str] time_copy_created: The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
774
793
|
:param pulumi.Input[str] time_created: The time the backup record was created.
|
775
794
|
:param pulumi.Input[str] time_updated: The time at which the backup was updated.
|
@@ -798,6 +817,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
798
817
|
__props__.__dict__["shape_name"] = shape_name
|
799
818
|
__props__.__dict__["source_details"] = source_details
|
800
819
|
__props__.__dict__["state"] = state
|
820
|
+
__props__.__dict__["system_tags"] = system_tags
|
801
821
|
__props__.__dict__["time_copy_created"] = time_copy_created
|
802
822
|
__props__.__dict__["time_created"] = time_created
|
803
823
|
__props__.__dict__["time_updated"] = time_updated
|
@@ -960,6 +980,14 @@ class MysqlBackup(pulumi.CustomResource):
|
|
960
980
|
"""
|
961
981
|
return pulumi.get(self, "state")
|
962
982
|
|
983
|
+
@property
|
984
|
+
@pulumi.getter(name="systemTags")
|
985
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
986
|
+
"""
|
987
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
988
|
+
"""
|
989
|
+
return pulumi.get(self, "system_tags")
|
990
|
+
|
963
991
|
@property
|
964
992
|
@pulumi.getter(name="timeCopyCreated")
|
965
993
|
def time_copy_created(self) -> pulumi.Output[str]:
|