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,287 @@
|
|
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__ = ['SensitiveTypeGroupGroupedSensitiveTypeArgs', 'SensitiveTypeGroupGroupedSensitiveType']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class SensitiveTypeGroupGroupedSensitiveTypeArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
sensitive_type_group_id: pulumi.Input[str],
|
25
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]] = None):
|
26
|
+
"""
|
27
|
+
The set of arguments for constructing a SensitiveTypeGroupGroupedSensitiveType resource.
|
28
|
+
:param pulumi.Input[str] sensitive_type_group_id: ** IMPORTANT **
|
29
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]] patch_operations: (Updatable)
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
33
|
+
if patch_operations is not None:
|
34
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
35
|
+
|
36
|
+
@property
|
37
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
38
|
+
def sensitive_type_group_id(self) -> pulumi.Input[str]:
|
39
|
+
"""
|
40
|
+
** IMPORTANT **
|
41
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
44
|
+
|
45
|
+
@sensitive_type_group_id.setter
|
46
|
+
def sensitive_type_group_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "sensitive_type_group_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="patchOperations")
|
51
|
+
def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]]:
|
52
|
+
"""
|
53
|
+
(Updatable)
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "patch_operations")
|
56
|
+
|
57
|
+
@patch_operations.setter
|
58
|
+
def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]]):
|
59
|
+
pulumi.set(self, "patch_operations", value)
|
60
|
+
|
61
|
+
|
62
|
+
@pulumi.input_type
|
63
|
+
class _SensitiveTypeGroupGroupedSensitiveTypeState:
|
64
|
+
def __init__(__self__, *,
|
65
|
+
items: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypeItemArgs']]]] = None,
|
66
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]] = None,
|
67
|
+
sensitive_type_group_id: Optional[pulumi.Input[str]] = None):
|
68
|
+
"""
|
69
|
+
Input properties used for looking up and filtering SensitiveTypeGroupGroupedSensitiveType resources.
|
70
|
+
:param pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypeItemArgs']]] items: List of sensitive type id summary objects present in the sensitive type group.
|
71
|
+
:param pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]] patch_operations: (Updatable)
|
72
|
+
:param pulumi.Input[str] sensitive_type_group_id: ** IMPORTANT **
|
73
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
74
|
+
"""
|
75
|
+
if items is not None:
|
76
|
+
pulumi.set(__self__, "items", items)
|
77
|
+
if patch_operations is not None:
|
78
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
79
|
+
if sensitive_type_group_id is not None:
|
80
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypeItemArgs']]]]:
|
85
|
+
"""
|
86
|
+
List of sensitive type id summary objects present in the sensitive type group.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "items")
|
89
|
+
|
90
|
+
@items.setter
|
91
|
+
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypeItemArgs']]]]):
|
92
|
+
pulumi.set(self, "items", value)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="patchOperations")
|
96
|
+
def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]]:
|
97
|
+
"""
|
98
|
+
(Updatable)
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "patch_operations")
|
101
|
+
|
102
|
+
@patch_operations.setter
|
103
|
+
def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs']]]]):
|
104
|
+
pulumi.set(self, "patch_operations", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
108
|
+
def sensitive_type_group_id(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
"""
|
110
|
+
** IMPORTANT **
|
111
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
114
|
+
|
115
|
+
@sensitive_type_group_id.setter
|
116
|
+
def sensitive_type_group_id(self, value: Optional[pulumi.Input[str]]):
|
117
|
+
pulumi.set(self, "sensitive_type_group_id", value)
|
118
|
+
|
119
|
+
|
120
|
+
class SensitiveTypeGroupGroupedSensitiveType(pulumi.CustomResource):
|
121
|
+
@overload
|
122
|
+
def __init__(__self__,
|
123
|
+
resource_name: str,
|
124
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
125
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs', 'SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgsDict']]]]] = None,
|
126
|
+
sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
|
127
|
+
__props__=None):
|
128
|
+
"""
|
129
|
+
This resource provides the Sensitive Type Group Grouped Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service.
|
130
|
+
|
131
|
+
Patches one or more sensitive types in a sensitive type group. You can use this operation to add or remove
|
132
|
+
sensitive type ids in a sensitive type group.
|
133
|
+
|
134
|
+
## Example Usage
|
135
|
+
|
136
|
+
```python
|
137
|
+
import pulumi
|
138
|
+
import pulumi_oci as oci
|
139
|
+
|
140
|
+
test_sensitive_type_group_grouped_sensitive_type = oci.data_safe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type",
|
141
|
+
sensitive_type_group_id=test_sensitive_type_group["id"],
|
142
|
+
patch_operations=[{
|
143
|
+
"operation": sensitive_type_group_grouped_sensitive_type_patch_operations_operation,
|
144
|
+
"selection": sensitive_type_group_grouped_sensitive_type_patch_operations_selection,
|
145
|
+
"value": sensitive_type_group_grouped_sensitive_type_patch_operations_value,
|
146
|
+
}])
|
147
|
+
```
|
148
|
+
|
149
|
+
## Import
|
150
|
+
|
151
|
+
SensitiveTypeGroupGroupedSensitiveTypes can be imported using the `id`, e.g.
|
152
|
+
|
153
|
+
```sh
|
154
|
+
$ pulumi import oci:DataSafe/sensitiveTypeGroupGroupedSensitiveType:SensitiveTypeGroupGroupedSensitiveType test_sensitive_type_group_grouped_sensitive_type "sensitiveTypeGroups/{sensitiveTypeGroupId}/groupedSensitiveTypes"
|
155
|
+
```
|
156
|
+
|
157
|
+
:param str resource_name: The name of the resource.
|
158
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
159
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs', 'SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgsDict']]]] patch_operations: (Updatable)
|
160
|
+
:param pulumi.Input[str] sensitive_type_group_id: ** IMPORTANT **
|
161
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
162
|
+
"""
|
163
|
+
...
|
164
|
+
@overload
|
165
|
+
def __init__(__self__,
|
166
|
+
resource_name: str,
|
167
|
+
args: SensitiveTypeGroupGroupedSensitiveTypeArgs,
|
168
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
169
|
+
"""
|
170
|
+
This resource provides the Sensitive Type Group Grouped Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service.
|
171
|
+
|
172
|
+
Patches one or more sensitive types in a sensitive type group. You can use this operation to add or remove
|
173
|
+
sensitive type ids in a sensitive type group.
|
174
|
+
|
175
|
+
## Example Usage
|
176
|
+
|
177
|
+
```python
|
178
|
+
import pulumi
|
179
|
+
import pulumi_oci as oci
|
180
|
+
|
181
|
+
test_sensitive_type_group_grouped_sensitive_type = oci.data_safe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type",
|
182
|
+
sensitive_type_group_id=test_sensitive_type_group["id"],
|
183
|
+
patch_operations=[{
|
184
|
+
"operation": sensitive_type_group_grouped_sensitive_type_patch_operations_operation,
|
185
|
+
"selection": sensitive_type_group_grouped_sensitive_type_patch_operations_selection,
|
186
|
+
"value": sensitive_type_group_grouped_sensitive_type_patch_operations_value,
|
187
|
+
}])
|
188
|
+
```
|
189
|
+
|
190
|
+
## Import
|
191
|
+
|
192
|
+
SensitiveTypeGroupGroupedSensitiveTypes can be imported using the `id`, e.g.
|
193
|
+
|
194
|
+
```sh
|
195
|
+
$ pulumi import oci:DataSafe/sensitiveTypeGroupGroupedSensitiveType:SensitiveTypeGroupGroupedSensitiveType test_sensitive_type_group_grouped_sensitive_type "sensitiveTypeGroups/{sensitiveTypeGroupId}/groupedSensitiveTypes"
|
196
|
+
```
|
197
|
+
|
198
|
+
:param str resource_name: The name of the resource.
|
199
|
+
:param SensitiveTypeGroupGroupedSensitiveTypeArgs args: The arguments to use to populate this resource's properties.
|
200
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
201
|
+
"""
|
202
|
+
...
|
203
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
204
|
+
resource_args, opts = _utilities.get_resource_args_opts(SensitiveTypeGroupGroupedSensitiveTypeArgs, pulumi.ResourceOptions, *args, **kwargs)
|
205
|
+
if resource_args is not None:
|
206
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
207
|
+
else:
|
208
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
209
|
+
|
210
|
+
def _internal_init(__self__,
|
211
|
+
resource_name: str,
|
212
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
213
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs', 'SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgsDict']]]]] = None,
|
214
|
+
sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
|
215
|
+
__props__=None):
|
216
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
217
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
218
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
219
|
+
if opts.id is None:
|
220
|
+
if __props__ is not None:
|
221
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
222
|
+
__props__ = SensitiveTypeGroupGroupedSensitiveTypeArgs.__new__(SensitiveTypeGroupGroupedSensitiveTypeArgs)
|
223
|
+
|
224
|
+
__props__.__dict__["patch_operations"] = patch_operations
|
225
|
+
if sensitive_type_group_id is None and not opts.urn:
|
226
|
+
raise TypeError("Missing required property 'sensitive_type_group_id'")
|
227
|
+
__props__.__dict__["sensitive_type_group_id"] = sensitive_type_group_id
|
228
|
+
__props__.__dict__["items"] = None
|
229
|
+
super(SensitiveTypeGroupGroupedSensitiveType, __self__).__init__(
|
230
|
+
'oci:DataSafe/sensitiveTypeGroupGroupedSensitiveType:SensitiveTypeGroupGroupedSensitiveType',
|
231
|
+
resource_name,
|
232
|
+
__props__,
|
233
|
+
opts)
|
234
|
+
|
235
|
+
@staticmethod
|
236
|
+
def get(resource_name: str,
|
237
|
+
id: pulumi.Input[str],
|
238
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
239
|
+
items: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypeItemArgs', 'SensitiveTypeGroupGroupedSensitiveTypeItemArgsDict']]]]] = None,
|
240
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs', 'SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgsDict']]]]] = None,
|
241
|
+
sensitive_type_group_id: Optional[pulumi.Input[str]] = None) -> 'SensitiveTypeGroupGroupedSensitiveType':
|
242
|
+
"""
|
243
|
+
Get an existing SensitiveTypeGroupGroupedSensitiveType resource's state with the given name, id, and optional extra
|
244
|
+
properties used to qualify the lookup.
|
245
|
+
|
246
|
+
:param str resource_name: The unique name of the resulting resource.
|
247
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
248
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
249
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypeItemArgs', 'SensitiveTypeGroupGroupedSensitiveTypeItemArgsDict']]]] items: List of sensitive type id summary objects present in the sensitive type group.
|
250
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs', 'SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgsDict']]]] patch_operations: (Updatable)
|
251
|
+
:param pulumi.Input[str] sensitive_type_group_id: ** IMPORTANT **
|
252
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
253
|
+
"""
|
254
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
255
|
+
|
256
|
+
__props__ = _SensitiveTypeGroupGroupedSensitiveTypeState.__new__(_SensitiveTypeGroupGroupedSensitiveTypeState)
|
257
|
+
|
258
|
+
__props__.__dict__["items"] = items
|
259
|
+
__props__.__dict__["patch_operations"] = patch_operations
|
260
|
+
__props__.__dict__["sensitive_type_group_id"] = sensitive_type_group_id
|
261
|
+
return SensitiveTypeGroupGroupedSensitiveType(resource_name, opts=opts, __props__=__props__)
|
262
|
+
|
263
|
+
@property
|
264
|
+
@pulumi.getter
|
265
|
+
def items(self) -> pulumi.Output[Sequence['outputs.SensitiveTypeGroupGroupedSensitiveTypeItem']]:
|
266
|
+
"""
|
267
|
+
List of sensitive type id summary objects present in the sensitive type group.
|
268
|
+
"""
|
269
|
+
return pulumi.get(self, "items")
|
270
|
+
|
271
|
+
@property
|
272
|
+
@pulumi.getter(name="patchOperations")
|
273
|
+
def patch_operations(self) -> pulumi.Output[Optional[Sequence['outputs.SensitiveTypeGroupGroupedSensitiveTypePatchOperation']]]:
|
274
|
+
"""
|
275
|
+
(Updatable)
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "patch_operations")
|
278
|
+
|
279
|
+
@property
|
280
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
281
|
+
def sensitive_type_group_id(self) -> pulumi.Output[str]:
|
282
|
+
"""
|
283
|
+
** IMPORTANT **
|
284
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
287
|
+
|
@@ -13,6 +13,8 @@ from .get_job_runs import *
|
|
13
13
|
from .get_job_shapes import *
|
14
14
|
from .get_jobs import *
|
15
15
|
from .get_model import *
|
16
|
+
from .get_model_custom_metadata_artifact_content import *
|
17
|
+
from .get_model_defined_metadata_artifact_content import *
|
16
18
|
from .get_model_deployment import *
|
17
19
|
from .get_model_deployment_shapes import *
|
18
20
|
from .get_model_deployments import *
|
@@ -38,6 +40,8 @@ from .job_run import *
|
|
38
40
|
from .model import *
|
39
41
|
from .model_artifact_export import *
|
40
42
|
from .model_artifact_import import *
|
43
|
+
from .model_custom_metadata_artifact import *
|
44
|
+
from .model_defined_metadata_artifact import *
|
41
45
|
from .model_deployment import *
|
42
46
|
from .model_provenance import *
|
43
47
|
from .model_version_set import *
|