pulumi-oci 2.30.0a1744439401__py3-none-any.whl → 2.31.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/containerengine/_inputs.py +20 -19
- pulumi_oci/containerengine/container_instance.py +2 -2
- pulumi_oci/containerengine/outputs.py +12 -11
- 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/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +238 -1
- pulumi_oci/goldengate/deployment.py +308 -68
- pulumi_oci/goldengate/get_deployment.py +85 -1
- pulumi_oci/goldengate/get_deployment_peers.py +192 -0
- pulumi_oci/goldengate/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +627 -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/loadbalancer/load_balancer.py +49 -0
- pulumi_oci/loadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/RECORD +33 -32
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.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]:
|
@@ -35,6 +35,7 @@ class LoadBalancerArgs:
|
|
35
35
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
36
36
|
request_id_header: Optional[pulumi.Input[builtins.str]] = None,
|
37
37
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
|
38
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
38
39
|
shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None):
|
39
40
|
"""
|
40
41
|
The set of arguments for constructing a LoadBalancer resource.
|
@@ -101,6 +102,7 @@ class LoadBalancerArgs:
|
|
101
102
|
* Unless the header name is "" it must start with "X-" prefix.
|
102
103
|
* Setting the header name to "" will set it to the default: X-Request-Id.
|
103
104
|
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
|
105
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
104
106
|
:param pulumi.Input['LoadBalancerShapeDetailsArgs'] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
|
105
107
|
"""
|
106
108
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -125,6 +127,8 @@ class LoadBalancerArgs:
|
|
125
127
|
pulumi.set(__self__, "request_id_header", request_id_header)
|
126
128
|
if reserved_ips is not None:
|
127
129
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
130
|
+
if security_attributes is not None:
|
131
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
128
132
|
if shape_details is not None:
|
129
133
|
pulumi.set(__self__, "shape_details", shape_details)
|
130
134
|
|
@@ -334,6 +338,18 @@ class LoadBalancerArgs:
|
|
334
338
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]):
|
335
339
|
pulumi.set(self, "reserved_ips", value)
|
336
340
|
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="securityAttributes")
|
343
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
344
|
+
"""
|
345
|
+
(Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
346
|
+
"""
|
347
|
+
return pulumi.get(self, "security_attributes")
|
348
|
+
|
349
|
+
@security_attributes.setter
|
350
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
351
|
+
pulumi.set(self, "security_attributes", value)
|
352
|
+
|
337
353
|
@property
|
338
354
|
@pulumi.getter(name="shapeDetails")
|
339
355
|
def shape_details(self) -> Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']]:
|
@@ -363,6 +379,7 @@ class _LoadBalancerState:
|
|
363
379
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
364
380
|
request_id_header: Optional[pulumi.Input[builtins.str]] = None,
|
365
381
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
|
382
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
366
383
|
shape: Optional[pulumi.Input[builtins.str]] = None,
|
367
384
|
shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None,
|
368
385
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -430,6 +447,7 @@ class _LoadBalancerState:
|
|
430
447
|
* Unless the header name is "" it must start with "X-" prefix.
|
431
448
|
* Setting the header name to "" will set it to the default: X-Request-Id.
|
432
449
|
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
|
450
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
433
451
|
:param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
|
434
452
|
:param pulumi.Input['LoadBalancerShapeDetailsArgs'] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
|
435
453
|
:param pulumi.Input[builtins.str] state: The current state of the load balancer.
|
@@ -470,6 +488,8 @@ class _LoadBalancerState:
|
|
470
488
|
pulumi.set(__self__, "request_id_header", request_id_header)
|
471
489
|
if reserved_ips is not None:
|
472
490
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
491
|
+
if security_attributes is not None:
|
492
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
473
493
|
if shape is not None:
|
474
494
|
pulumi.set(__self__, "shape", shape)
|
475
495
|
if shape_details is not None:
|
@@ -686,6 +706,18 @@ class _LoadBalancerState:
|
|
686
706
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]):
|
687
707
|
pulumi.set(self, "reserved_ips", value)
|
688
708
|
|
709
|
+
@property
|
710
|
+
@pulumi.getter(name="securityAttributes")
|
711
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
712
|
+
"""
|
713
|
+
(Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
714
|
+
"""
|
715
|
+
return pulumi.get(self, "security_attributes")
|
716
|
+
|
717
|
+
@security_attributes.setter
|
718
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
719
|
+
pulumi.set(self, "security_attributes", value)
|
720
|
+
|
689
721
|
@property
|
690
722
|
@pulumi.getter
|
691
723
|
def shape(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -779,6 +811,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
779
811
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
780
812
|
request_id_header: Optional[pulumi.Input[builtins.str]] = None,
|
781
813
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
814
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
782
815
|
shape: Optional[pulumi.Input[builtins.str]] = None,
|
783
816
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
784
817
|
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -841,6 +874,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
841
874
|
reserved_ips=[{
|
842
875
|
"id": load_balancer_reserved_ips_id,
|
843
876
|
}],
|
877
|
+
security_attributes=load_balancer_security_attributes,
|
844
878
|
shape_details={
|
845
879
|
"maximum_bandwidth_in_mbps": load_balancer_shape_details_maximum_bandwidth_in_mbps,
|
846
880
|
"minimum_bandwidth_in_mbps": load_balancer_shape_details_minimum_bandwidth_in_mbps,
|
@@ -914,6 +948,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
914
948
|
* Unless the header name is "" it must start with "X-" prefix.
|
915
949
|
* Setting the header name to "" will set it to the default: X-Request-Id.
|
916
950
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
|
951
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
917
952
|
:param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
|
918
953
|
:param pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
|
919
954
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] subnet_ids: An array of subnet [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
@@ -986,6 +1021,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
986
1021
|
reserved_ips=[{
|
987
1022
|
"id": load_balancer_reserved_ips_id,
|
988
1023
|
}],
|
1024
|
+
security_attributes=load_balancer_security_attributes,
|
989
1025
|
shape_details={
|
990
1026
|
"maximum_bandwidth_in_mbps": load_balancer_shape_details_maximum_bandwidth_in_mbps,
|
991
1027
|
"minimum_bandwidth_in_mbps": load_balancer_shape_details_minimum_bandwidth_in_mbps,
|
@@ -1026,6 +1062,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1026
1062
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1027
1063
|
request_id_header: Optional[pulumi.Input[builtins.str]] = None,
|
1028
1064
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
1065
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1029
1066
|
shape: Optional[pulumi.Input[builtins.str]] = None,
|
1030
1067
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
1031
1068
|
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -1053,6 +1090,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1053
1090
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
1054
1091
|
__props__.__dict__["request_id_header"] = request_id_header
|
1055
1092
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
1093
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1056
1094
|
if shape is None and not opts.urn:
|
1057
1095
|
raise TypeError("Missing required property 'shape'")
|
1058
1096
|
__props__.__dict__["shape"] = shape
|
@@ -1088,6 +1126,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1088
1126
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1089
1127
|
request_id_header: Optional[pulumi.Input[builtins.str]] = None,
|
1090
1128
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
1129
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1091
1130
|
shape: Optional[pulumi.Input[builtins.str]] = None,
|
1092
1131
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
1093
1132
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1160,6 +1199,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1160
1199
|
* Unless the header name is "" it must start with "X-" prefix.
|
1161
1200
|
* Setting the header name to "" will set it to the default: X-Request-Id.
|
1162
1201
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
|
1202
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
1163
1203
|
:param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
|
1164
1204
|
:param pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
|
1165
1205
|
:param pulumi.Input[builtins.str] state: The current state of the load balancer.
|
@@ -1188,6 +1228,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1188
1228
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
1189
1229
|
__props__.__dict__["request_id_header"] = request_id_header
|
1190
1230
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
1231
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1191
1232
|
__props__.__dict__["shape"] = shape
|
1192
1233
|
__props__.__dict__["shape_details"] = shape_details
|
1193
1234
|
__props__.__dict__["state"] = state
|
@@ -1347,6 +1388,14 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1347
1388
|
"""
|
1348
1389
|
return pulumi.get(self, "reserved_ips")
|
1349
1390
|
|
1391
|
+
@property
|
1392
|
+
@pulumi.getter(name="securityAttributes")
|
1393
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1394
|
+
"""
|
1395
|
+
(Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
1396
|
+
"""
|
1397
|
+
return pulumi.get(self, "security_attributes")
|
1398
|
+
|
1350
1399
|
@property
|
1351
1400
|
@pulumi.getter
|
1352
1401
|
def shape(self) -> pulumi.Output[builtins.str]:
|
@@ -3739,6 +3739,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3739
3739
|
network_security_group_ids: Sequence[builtins.str],
|
3740
3740
|
request_id_header: builtins.str,
|
3741
3741
|
reserved_ips: Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult'],
|
3742
|
+
security_attributes: Mapping[str, builtins.str],
|
3742
3743
|
shape: builtins.str,
|
3743
3744
|
shape_details: Sequence['outputs.GetLoadBalancersLoadBalancerShapeDetailResult'],
|
3744
3745
|
state: builtins.str,
|
@@ -3758,6 +3759,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3758
3759
|
:param builtins.bool is_request_id_enabled: Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
3759
3760
|
:param Sequence[builtins.str] network_security_group_ids: An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the load balancer.
|
3760
3761
|
:param builtins.str request_id_header: If isRequestIdEnabled is true then this field contains the name of the header field that contains the unique request id that is attached to every request from the load balancer to the load balancer backends and to every response from the load balancer.
|
3762
|
+
:param Mapping[str, builtins.str] security_attributes: Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
3761
3763
|
:param builtins.str shape: A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `100Mbps`
|
3762
3764
|
:param Sequence['GetLoadBalancersLoadBalancerShapeDetailArgs'] shape_details: The configuration details to update load balancer to a different shape.
|
3763
3765
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `SUCCEEDED`
|
@@ -3779,6 +3781,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3779
3781
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
3780
3782
|
pulumi.set(__self__, "request_id_header", request_id_header)
|
3781
3783
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
3784
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
3782
3785
|
pulumi.set(__self__, "shape", shape)
|
3783
3786
|
pulumi.set(__self__, "shape_details", shape_details)
|
3784
3787
|
pulumi.set(__self__, "state", state)
|
@@ -3893,6 +3896,14 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3893
3896
|
def reserved_ips(self) -> Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult']:
|
3894
3897
|
return pulumi.get(self, "reserved_ips")
|
3895
3898
|
|
3899
|
+
@property
|
3900
|
+
@pulumi.getter(name="securityAttributes")
|
3901
|
+
def security_attributes(self) -> Mapping[str, builtins.str]:
|
3902
|
+
"""
|
3903
|
+
Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
|
3904
|
+
"""
|
3905
|
+
return pulumi.get(self, "security_attributes")
|
3906
|
+
|
3896
3907
|
@property
|
3897
3908
|
@pulumi.getter
|
3898
3909
|
def shape(self) -> builtins.str:
|
pulumi_oci/pulumi-plugin.json
CHANGED