pulumi-oci 2.26.0a1741415311__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.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,294 @@
|
|
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
|
+
'GetSensitiveTypeGroupsResult',
|
21
|
+
'AwaitableGetSensitiveTypeGroupsResult',
|
22
|
+
'get_sensitive_type_groups',
|
23
|
+
'get_sensitive_type_groups_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetSensitiveTypeGroupsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getSensitiveTypeGroups.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, display_name=None, filters=None, id=None, sensitive_type_group_collections=None, sensitive_type_group_id=None, state=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None):
|
32
|
+
if access_level and not isinstance(access_level, str):
|
33
|
+
raise TypeError("Expected argument 'access_level' to be a str")
|
34
|
+
pulumi.set(__self__, "access_level", access_level)
|
35
|
+
if compartment_id and not isinstance(compartment_id, str):
|
36
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
if compartment_id_in_subtree and not isinstance(compartment_id_in_subtree, bool):
|
39
|
+
raise TypeError("Expected argument 'compartment_id_in_subtree' to be a bool")
|
40
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
41
|
+
if display_name and not isinstance(display_name, str):
|
42
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
43
|
+
pulumi.set(__self__, "display_name", display_name)
|
44
|
+
if filters and not isinstance(filters, list):
|
45
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
46
|
+
pulumi.set(__self__, "filters", filters)
|
47
|
+
if id and not isinstance(id, str):
|
48
|
+
raise TypeError("Expected argument 'id' to be a str")
|
49
|
+
pulumi.set(__self__, "id", id)
|
50
|
+
if sensitive_type_group_collections and not isinstance(sensitive_type_group_collections, list):
|
51
|
+
raise TypeError("Expected argument 'sensitive_type_group_collections' to be a list")
|
52
|
+
pulumi.set(__self__, "sensitive_type_group_collections", sensitive_type_group_collections)
|
53
|
+
if sensitive_type_group_id and not isinstance(sensitive_type_group_id, str):
|
54
|
+
raise TypeError("Expected argument 'sensitive_type_group_id' to be a str")
|
55
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
56
|
+
if state and not isinstance(state, str):
|
57
|
+
raise TypeError("Expected argument 'state' to be a str")
|
58
|
+
pulumi.set(__self__, "state", state)
|
59
|
+
if time_created_greater_than_or_equal_to and not isinstance(time_created_greater_than_or_equal_to, str):
|
60
|
+
raise TypeError("Expected argument 'time_created_greater_than_or_equal_to' to be a str")
|
61
|
+
pulumi.set(__self__, "time_created_greater_than_or_equal_to", time_created_greater_than_or_equal_to)
|
62
|
+
if time_created_less_than and not isinstance(time_created_less_than, str):
|
63
|
+
raise TypeError("Expected argument 'time_created_less_than' to be a str")
|
64
|
+
pulumi.set(__self__, "time_created_less_than", time_created_less_than)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="accessLevel")
|
68
|
+
def access_level(self) -> Optional[str]:
|
69
|
+
return pulumi.get(self, "access_level")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter(name="compartmentId")
|
73
|
+
def compartment_id(self) -> str:
|
74
|
+
"""
|
75
|
+
The OCID of the compartment that contains the sensitive type group.
|
76
|
+
"""
|
77
|
+
return pulumi.get(self, "compartment_id")
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
81
|
+
def compartment_id_in_subtree(self) -> Optional[bool]:
|
82
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
83
|
+
|
84
|
+
@property
|
85
|
+
@pulumi.getter(name="displayName")
|
86
|
+
def display_name(self) -> Optional[str]:
|
87
|
+
"""
|
88
|
+
The display name of the sensitive type group.
|
89
|
+
"""
|
90
|
+
return pulumi.get(self, "display_name")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter
|
94
|
+
def filters(self) -> Optional[Sequence['outputs.GetSensitiveTypeGroupsFilterResult']]:
|
95
|
+
return pulumi.get(self, "filters")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter
|
99
|
+
def id(self) -> str:
|
100
|
+
"""
|
101
|
+
The provider-assigned unique ID for this managed resource.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "id")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter(name="sensitiveTypeGroupCollections")
|
107
|
+
def sensitive_type_group_collections(self) -> Sequence['outputs.GetSensitiveTypeGroupsSensitiveTypeGroupCollectionResult']:
|
108
|
+
"""
|
109
|
+
The list of sensitive_type_group_collection.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "sensitive_type_group_collections")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
115
|
+
def sensitive_type_group_id(self) -> Optional[str]:
|
116
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter
|
120
|
+
def state(self) -> Optional[str]:
|
121
|
+
"""
|
122
|
+
The current state of the sensitive type group.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "state")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="timeCreatedGreaterThanOrEqualTo")
|
128
|
+
def time_created_greater_than_or_equal_to(self) -> Optional[str]:
|
129
|
+
return pulumi.get(self, "time_created_greater_than_or_equal_to")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="timeCreatedLessThan")
|
133
|
+
def time_created_less_than(self) -> Optional[str]:
|
134
|
+
return pulumi.get(self, "time_created_less_than")
|
135
|
+
|
136
|
+
|
137
|
+
class AwaitableGetSensitiveTypeGroupsResult(GetSensitiveTypeGroupsResult):
|
138
|
+
# pylint: disable=using-constant-test
|
139
|
+
def __await__(self):
|
140
|
+
if False:
|
141
|
+
yield self
|
142
|
+
return GetSensitiveTypeGroupsResult(
|
143
|
+
access_level=self.access_level,
|
144
|
+
compartment_id=self.compartment_id,
|
145
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
146
|
+
display_name=self.display_name,
|
147
|
+
filters=self.filters,
|
148
|
+
id=self.id,
|
149
|
+
sensitive_type_group_collections=self.sensitive_type_group_collections,
|
150
|
+
sensitive_type_group_id=self.sensitive_type_group_id,
|
151
|
+
state=self.state,
|
152
|
+
time_created_greater_than_or_equal_to=self.time_created_greater_than_or_equal_to,
|
153
|
+
time_created_less_than=self.time_created_less_than)
|
154
|
+
|
155
|
+
|
156
|
+
def get_sensitive_type_groups(access_level: Optional[str] = None,
|
157
|
+
compartment_id: Optional[str] = None,
|
158
|
+
compartment_id_in_subtree: Optional[bool] = None,
|
159
|
+
display_name: Optional[str] = None,
|
160
|
+
filters: Optional[Sequence[Union['GetSensitiveTypeGroupsFilterArgs', 'GetSensitiveTypeGroupsFilterArgsDict']]] = None,
|
161
|
+
sensitive_type_group_id: Optional[str] = None,
|
162
|
+
state: Optional[str] = None,
|
163
|
+
time_created_greater_than_or_equal_to: Optional[str] = None,
|
164
|
+
time_created_less_than: Optional[str] = None,
|
165
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSensitiveTypeGroupsResult:
|
166
|
+
"""
|
167
|
+
This data source provides the list of Sensitive Type Groups in Oracle Cloud Infrastructure Data Safe service.
|
168
|
+
|
169
|
+
Gets a list of sensitive type groups based on the specified query parameters.
|
170
|
+
|
171
|
+
## Example Usage
|
172
|
+
|
173
|
+
```python
|
174
|
+
import pulumi
|
175
|
+
import pulumi_oci as oci
|
176
|
+
|
177
|
+
test_sensitive_type_groups = oci.DataSafe.get_sensitive_type_groups(compartment_id=compartment_id,
|
178
|
+
access_level=sensitive_type_group_access_level,
|
179
|
+
compartment_id_in_subtree=sensitive_type_group_compartment_id_in_subtree,
|
180
|
+
display_name=sensitive_type_group_display_name,
|
181
|
+
sensitive_type_group_id=test_sensitive_type_group["id"],
|
182
|
+
state=sensitive_type_group_state,
|
183
|
+
time_created_greater_than_or_equal_to=sensitive_type_group_time_created_greater_than_or_equal_to,
|
184
|
+
time_created_less_than=sensitive_type_group_time_created_less_than)
|
185
|
+
```
|
186
|
+
|
187
|
+
|
188
|
+
:param str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
|
189
|
+
:param str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
190
|
+
:param bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
191
|
+
:param str display_name: A filter to return only resources that match the specified display name.
|
192
|
+
:param str sensitive_type_group_id: An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
|
193
|
+
:param str state: A filter to return only the resources that match the specified lifecycle state.
|
194
|
+
:param str time_created_greater_than_or_equal_to: A filter to return only the resources that were created after the specified date and time, as defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
|
195
|
+
|
196
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
197
|
+
:param str time_created_less_than: Search for resources that were created before a specific date. Specifying this parameter corresponding `timeCreatedLessThan` parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
198
|
+
|
199
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
200
|
+
"""
|
201
|
+
__args__ = dict()
|
202
|
+
__args__['accessLevel'] = access_level
|
203
|
+
__args__['compartmentId'] = compartment_id
|
204
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
205
|
+
__args__['displayName'] = display_name
|
206
|
+
__args__['filters'] = filters
|
207
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
208
|
+
__args__['state'] = state
|
209
|
+
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
210
|
+
__args__['timeCreatedLessThan'] = time_created_less_than
|
211
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
212
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSensitiveTypeGroups:getSensitiveTypeGroups', __args__, opts=opts, typ=GetSensitiveTypeGroupsResult).value
|
213
|
+
|
214
|
+
return AwaitableGetSensitiveTypeGroupsResult(
|
215
|
+
access_level=pulumi.get(__ret__, 'access_level'),
|
216
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
217
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
218
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
219
|
+
filters=pulumi.get(__ret__, 'filters'),
|
220
|
+
id=pulumi.get(__ret__, 'id'),
|
221
|
+
sensitive_type_group_collections=pulumi.get(__ret__, 'sensitive_type_group_collections'),
|
222
|
+
sensitive_type_group_id=pulumi.get(__ret__, 'sensitive_type_group_id'),
|
223
|
+
state=pulumi.get(__ret__, 'state'),
|
224
|
+
time_created_greater_than_or_equal_to=pulumi.get(__ret__, 'time_created_greater_than_or_equal_to'),
|
225
|
+
time_created_less_than=pulumi.get(__ret__, 'time_created_less_than'))
|
226
|
+
def get_sensitive_type_groups_output(access_level: Optional[pulumi.Input[Optional[str]]] = None,
|
227
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
228
|
+
compartment_id_in_subtree: Optional[pulumi.Input[Optional[bool]]] = None,
|
229
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
230
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSensitiveTypeGroupsFilterArgs', 'GetSensitiveTypeGroupsFilterArgsDict']]]]] = None,
|
231
|
+
sensitive_type_group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
232
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
233
|
+
time_created_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
|
234
|
+
time_created_less_than: Optional[pulumi.Input[Optional[str]]] = None,
|
235
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSensitiveTypeGroupsResult]:
|
236
|
+
"""
|
237
|
+
This data source provides the list of Sensitive Type Groups in Oracle Cloud Infrastructure Data Safe service.
|
238
|
+
|
239
|
+
Gets a list of sensitive type groups based on the specified query parameters.
|
240
|
+
|
241
|
+
## Example Usage
|
242
|
+
|
243
|
+
```python
|
244
|
+
import pulumi
|
245
|
+
import pulumi_oci as oci
|
246
|
+
|
247
|
+
test_sensitive_type_groups = oci.DataSafe.get_sensitive_type_groups(compartment_id=compartment_id,
|
248
|
+
access_level=sensitive_type_group_access_level,
|
249
|
+
compartment_id_in_subtree=sensitive_type_group_compartment_id_in_subtree,
|
250
|
+
display_name=sensitive_type_group_display_name,
|
251
|
+
sensitive_type_group_id=test_sensitive_type_group["id"],
|
252
|
+
state=sensitive_type_group_state,
|
253
|
+
time_created_greater_than_or_equal_to=sensitive_type_group_time_created_greater_than_or_equal_to,
|
254
|
+
time_created_less_than=sensitive_type_group_time_created_less_than)
|
255
|
+
```
|
256
|
+
|
257
|
+
|
258
|
+
:param str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
|
259
|
+
:param str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
260
|
+
:param bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
261
|
+
:param str display_name: A filter to return only resources that match the specified display name.
|
262
|
+
:param str sensitive_type_group_id: An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
|
263
|
+
:param str state: A filter to return only the resources that match the specified lifecycle state.
|
264
|
+
:param str time_created_greater_than_or_equal_to: A filter to return only the resources that were created after the specified date and time, as defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
|
265
|
+
|
266
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
267
|
+
:param str time_created_less_than: Search for resources that were created before a specific date. Specifying this parameter corresponding `timeCreatedLessThan` parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
268
|
+
|
269
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
270
|
+
"""
|
271
|
+
__args__ = dict()
|
272
|
+
__args__['accessLevel'] = access_level
|
273
|
+
__args__['compartmentId'] = compartment_id
|
274
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
275
|
+
__args__['displayName'] = display_name
|
276
|
+
__args__['filters'] = filters
|
277
|
+
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
278
|
+
__args__['state'] = state
|
279
|
+
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
280
|
+
__args__['timeCreatedLessThan'] = time_created_less_than
|
281
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
282
|
+
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getSensitiveTypeGroups:getSensitiveTypeGroups', __args__, opts=opts, typ=GetSensitiveTypeGroupsResult)
|
283
|
+
return __ret__.apply(lambda __response__: GetSensitiveTypeGroupsResult(
|
284
|
+
access_level=pulumi.get(__response__, 'access_level'),
|
285
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
286
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
287
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
288
|
+
filters=pulumi.get(__response__, 'filters'),
|
289
|
+
id=pulumi.get(__response__, 'id'),
|
290
|
+
sensitive_type_group_collections=pulumi.get(__response__, 'sensitive_type_group_collections'),
|
291
|
+
sensitive_type_group_id=pulumi.get(__response__, 'sensitive_type_group_id'),
|
292
|
+
state=pulumi.get(__response__, 'state'),
|
293
|
+
time_created_greater_than_or_equal_to=pulumi.get(__response__, 'time_created_greater_than_or_equal_to'),
|
294
|
+
time_created_less_than=pulumi.get(__response__, 'time_created_less_than')))
|