pulumi-oci 2.29.0a1744212348__py3-none-any.whl → 2.30.0__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/core/_inputs.py +21 -21
- pulumi_oci/core/get_ipv6.py +32 -2
- pulumi_oci/core/get_private_ip.py +33 -3
- pulumi_oci/core/get_private_ips.py +51 -1
- pulumi_oci/core/get_vnic.py +4 -1
- pulumi_oci/core/ipv6.py +155 -44
- pulumi_oci/core/outputs.py +71 -17
- pulumi_oci/core/private_ip.py +124 -20
- pulumi_oci/functions/invoke_function.py +52 -3
- pulumi_oci/goldengate/_inputs.py +135 -1
- pulumi_oci/goldengate/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +263 -3
- pulumi_oci/goldengate/pipeline.py +28 -0
- pulumi_oci/kms/_inputs.py +48 -0
- pulumi_oci/kms/outputs.py +48 -0
- pulumi_oci/kms/vault_verification.py +37 -1
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- {pulumi_oci-2.29.0a1744212348.dist-info → pulumi_oci-2.30.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.29.0a1744212348.dist-info → pulumi_oci-2.30.0.dist-info}/RECORD +24 -24
- {pulumi_oci-2.29.0a1744212348.dist-info → pulumi_oci-2.30.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.29.0a1744212348.dist-info → pulumi_oci-2.30.0.dist-info}/top_level.txt +0 -0
@@ -212,6 +212,7 @@ class _PipelineState:
|
|
212
212
|
lifecycle_sub_state: Optional[pulumi.Input[builtins.str]] = None,
|
213
213
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]] = None,
|
214
214
|
mapping_rules: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]]] = None,
|
215
|
+
pipeline_diagnostic_datas: Optional[pulumi.Input[Sequence[pulumi.Input['PipelinePipelineDiagnosticDataArgs']]]] = None,
|
215
216
|
process_options: Optional[pulumi.Input['PipelineProcessOptionsArgs']] = None,
|
216
217
|
recipe_type: Optional[pulumi.Input[builtins.str]] = None,
|
217
218
|
source_connection_details: Optional[pulumi.Input['PipelineSourceConnectionDetailsArgs']] = None,
|
@@ -235,6 +236,7 @@ class _PipelineState:
|
|
235
236
|
:param pulumi.Input[builtins.str] lifecycle_sub_state: Possible lifecycle substates when retrieving a pipeline.
|
236
237
|
:param pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]] locks: Locks associated with this resource.
|
237
238
|
:param pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
|
239
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelinePipelineDiagnosticDataArgs']]] pipeline_diagnostic_datas: Information regarding the pipeline diagnostic collection
|
238
240
|
:param pulumi.Input['PipelineProcessOptionsArgs'] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
239
241
|
:param pulumi.Input[builtins.str] recipe_type: (Updatable) The type of the recipe
|
240
242
|
:param pulumi.Input['PipelineSourceConnectionDetailsArgs'] source_connection_details: The source connection details for creating a pipeline.
|
@@ -269,6 +271,8 @@ class _PipelineState:
|
|
269
271
|
pulumi.set(__self__, "locks", locks)
|
270
272
|
if mapping_rules is not None:
|
271
273
|
pulumi.set(__self__, "mapping_rules", mapping_rules)
|
274
|
+
if pipeline_diagnostic_datas is not None:
|
275
|
+
pulumi.set(__self__, "pipeline_diagnostic_datas", pipeline_diagnostic_datas)
|
272
276
|
if process_options is not None:
|
273
277
|
pulumi.set(__self__, "process_options", process_options)
|
274
278
|
if recipe_type is not None:
|
@@ -432,6 +436,18 @@ class _PipelineState:
|
|
432
436
|
def mapping_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]]]):
|
433
437
|
pulumi.set(self, "mapping_rules", value)
|
434
438
|
|
439
|
+
@property
|
440
|
+
@pulumi.getter(name="pipelineDiagnosticDatas")
|
441
|
+
def pipeline_diagnostic_datas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelinePipelineDiagnosticDataArgs']]]]:
|
442
|
+
"""
|
443
|
+
Information regarding the pipeline diagnostic collection
|
444
|
+
"""
|
445
|
+
return pulumi.get(self, "pipeline_diagnostic_datas")
|
446
|
+
|
447
|
+
@pipeline_diagnostic_datas.setter
|
448
|
+
def pipeline_diagnostic_datas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelinePipelineDiagnosticDataArgs']]]]):
|
449
|
+
pulumi.set(self, "pipeline_diagnostic_datas", value)
|
450
|
+
|
435
451
|
@property
|
436
452
|
@pulumi.getter(name="processOptions")
|
437
453
|
def process_options(self) -> Optional[pulumi.Input['PipelineProcessOptionsArgs']]:
|
@@ -667,6 +683,7 @@ class Pipeline(pulumi.CustomResource):
|
|
667
683
|
__props__.__dict__["lifecycle_details"] = None
|
668
684
|
__props__.__dict__["lifecycle_sub_state"] = None
|
669
685
|
__props__.__dict__["mapping_rules"] = None
|
686
|
+
__props__.__dict__["pipeline_diagnostic_datas"] = None
|
670
687
|
__props__.__dict__["state"] = None
|
671
688
|
__props__.__dict__["system_tags"] = None
|
672
689
|
__props__.__dict__["time_created"] = None
|
@@ -694,6 +711,7 @@ class Pipeline(pulumi.CustomResource):
|
|
694
711
|
lifecycle_sub_state: Optional[pulumi.Input[builtins.str]] = None,
|
695
712
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]]] = None,
|
696
713
|
mapping_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineMappingRuleArgs', 'PipelineMappingRuleArgsDict']]]]] = None,
|
714
|
+
pipeline_diagnostic_datas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelinePipelineDiagnosticDataArgs', 'PipelinePipelineDiagnosticDataArgsDict']]]]] = None,
|
697
715
|
process_options: Optional[pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']]] = None,
|
698
716
|
recipe_type: Optional[pulumi.Input[builtins.str]] = None,
|
699
717
|
source_connection_details: Optional[pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']]] = None,
|
@@ -722,6 +740,7 @@ class Pipeline(pulumi.CustomResource):
|
|
722
740
|
:param pulumi.Input[builtins.str] lifecycle_sub_state: Possible lifecycle substates when retrieving a pipeline.
|
723
741
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]] locks: Locks associated with this resource.
|
724
742
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineMappingRuleArgs', 'PipelineMappingRuleArgsDict']]]] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
|
743
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelinePipelineDiagnosticDataArgs', 'PipelinePipelineDiagnosticDataArgsDict']]]] pipeline_diagnostic_datas: Information regarding the pipeline diagnostic collection
|
725
744
|
:param pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
726
745
|
:param pulumi.Input[builtins.str] recipe_type: (Updatable) The type of the recipe
|
727
746
|
:param pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']] source_connection_details: The source connection details for creating a pipeline.
|
@@ -748,6 +767,7 @@ class Pipeline(pulumi.CustomResource):
|
|
748
767
|
__props__.__dict__["lifecycle_sub_state"] = lifecycle_sub_state
|
749
768
|
__props__.__dict__["locks"] = locks
|
750
769
|
__props__.__dict__["mapping_rules"] = mapping_rules
|
770
|
+
__props__.__dict__["pipeline_diagnostic_datas"] = pipeline_diagnostic_datas
|
751
771
|
__props__.__dict__["process_options"] = process_options
|
752
772
|
__props__.__dict__["recipe_type"] = recipe_type
|
753
773
|
__props__.__dict__["source_connection_details"] = source_connection_details
|
@@ -855,6 +875,14 @@ class Pipeline(pulumi.CustomResource):
|
|
855
875
|
"""
|
856
876
|
return pulumi.get(self, "mapping_rules")
|
857
877
|
|
878
|
+
@property
|
879
|
+
@pulumi.getter(name="pipelineDiagnosticDatas")
|
880
|
+
def pipeline_diagnostic_datas(self) -> pulumi.Output[Sequence['outputs.PipelinePipelineDiagnosticData']]:
|
881
|
+
"""
|
882
|
+
Information regarding the pipeline diagnostic collection
|
883
|
+
"""
|
884
|
+
return pulumi.get(self, "pipeline_diagnostic_datas")
|
885
|
+
|
858
886
|
@property
|
859
887
|
@pulumi.getter(name="processOptions")
|
860
888
|
def process_options(self) -> pulumi.Output['outputs.PipelineProcessOptions']:
|
pulumi_oci/kms/_inputs.py
CHANGED
@@ -50,6 +50,8 @@ __all__ = [
|
|
50
50
|
'VaultRestoreFromFileArgsDict',
|
51
51
|
'VaultRestoreFromObjectStoreArgs',
|
52
52
|
'VaultRestoreFromObjectStoreArgsDict',
|
53
|
+
'VaultVerificationReplicaVaultMetadataArgs',
|
54
|
+
'VaultVerificationReplicaVaultMetadataArgsDict',
|
53
55
|
'GetEkmsPrivateEndpointsFilterArgs',
|
54
56
|
'GetEkmsPrivateEndpointsFilterArgsDict',
|
55
57
|
'GetKeyVersionsFilterArgs',
|
@@ -1229,6 +1231,52 @@ class VaultRestoreFromObjectStoreArgs:
|
|
1229
1231
|
pulumi.set(self, "uri", value)
|
1230
1232
|
|
1231
1233
|
|
1234
|
+
if not MYPY:
|
1235
|
+
class VaultVerificationReplicaVaultMetadataArgsDict(TypedDict):
|
1236
|
+
idcs_account_name_url: pulumi.Input[builtins.str]
|
1237
|
+
private_endpoint_id: pulumi.Input[builtins.str]
|
1238
|
+
vault_type: pulumi.Input[builtins.str]
|
1239
|
+
elif False:
|
1240
|
+
VaultVerificationReplicaVaultMetadataArgsDict: TypeAlias = Mapping[str, Any]
|
1241
|
+
|
1242
|
+
@pulumi.input_type
|
1243
|
+
class VaultVerificationReplicaVaultMetadataArgs:
|
1244
|
+
def __init__(__self__, *,
|
1245
|
+
idcs_account_name_url: pulumi.Input[builtins.str],
|
1246
|
+
private_endpoint_id: pulumi.Input[builtins.str],
|
1247
|
+
vault_type: pulumi.Input[builtins.str]):
|
1248
|
+
pulumi.set(__self__, "idcs_account_name_url", idcs_account_name_url)
|
1249
|
+
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
1250
|
+
pulumi.set(__self__, "vault_type", vault_type)
|
1251
|
+
|
1252
|
+
@property
|
1253
|
+
@pulumi.getter(name="idcsAccountNameUrl")
|
1254
|
+
def idcs_account_name_url(self) -> pulumi.Input[builtins.str]:
|
1255
|
+
return pulumi.get(self, "idcs_account_name_url")
|
1256
|
+
|
1257
|
+
@idcs_account_name_url.setter
|
1258
|
+
def idcs_account_name_url(self, value: pulumi.Input[builtins.str]):
|
1259
|
+
pulumi.set(self, "idcs_account_name_url", value)
|
1260
|
+
|
1261
|
+
@property
|
1262
|
+
@pulumi.getter(name="privateEndpointId")
|
1263
|
+
def private_endpoint_id(self) -> pulumi.Input[builtins.str]:
|
1264
|
+
return pulumi.get(self, "private_endpoint_id")
|
1265
|
+
|
1266
|
+
@private_endpoint_id.setter
|
1267
|
+
def private_endpoint_id(self, value: pulumi.Input[builtins.str]):
|
1268
|
+
pulumi.set(self, "private_endpoint_id", value)
|
1269
|
+
|
1270
|
+
@property
|
1271
|
+
@pulumi.getter(name="vaultType")
|
1272
|
+
def vault_type(self) -> pulumi.Input[builtins.str]:
|
1273
|
+
return pulumi.get(self, "vault_type")
|
1274
|
+
|
1275
|
+
@vault_type.setter
|
1276
|
+
def vault_type(self, value: pulumi.Input[builtins.str]):
|
1277
|
+
pulumi.set(self, "vault_type", value)
|
1278
|
+
|
1279
|
+
|
1232
1280
|
if not MYPY:
|
1233
1281
|
class GetEkmsPrivateEndpointsFilterArgsDict(TypedDict):
|
1234
1282
|
name: builtins.str
|
pulumi_oci/kms/outputs.py
CHANGED
@@ -34,6 +34,7 @@ __all__ = [
|
|
34
34
|
'VaultReplicaDetail',
|
35
35
|
'VaultRestoreFromFile',
|
36
36
|
'VaultRestoreFromObjectStore',
|
37
|
+
'VaultVerificationReplicaVaultMetadata',
|
37
38
|
'GetEkmsPrivateEndpointsEkmsPrivateEndpointResult',
|
38
39
|
'GetEkmsPrivateEndpointsFilterResult',
|
39
40
|
'GetKeyAutoKeyRotationDetailResult',
|
@@ -1060,6 +1061,53 @@ class VaultRestoreFromObjectStore(dict):
|
|
1060
1061
|
return pulumi.get(self, "uri")
|
1061
1062
|
|
1062
1063
|
|
1064
|
+
@pulumi.output_type
|
1065
|
+
class VaultVerificationReplicaVaultMetadata(dict):
|
1066
|
+
@staticmethod
|
1067
|
+
def __key_warning(key: str):
|
1068
|
+
suggest = None
|
1069
|
+
if key == "idcsAccountNameUrl":
|
1070
|
+
suggest = "idcs_account_name_url"
|
1071
|
+
elif key == "privateEndpointId":
|
1072
|
+
suggest = "private_endpoint_id"
|
1073
|
+
elif key == "vaultType":
|
1074
|
+
suggest = "vault_type"
|
1075
|
+
|
1076
|
+
if suggest:
|
1077
|
+
pulumi.log.warn(f"Key '{key}' not found in VaultVerificationReplicaVaultMetadata. Access the value via the '{suggest}' property getter instead.")
|
1078
|
+
|
1079
|
+
def __getitem__(self, key: str) -> Any:
|
1080
|
+
VaultVerificationReplicaVaultMetadata.__key_warning(key)
|
1081
|
+
return super().__getitem__(key)
|
1082
|
+
|
1083
|
+
def get(self, key: str, default = None) -> Any:
|
1084
|
+
VaultVerificationReplicaVaultMetadata.__key_warning(key)
|
1085
|
+
return super().get(key, default)
|
1086
|
+
|
1087
|
+
def __init__(__self__, *,
|
1088
|
+
idcs_account_name_url: builtins.str,
|
1089
|
+
private_endpoint_id: builtins.str,
|
1090
|
+
vault_type: builtins.str):
|
1091
|
+
pulumi.set(__self__, "idcs_account_name_url", idcs_account_name_url)
|
1092
|
+
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
1093
|
+
pulumi.set(__self__, "vault_type", vault_type)
|
1094
|
+
|
1095
|
+
@property
|
1096
|
+
@pulumi.getter(name="idcsAccountNameUrl")
|
1097
|
+
def idcs_account_name_url(self) -> builtins.str:
|
1098
|
+
return pulumi.get(self, "idcs_account_name_url")
|
1099
|
+
|
1100
|
+
@property
|
1101
|
+
@pulumi.getter(name="privateEndpointId")
|
1102
|
+
def private_endpoint_id(self) -> builtins.str:
|
1103
|
+
return pulumi.get(self, "private_endpoint_id")
|
1104
|
+
|
1105
|
+
@property
|
1106
|
+
@pulumi.getter(name="vaultType")
|
1107
|
+
def vault_type(self) -> builtins.str:
|
1108
|
+
return pulumi.get(self, "vault_type")
|
1109
|
+
|
1110
|
+
|
1063
1111
|
@pulumi.output_type
|
1064
1112
|
class GetEkmsPrivateEndpointsEkmsPrivateEndpointResult(dict):
|
1065
1113
|
def __init__(__self__, *,
|
@@ -14,6 +14,8 @@ if sys.version_info >= (3, 11):
|
|
14
14
|
else:
|
15
15
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
16
|
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
17
19
|
|
18
20
|
__all__ = ['VaultVerificationArgs', 'VaultVerification']
|
19
21
|
|
@@ -21,7 +23,8 @@ __all__ = ['VaultVerificationArgs', 'VaultVerification']
|
|
21
23
|
class VaultVerificationArgs:
|
22
24
|
def __init__(__self__, *,
|
23
25
|
replica_region: pulumi.Input[builtins.str],
|
24
|
-
vault_id: pulumi.Input[builtins.str]
|
26
|
+
vault_id: pulumi.Input[builtins.str],
|
27
|
+
replica_vault_metadata: Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']] = None):
|
25
28
|
"""
|
26
29
|
The set of arguments for constructing a VaultVerification resource.
|
27
30
|
:param pulumi.Input[builtins.str] replica_region: (Updatable) The region to be created replica to. When updated,
|
@@ -30,6 +33,8 @@ class VaultVerificationArgs:
|
|
30
33
|
"""
|
31
34
|
pulumi.set(__self__, "replica_region", replica_region)
|
32
35
|
pulumi.set(__self__, "vault_id", vault_id)
|
36
|
+
if replica_vault_metadata is not None:
|
37
|
+
pulumi.set(__self__, "replica_vault_metadata", replica_vault_metadata)
|
33
38
|
|
34
39
|
@property
|
35
40
|
@pulumi.getter(name="replicaRegion")
|
@@ -56,11 +61,21 @@ class VaultVerificationArgs:
|
|
56
61
|
def vault_id(self, value: pulumi.Input[builtins.str]):
|
57
62
|
pulumi.set(self, "vault_id", value)
|
58
63
|
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="replicaVaultMetadata")
|
66
|
+
def replica_vault_metadata(self) -> Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']]:
|
67
|
+
return pulumi.get(self, "replica_vault_metadata")
|
68
|
+
|
69
|
+
@replica_vault_metadata.setter
|
70
|
+
def replica_vault_metadata(self, value: Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']]):
|
71
|
+
pulumi.set(self, "replica_vault_metadata", value)
|
72
|
+
|
59
73
|
|
60
74
|
@pulumi.input_type
|
61
75
|
class _VaultVerificationState:
|
62
76
|
def __init__(__self__, *,
|
63
77
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
78
|
+
replica_vault_metadata: Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']] = None,
|
64
79
|
vault_id: Optional[pulumi.Input[builtins.str]] = None):
|
65
80
|
"""
|
66
81
|
Input properties used for looking up and filtering VaultVerification resources.
|
@@ -70,6 +85,8 @@ class _VaultVerificationState:
|
|
70
85
|
"""
|
71
86
|
if replica_region is not None:
|
72
87
|
pulumi.set(__self__, "replica_region", replica_region)
|
88
|
+
if replica_vault_metadata is not None:
|
89
|
+
pulumi.set(__self__, "replica_vault_metadata", replica_vault_metadata)
|
73
90
|
if vault_id is not None:
|
74
91
|
pulumi.set(__self__, "vault_id", vault_id)
|
75
92
|
|
@@ -86,6 +103,15 @@ class _VaultVerificationState:
|
|
86
103
|
def replica_region(self, value: Optional[pulumi.Input[builtins.str]]):
|
87
104
|
pulumi.set(self, "replica_region", value)
|
88
105
|
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="replicaVaultMetadata")
|
108
|
+
def replica_vault_metadata(self) -> Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']]:
|
109
|
+
return pulumi.get(self, "replica_vault_metadata")
|
110
|
+
|
111
|
+
@replica_vault_metadata.setter
|
112
|
+
def replica_vault_metadata(self, value: Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']]):
|
113
|
+
pulumi.set(self, "replica_vault_metadata", value)
|
114
|
+
|
89
115
|
@property
|
90
116
|
@pulumi.getter(name="vaultId")
|
91
117
|
def vault_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -105,6 +131,7 @@ class VaultVerification(pulumi.CustomResource):
|
|
105
131
|
resource_name: str,
|
106
132
|
opts: Optional[pulumi.ResourceOptions] = None,
|
107
133
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
134
|
+
replica_vault_metadata: Optional[pulumi.Input[Union['VaultVerificationReplicaVaultMetadataArgs', 'VaultVerificationReplicaVaultMetadataArgsDict']]] = None,
|
108
135
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
109
136
|
__props__=None):
|
110
137
|
"""
|
@@ -175,6 +202,7 @@ class VaultVerification(pulumi.CustomResource):
|
|
175
202
|
resource_name: str,
|
176
203
|
opts: Optional[pulumi.ResourceOptions] = None,
|
177
204
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
205
|
+
replica_vault_metadata: Optional[pulumi.Input[Union['VaultVerificationReplicaVaultMetadataArgs', 'VaultVerificationReplicaVaultMetadataArgsDict']]] = None,
|
178
206
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
179
207
|
__props__=None):
|
180
208
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -188,6 +216,7 @@ class VaultVerification(pulumi.CustomResource):
|
|
188
216
|
if replica_region is None and not opts.urn:
|
189
217
|
raise TypeError("Missing required property 'replica_region'")
|
190
218
|
__props__.__dict__["replica_region"] = replica_region
|
219
|
+
__props__.__dict__["replica_vault_metadata"] = replica_vault_metadata
|
191
220
|
if vault_id is None and not opts.urn:
|
192
221
|
raise TypeError("Missing required property 'vault_id'")
|
193
222
|
__props__.__dict__["vault_id"] = vault_id
|
@@ -202,6 +231,7 @@ class VaultVerification(pulumi.CustomResource):
|
|
202
231
|
id: pulumi.Input[str],
|
203
232
|
opts: Optional[pulumi.ResourceOptions] = None,
|
204
233
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
234
|
+
replica_vault_metadata: Optional[pulumi.Input[Union['VaultVerificationReplicaVaultMetadataArgs', 'VaultVerificationReplicaVaultMetadataArgsDict']]] = None,
|
205
235
|
vault_id: Optional[pulumi.Input[builtins.str]] = None) -> 'VaultVerification':
|
206
236
|
"""
|
207
237
|
Get an existing VaultVerification resource's state with the given name, id, and optional extra
|
@@ -219,6 +249,7 @@ class VaultVerification(pulumi.CustomResource):
|
|
219
249
|
__props__ = _VaultVerificationState.__new__(_VaultVerificationState)
|
220
250
|
|
221
251
|
__props__.__dict__["replica_region"] = replica_region
|
252
|
+
__props__.__dict__["replica_vault_metadata"] = replica_vault_metadata
|
222
253
|
__props__.__dict__["vault_id"] = vault_id
|
223
254
|
return VaultVerification(resource_name, opts=opts, __props__=__props__)
|
224
255
|
|
@@ -231,6 +262,11 @@ class VaultVerification(pulumi.CustomResource):
|
|
231
262
|
"""
|
232
263
|
return pulumi.get(self, "replica_region")
|
233
264
|
|
265
|
+
@property
|
266
|
+
@pulumi.getter(name="replicaVaultMetadata")
|
267
|
+
def replica_vault_metadata(self) -> pulumi.Output['outputs.VaultVerificationReplicaVaultMetadata']:
|
268
|
+
return pulumi.get(self, "replica_vault_metadata")
|
269
|
+
|
234
270
|
@property
|
235
271
|
@pulumi.getter(name="vaultId")
|
236
272
|
def vault_id(self) -> pulumi.Output[builtins.str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED