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
@@ -0,0 +1,253 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetSensitiveTypeGroupResult',
|
19
|
+
'AwaitableGetSensitiveTypeGroupResult',
|
20
|
+
'get_sensitive_type_group',
|
21
|
+
'get_sensitive_type_group_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetSensitiveTypeGroupResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getSensitiveTypeGroup.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, sensitive_type_count=None, sensitive_type_group_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
if compartment_id and not isinstance(compartment_id, str):
|
31
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
34
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
35
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
36
|
+
if description and not isinstance(description, str):
|
37
|
+
raise TypeError("Expected argument 'description' to be a str")
|
38
|
+
pulumi.set(__self__, "description", description)
|
39
|
+
if display_name and not isinstance(display_name, str):
|
40
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
41
|
+
pulumi.set(__self__, "display_name", display_name)
|
42
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
43
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
44
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
45
|
+
if id and not isinstance(id, str):
|
46
|
+
raise TypeError("Expected argument 'id' to be a str")
|
47
|
+
pulumi.set(__self__, "id", id)
|
48
|
+
if sensitive_type_count and not isinstance(sensitive_type_count, int):
|
49
|
+
raise TypeError("Expected argument 'sensitive_type_count' to be a int")
|
50
|
+
pulumi.set(__self__, "sensitive_type_count", sensitive_type_count)
|
51
|
+
if sensitive_type_group_id and not isinstance(sensitive_type_group_id, str):
|
52
|
+
raise TypeError("Expected argument 'sensitive_type_group_id' to be a str")
|
53
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
54
|
+
if state and not isinstance(state, str):
|
55
|
+
raise TypeError("Expected argument 'state' to be a str")
|
56
|
+
pulumi.set(__self__, "state", state)
|
57
|
+
if system_tags and not isinstance(system_tags, dict):
|
58
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
59
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
60
|
+
if time_created and not isinstance(time_created, str):
|
61
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
62
|
+
pulumi.set(__self__, "time_created", time_created)
|
63
|
+
if time_updated and not isinstance(time_updated, str):
|
64
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
65
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="compartmentId")
|
69
|
+
def compartment_id(self) -> str:
|
70
|
+
"""
|
71
|
+
The OCID of the compartment that contains the sensitive type group.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "compartment_id")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="definedTags")
|
77
|
+
def defined_tags(self) -> Mapping[str, str]:
|
78
|
+
"""
|
79
|
+
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"}`
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "defined_tags")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter
|
85
|
+
def description(self) -> str:
|
86
|
+
"""
|
87
|
+
The description of the sensitive type group.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "description")
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="displayName")
|
93
|
+
def display_name(self) -> str:
|
94
|
+
"""
|
95
|
+
The display name of the sensitive type group.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "display_name")
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="freeformTags")
|
101
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
102
|
+
"""
|
103
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "freeform_tags")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def id(self) -> str:
|
110
|
+
"""
|
111
|
+
The OCID of the sensitive type group.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "id")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="sensitiveTypeCount")
|
117
|
+
def sensitive_type_count(self) -> int:
|
118
|
+
"""
|
119
|
+
The number of sensitive types in the specified sensitive type group.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "sensitive_type_count")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
125
|
+
def sensitive_type_group_id(self) -> str:
|
126
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
127
|
+
|
128
|
+
@property
|
129
|
+
@pulumi.getter
|
130
|
+
def state(self) -> str:
|
131
|
+
"""
|
132
|
+
The current state of the sensitive type group.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "state")
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="systemTags")
|
138
|
+
def system_tags(self) -> Mapping[str, str]:
|
139
|
+
"""
|
140
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "system_tags")
|
143
|
+
|
144
|
+
@property
|
145
|
+
@pulumi.getter(name="timeCreated")
|
146
|
+
def time_created(self) -> str:
|
147
|
+
"""
|
148
|
+
The date and time the sensitive type group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "time_created")
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="timeUpdated")
|
154
|
+
def time_updated(self) -> str:
|
155
|
+
"""
|
156
|
+
The date and time the sensitive type group was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "time_updated")
|
159
|
+
|
160
|
+
|
161
|
+
class AwaitableGetSensitiveTypeGroupResult(GetSensitiveTypeGroupResult):
|
162
|
+
# pylint: disable=using-constant-test
|
163
|
+
def __await__(self):
|
164
|
+
if False:
|
165
|
+
yield self
|
166
|
+
return GetSensitiveTypeGroupResult(
|
167
|
+
compartment_id=self.compartment_id,
|
168
|
+
defined_tags=self.defined_tags,
|
169
|
+
description=self.description,
|
170
|
+
display_name=self.display_name,
|
171
|
+
freeform_tags=self.freeform_tags,
|
172
|
+
id=self.id,
|
173
|
+
sensitive_type_count=self.sensitive_type_count,
|
174
|
+
sensitive_type_group_id=self.sensitive_type_group_id,
|
175
|
+
state=self.state,
|
176
|
+
system_tags=self.system_tags,
|
177
|
+
time_created=self.time_created,
|
178
|
+
time_updated=self.time_updated)
|
179
|
+
|
180
|
+
|
181
|
+
def get_sensitive_type_group(sensitive_type_group_id: Optional[str] = None,
|
182
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSensitiveTypeGroupResult:
|
183
|
+
"""
|
184
|
+
This data source provides details about a specific Sensitive Type Group resource in Oracle Cloud Infrastructure Data Safe service.
|
185
|
+
|
186
|
+
Gets the details of the specified sensitive type group.
|
187
|
+
|
188
|
+
## Example Usage
|
189
|
+
|
190
|
+
```python
|
191
|
+
import pulumi
|
192
|
+
import pulumi_oci as oci
|
193
|
+
|
194
|
+
test_sensitive_type_group = oci.DataSafe.get_sensitive_type_group(sensitive_type_group_id=test_sensitive_type_group_oci_data_safe_sensitive_type_group["id"])
|
195
|
+
```
|
196
|
+
|
197
|
+
|
198
|
+
:param str sensitive_type_group_id: The OCID of the sensitive type group.
|
199
|
+
"""
|
200
|
+
__args__ = dict()
|
201
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
202
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
203
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSensitiveTypeGroup:getSensitiveTypeGroup', __args__, opts=opts, typ=GetSensitiveTypeGroupResult).value
|
204
|
+
|
205
|
+
return AwaitableGetSensitiveTypeGroupResult(
|
206
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
207
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
208
|
+
description=pulumi.get(__ret__, 'description'),
|
209
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
210
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
211
|
+
id=pulumi.get(__ret__, 'id'),
|
212
|
+
sensitive_type_count=pulumi.get(__ret__, 'sensitive_type_count'),
|
213
|
+
sensitive_type_group_id=pulumi.get(__ret__, 'sensitive_type_group_id'),
|
214
|
+
state=pulumi.get(__ret__, 'state'),
|
215
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
216
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
217
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
218
|
+
def get_sensitive_type_group_output(sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
|
219
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSensitiveTypeGroupResult]:
|
220
|
+
"""
|
221
|
+
This data source provides details about a specific Sensitive Type Group resource in Oracle Cloud Infrastructure Data Safe service.
|
222
|
+
|
223
|
+
Gets the details of the specified sensitive type group.
|
224
|
+
|
225
|
+
## Example Usage
|
226
|
+
|
227
|
+
```python
|
228
|
+
import pulumi
|
229
|
+
import pulumi_oci as oci
|
230
|
+
|
231
|
+
test_sensitive_type_group = oci.DataSafe.get_sensitive_type_group(sensitive_type_group_id=test_sensitive_type_group_oci_data_safe_sensitive_type_group["id"])
|
232
|
+
```
|
233
|
+
|
234
|
+
|
235
|
+
:param str sensitive_type_group_id: The OCID of the sensitive type group.
|
236
|
+
"""
|
237
|
+
__args__ = dict()
|
238
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
239
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
240
|
+
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getSensitiveTypeGroup:getSensitiveTypeGroup', __args__, opts=opts, typ=GetSensitiveTypeGroupResult)
|
241
|
+
return __ret__.apply(lambda __response__: GetSensitiveTypeGroupResult(
|
242
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
243
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
244
|
+
description=pulumi.get(__response__, 'description'),
|
245
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
246
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
247
|
+
id=pulumi.get(__response__, 'id'),
|
248
|
+
sensitive_type_count=pulumi.get(__response__, 'sensitive_type_count'),
|
249
|
+
sensitive_type_group_id=pulumi.get(__response__, 'sensitive_type_group_id'),
|
250
|
+
state=pulumi.get(__response__, 'state'),
|
251
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
252
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
253
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,166 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesResult',
|
21
|
+
'AwaitableGetSensitiveTypeGroupGroupedSensitiveTypesResult',
|
22
|
+
'get_sensitive_type_group_grouped_sensitive_types',
|
23
|
+
'get_sensitive_type_group_grouped_sensitive_types_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getSensitiveTypeGroupGroupedSensitiveTypes.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, filters=None, grouped_sensitive_type_collections=None, id=None, sensitive_type_group_id=None, sensitive_type_id=None):
|
32
|
+
if filters and not isinstance(filters, list):
|
33
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
34
|
+
pulumi.set(__self__, "filters", filters)
|
35
|
+
if grouped_sensitive_type_collections and not isinstance(grouped_sensitive_type_collections, list):
|
36
|
+
raise TypeError("Expected argument 'grouped_sensitive_type_collections' to be a list")
|
37
|
+
pulumi.set(__self__, "grouped_sensitive_type_collections", grouped_sensitive_type_collections)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if sensitive_type_group_id and not isinstance(sensitive_type_group_id, str):
|
42
|
+
raise TypeError("Expected argument 'sensitive_type_group_id' to be a str")
|
43
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
44
|
+
if sensitive_type_id and not isinstance(sensitive_type_id, str):
|
45
|
+
raise TypeError("Expected argument 'sensitive_type_id' to be a str")
|
46
|
+
pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter
|
50
|
+
def filters(self) -> Optional[Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesFilterResult']]:
|
51
|
+
return pulumi.get(self, "filters")
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="groupedSensitiveTypeCollections")
|
55
|
+
def grouped_sensitive_type_collections(self) -> Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionResult']:
|
56
|
+
"""
|
57
|
+
The list of grouped_sensitive_type_collection.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "grouped_sensitive_type_collections")
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter
|
63
|
+
def id(self) -> str:
|
64
|
+
"""
|
65
|
+
The provider-assigned unique ID for this managed resource.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
71
|
+
def sensitive_type_group_id(self) -> str:
|
72
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="sensitiveTypeId")
|
76
|
+
def sensitive_type_id(self) -> Optional[str]:
|
77
|
+
"""
|
78
|
+
The OCID of the sensitive type.
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "sensitive_type_id")
|
81
|
+
|
82
|
+
|
83
|
+
class AwaitableGetSensitiveTypeGroupGroupedSensitiveTypesResult(GetSensitiveTypeGroupGroupedSensitiveTypesResult):
|
84
|
+
# pylint: disable=using-constant-test
|
85
|
+
def __await__(self):
|
86
|
+
if False:
|
87
|
+
yield self
|
88
|
+
return GetSensitiveTypeGroupGroupedSensitiveTypesResult(
|
89
|
+
filters=self.filters,
|
90
|
+
grouped_sensitive_type_collections=self.grouped_sensitive_type_collections,
|
91
|
+
id=self.id,
|
92
|
+
sensitive_type_group_id=self.sensitive_type_group_id,
|
93
|
+
sensitive_type_id=self.sensitive_type_id)
|
94
|
+
|
95
|
+
|
96
|
+
def get_sensitive_type_group_grouped_sensitive_types(filters: Optional[Sequence[Union['GetSensitiveTypeGroupGroupedSensitiveTypesFilterArgs', 'GetSensitiveTypeGroupGroupedSensitiveTypesFilterArgsDict']]] = None,
|
97
|
+
sensitive_type_group_id: Optional[str] = None,
|
98
|
+
sensitive_type_id: Optional[str] = None,
|
99
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSensitiveTypeGroupGroupedSensitiveTypesResult:
|
100
|
+
"""
|
101
|
+
This data source provides the list of Sensitive Type Group Grouped Sensitive Types in Oracle Cloud Infrastructure Data Safe service.
|
102
|
+
|
103
|
+
Gets the list of sensitive type Ids present in the specified sensitive type group.
|
104
|
+
|
105
|
+
## Example Usage
|
106
|
+
|
107
|
+
```python
|
108
|
+
import pulumi
|
109
|
+
import pulumi_oci as oci
|
110
|
+
|
111
|
+
test_sensitive_type_group_grouped_sensitive_types = oci.DataSafe.get_sensitive_type_group_grouped_sensitive_types(sensitive_type_group_id=test_sensitive_type_group["id"],
|
112
|
+
sensitive_type_id=test_sensitive_type["id"])
|
113
|
+
```
|
114
|
+
|
115
|
+
|
116
|
+
:param str sensitive_type_group_id: The OCID of the sensitive type group.
|
117
|
+
:param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
|
118
|
+
"""
|
119
|
+
__args__ = dict()
|
120
|
+
__args__['filters'] = filters
|
121
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
122
|
+
__args__['sensitiveTypeId'] = sensitive_type_id
|
123
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
124
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSensitiveTypeGroupGroupedSensitiveTypes:getSensitiveTypeGroupGroupedSensitiveTypes', __args__, opts=opts, typ=GetSensitiveTypeGroupGroupedSensitiveTypesResult).value
|
125
|
+
|
126
|
+
return AwaitableGetSensitiveTypeGroupGroupedSensitiveTypesResult(
|
127
|
+
filters=pulumi.get(__ret__, 'filters'),
|
128
|
+
grouped_sensitive_type_collections=pulumi.get(__ret__, 'grouped_sensitive_type_collections'),
|
129
|
+
id=pulumi.get(__ret__, 'id'),
|
130
|
+
sensitive_type_group_id=pulumi.get(__ret__, 'sensitive_type_group_id'),
|
131
|
+
sensitive_type_id=pulumi.get(__ret__, 'sensitive_type_id'))
|
132
|
+
def get_sensitive_type_group_grouped_sensitive_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSensitiveTypeGroupGroupedSensitiveTypesFilterArgs', 'GetSensitiveTypeGroupGroupedSensitiveTypesFilterArgsDict']]]]] = None,
|
133
|
+
sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
|
134
|
+
sensitive_type_id: Optional[pulumi.Input[Optional[str]]] = None,
|
135
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSensitiveTypeGroupGroupedSensitiveTypesResult]:
|
136
|
+
"""
|
137
|
+
This data source provides the list of Sensitive Type Group Grouped Sensitive Types in Oracle Cloud Infrastructure Data Safe service.
|
138
|
+
|
139
|
+
Gets the list of sensitive type Ids present in the specified sensitive type group.
|
140
|
+
|
141
|
+
## Example Usage
|
142
|
+
|
143
|
+
```python
|
144
|
+
import pulumi
|
145
|
+
import pulumi_oci as oci
|
146
|
+
|
147
|
+
test_sensitive_type_group_grouped_sensitive_types = oci.DataSafe.get_sensitive_type_group_grouped_sensitive_types(sensitive_type_group_id=test_sensitive_type_group["id"],
|
148
|
+
sensitive_type_id=test_sensitive_type["id"])
|
149
|
+
```
|
150
|
+
|
151
|
+
|
152
|
+
:param str sensitive_type_group_id: The OCID of the sensitive type group.
|
153
|
+
:param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
|
154
|
+
"""
|
155
|
+
__args__ = dict()
|
156
|
+
__args__['filters'] = filters
|
157
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
158
|
+
__args__['sensitiveTypeId'] = sensitive_type_id
|
159
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
|
+
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getSensitiveTypeGroupGroupedSensitiveTypes:getSensitiveTypeGroupGroupedSensitiveTypes', __args__, opts=opts, typ=GetSensitiveTypeGroupGroupedSensitiveTypesResult)
|
161
|
+
return __ret__.apply(lambda __response__: GetSensitiveTypeGroupGroupedSensitiveTypesResult(
|
162
|
+
filters=pulumi.get(__response__, 'filters'),
|
163
|
+
grouped_sensitive_type_collections=pulumi.get(__response__, 'grouped_sensitive_type_collections'),
|
164
|
+
id=pulumi.get(__response__, 'id'),
|
165
|
+
sensitive_type_group_id=pulumi.get(__response__, 'sensitive_type_group_id'),
|
166
|
+
sensitive_type_id=pulumi.get(__response__, 'sensitive_type_id')))
|