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
pulumi_oci/sch/outputs.py
CHANGED
@@ -24,10 +24,13 @@ __all__ = [
|
|
24
24
|
'ConnectorSourceMonitoringSourceNamespaceDetails',
|
25
25
|
'ConnectorSourceMonitoringSourceNamespaceDetailsNamespace',
|
26
26
|
'ConnectorSourceMonitoringSourceNamespaceDetailsNamespaceMetrics',
|
27
|
+
'ConnectorSourcePrivateEndpointMetadata',
|
27
28
|
'ConnectorTarget',
|
28
29
|
'ConnectorTargetDimension',
|
29
30
|
'ConnectorTargetDimensionDimensionValue',
|
31
|
+
'ConnectorTargetPrivateEndpointMetadata',
|
30
32
|
'ConnectorTask',
|
33
|
+
'ConnectorTaskPrivateEndpointMetadata',
|
31
34
|
'GetConnectorPluginsConnectorPluginCollectionResult',
|
32
35
|
'GetConnectorPluginsConnectorPluginCollectionItemResult',
|
33
36
|
'GetConnectorPluginsFilterResult',
|
@@ -38,10 +41,13 @@ __all__ = [
|
|
38
41
|
'GetServiceConnectorSourceMonitoringSourceNamespaceDetailResult',
|
39
42
|
'GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceResult',
|
40
43
|
'GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceMetricResult',
|
44
|
+
'GetServiceConnectorSourcePrivateEndpointMetadataResult',
|
41
45
|
'GetServiceConnectorTargetResult',
|
42
46
|
'GetServiceConnectorTargetDimensionResult',
|
43
47
|
'GetServiceConnectorTargetDimensionDimensionValueResult',
|
48
|
+
'GetServiceConnectorTargetPrivateEndpointMetadataResult',
|
44
49
|
'GetServiceConnectorTaskResult',
|
50
|
+
'GetServiceConnectorTaskPrivateEndpointMetadataResult',
|
45
51
|
'GetServiceConnectorsFilterResult',
|
46
52
|
'GetServiceConnectorsServiceConnectorCollectionResult',
|
47
53
|
'GetServiceConnectorsServiceConnectorCollectionItemResult',
|
@@ -52,10 +58,13 @@ __all__ = [
|
|
52
58
|
'GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailResult',
|
53
59
|
'GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespaceResult',
|
54
60
|
'GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespaceMetricResult',
|
61
|
+
'GetServiceConnectorsServiceConnectorCollectionItemSourcePrivateEndpointMetadataResult',
|
55
62
|
'GetServiceConnectorsServiceConnectorCollectionItemTargetResult',
|
56
63
|
'GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionResult',
|
57
64
|
'GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionDimensionValueResult',
|
65
|
+
'GetServiceConnectorsServiceConnectorCollectionItemTargetPrivateEndpointMetadataResult',
|
58
66
|
'GetServiceConnectorsServiceConnectorCollectionItemTaskResult',
|
67
|
+
'GetServiceConnectorsServiceConnectorCollectionItemTaskPrivateEndpointMetadataResult',
|
59
68
|
]
|
60
69
|
|
61
70
|
@pulumi.output_type
|
@@ -71,6 +80,8 @@ class ConnectorSource(dict):
|
|
71
80
|
suggest = "monitoring_sources"
|
72
81
|
elif key == "pluginName":
|
73
82
|
suggest = "plugin_name"
|
83
|
+
elif key == "privateEndpointMetadatas":
|
84
|
+
suggest = "private_endpoint_metadatas"
|
74
85
|
elif key == "streamId":
|
75
86
|
suggest = "stream_id"
|
76
87
|
|
@@ -92,6 +103,7 @@ class ConnectorSource(dict):
|
|
92
103
|
log_sources: Optional[Sequence['outputs.ConnectorSourceLogSource']] = None,
|
93
104
|
monitoring_sources: Optional[Sequence['outputs.ConnectorSourceMonitoringSource']] = None,
|
94
105
|
plugin_name: Optional[builtins.str] = None,
|
106
|
+
private_endpoint_metadatas: Optional[Sequence['outputs.ConnectorSourcePrivateEndpointMetadata']] = None,
|
95
107
|
stream_id: Optional[builtins.str] = None):
|
96
108
|
"""
|
97
109
|
:param builtins.str kind: (Updatable) The type discriminator.
|
@@ -100,6 +112,7 @@ class ConnectorSource(dict):
|
|
100
112
|
:param Sequence['ConnectorSourceLogSourceArgs'] log_sources: (Updatable) The logs for this Logging source.
|
101
113
|
:param Sequence['ConnectorSourceMonitoringSourceArgs'] monitoring_sources: (Updatable) One or more compartment-specific lists of metric namespaces to retrieve data from.
|
102
114
|
:param builtins.str plugin_name: (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
115
|
+
:param Sequence['ConnectorSourcePrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
103
116
|
:param builtins.str stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
104
117
|
"""
|
105
118
|
pulumi.set(__self__, "kind", kind)
|
@@ -113,6 +126,8 @@ class ConnectorSource(dict):
|
|
113
126
|
pulumi.set(__self__, "monitoring_sources", monitoring_sources)
|
114
127
|
if plugin_name is not None:
|
115
128
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
129
|
+
if private_endpoint_metadatas is not None:
|
130
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
116
131
|
if stream_id is not None:
|
117
132
|
pulumi.set(__self__, "stream_id", stream_id)
|
118
133
|
|
@@ -164,6 +179,14 @@ class ConnectorSource(dict):
|
|
164
179
|
"""
|
165
180
|
return pulumi.get(self, "plugin_name")
|
166
181
|
|
182
|
+
@property
|
183
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
184
|
+
def private_endpoint_metadatas(self) -> Optional[Sequence['outputs.ConnectorSourcePrivateEndpointMetadata']]:
|
185
|
+
"""
|
186
|
+
The private endpoint metadata for the connector's source or target.
|
187
|
+
"""
|
188
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
189
|
+
|
167
190
|
@property
|
168
191
|
@pulumi.getter(name="streamId")
|
169
192
|
def stream_id(self) -> Optional[builtins.str]:
|
@@ -382,6 +405,56 @@ class ConnectorSourceMonitoringSourceNamespaceDetailsNamespaceMetrics(dict):
|
|
382
405
|
return pulumi.get(self, "kind")
|
383
406
|
|
384
407
|
|
408
|
+
@pulumi.output_type
|
409
|
+
class ConnectorSourcePrivateEndpointMetadata(dict):
|
410
|
+
@staticmethod
|
411
|
+
def __key_warning(key: str):
|
412
|
+
suggest = None
|
413
|
+
if key == "rceDnsProxyIpAddress":
|
414
|
+
suggest = "rce_dns_proxy_ip_address"
|
415
|
+
elif key == "rceTrafficIpAddress":
|
416
|
+
suggest = "rce_traffic_ip_address"
|
417
|
+
|
418
|
+
if suggest:
|
419
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorSourcePrivateEndpointMetadata. Access the value via the '{suggest}' property getter instead.")
|
420
|
+
|
421
|
+
def __getitem__(self, key: str) -> Any:
|
422
|
+
ConnectorSourcePrivateEndpointMetadata.__key_warning(key)
|
423
|
+
return super().__getitem__(key)
|
424
|
+
|
425
|
+
def get(self, key: str, default = None) -> Any:
|
426
|
+
ConnectorSourcePrivateEndpointMetadata.__key_warning(key)
|
427
|
+
return super().get(key, default)
|
428
|
+
|
429
|
+
def __init__(__self__, *,
|
430
|
+
rce_dns_proxy_ip_address: Optional[builtins.str] = None,
|
431
|
+
rce_traffic_ip_address: Optional[builtins.str] = None):
|
432
|
+
"""
|
433
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
434
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
435
|
+
"""
|
436
|
+
if rce_dns_proxy_ip_address is not None:
|
437
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
438
|
+
if rce_traffic_ip_address is not None:
|
439
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
440
|
+
|
441
|
+
@property
|
442
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
443
|
+
def rce_dns_proxy_ip_address(self) -> Optional[builtins.str]:
|
444
|
+
"""
|
445
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
446
|
+
"""
|
447
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
448
|
+
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
451
|
+
def rce_traffic_ip_address(self) -> Optional[builtins.str]:
|
452
|
+
"""
|
453
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
454
|
+
"""
|
455
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
456
|
+
|
457
|
+
|
385
458
|
@pulumi.output_type
|
386
459
|
class ConnectorTarget(dict):
|
387
460
|
@staticmethod
|
@@ -411,6 +484,8 @@ class ConnectorTarget(dict):
|
|
411
484
|
suggest = "metric_namespace"
|
412
485
|
elif key == "objectNamePrefix":
|
413
486
|
suggest = "object_name_prefix"
|
487
|
+
elif key == "privateEndpointMetadatas":
|
488
|
+
suggest = "private_endpoint_metadatas"
|
414
489
|
elif key == "streamId":
|
415
490
|
suggest = "stream_id"
|
416
491
|
elif key == "topicId":
|
@@ -445,6 +520,7 @@ class ConnectorTarget(dict):
|
|
445
520
|
metric_namespace: Optional[builtins.str] = None,
|
446
521
|
namespace: Optional[builtins.str] = None,
|
447
522
|
object_name_prefix: Optional[builtins.str] = None,
|
523
|
+
private_endpoint_metadatas: Optional[Sequence['outputs.ConnectorTargetPrivateEndpointMetadata']] = None,
|
448
524
|
stream_id: Optional[builtins.str] = None,
|
449
525
|
topic_id: Optional[builtins.str] = None):
|
450
526
|
"""
|
@@ -465,6 +541,7 @@ class ConnectorTarget(dict):
|
|
465
541
|
:param builtins.str metric_namespace: (Updatable) The namespace of the metric. Example: `oci_computeagent`
|
466
542
|
:param builtins.str namespace: (Updatable) The namespace.
|
467
543
|
:param builtins.str object_name_prefix: (Updatable) The prefix of the objects. Avoid entering confidential information.
|
544
|
+
:param Sequence['ConnectorTargetPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
468
545
|
:param builtins.str stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
469
546
|
:param builtins.str topic_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the topic.
|
470
547
|
"""
|
@@ -501,6 +578,8 @@ class ConnectorTarget(dict):
|
|
501
578
|
pulumi.set(__self__, "namespace", namespace)
|
502
579
|
if object_name_prefix is not None:
|
503
580
|
pulumi.set(__self__, "object_name_prefix", object_name_prefix)
|
581
|
+
if private_endpoint_metadatas is not None:
|
582
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
504
583
|
if stream_id is not None:
|
505
584
|
pulumi.set(__self__, "stream_id", stream_id)
|
506
585
|
if topic_id is not None:
|
@@ -642,6 +721,14 @@ class ConnectorTarget(dict):
|
|
642
721
|
"""
|
643
722
|
return pulumi.get(self, "object_name_prefix")
|
644
723
|
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
726
|
+
def private_endpoint_metadatas(self) -> Optional[Sequence['outputs.ConnectorTargetPrivateEndpointMetadata']]:
|
727
|
+
"""
|
728
|
+
The private endpoint metadata for the connector's source or target.
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
731
|
+
|
645
732
|
@property
|
646
733
|
@pulumi.getter(name="streamId")
|
647
734
|
def stream_id(self) -> Optional[builtins.str]:
|
@@ -749,6 +836,56 @@ class ConnectorTargetDimensionDimensionValue(dict):
|
|
749
836
|
return pulumi.get(self, "value")
|
750
837
|
|
751
838
|
|
839
|
+
@pulumi.output_type
|
840
|
+
class ConnectorTargetPrivateEndpointMetadata(dict):
|
841
|
+
@staticmethod
|
842
|
+
def __key_warning(key: str):
|
843
|
+
suggest = None
|
844
|
+
if key == "rceDnsProxyIpAddress":
|
845
|
+
suggest = "rce_dns_proxy_ip_address"
|
846
|
+
elif key == "rceTrafficIpAddress":
|
847
|
+
suggest = "rce_traffic_ip_address"
|
848
|
+
|
849
|
+
if suggest:
|
850
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorTargetPrivateEndpointMetadata. Access the value via the '{suggest}' property getter instead.")
|
851
|
+
|
852
|
+
def __getitem__(self, key: str) -> Any:
|
853
|
+
ConnectorTargetPrivateEndpointMetadata.__key_warning(key)
|
854
|
+
return super().__getitem__(key)
|
855
|
+
|
856
|
+
def get(self, key: str, default = None) -> Any:
|
857
|
+
ConnectorTargetPrivateEndpointMetadata.__key_warning(key)
|
858
|
+
return super().get(key, default)
|
859
|
+
|
860
|
+
def __init__(__self__, *,
|
861
|
+
rce_dns_proxy_ip_address: Optional[builtins.str] = None,
|
862
|
+
rce_traffic_ip_address: Optional[builtins.str] = None):
|
863
|
+
"""
|
864
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
865
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
866
|
+
"""
|
867
|
+
if rce_dns_proxy_ip_address is not None:
|
868
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
869
|
+
if rce_traffic_ip_address is not None:
|
870
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
871
|
+
|
872
|
+
@property
|
873
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
874
|
+
def rce_dns_proxy_ip_address(self) -> Optional[builtins.str]:
|
875
|
+
"""
|
876
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
877
|
+
"""
|
878
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
879
|
+
|
880
|
+
@property
|
881
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
882
|
+
def rce_traffic_ip_address(self) -> Optional[builtins.str]:
|
883
|
+
"""
|
884
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
885
|
+
"""
|
886
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
887
|
+
|
888
|
+
|
752
889
|
@pulumi.output_type
|
753
890
|
class ConnectorTask(dict):
|
754
891
|
@staticmethod
|
@@ -760,6 +897,8 @@ class ConnectorTask(dict):
|
|
760
897
|
suggest = "batch_time_in_sec"
|
761
898
|
elif key == "functionId":
|
762
899
|
suggest = "function_id"
|
900
|
+
elif key == "privateEndpointMetadatas":
|
901
|
+
suggest = "private_endpoint_metadatas"
|
763
902
|
|
764
903
|
if suggest:
|
765
904
|
pulumi.log.warn(f"Key '{key}' not found in ConnectorTask. Access the value via the '{suggest}' property getter instead.")
|
@@ -777,13 +916,15 @@ class ConnectorTask(dict):
|
|
777
916
|
batch_size_in_kbs: Optional[builtins.int] = None,
|
778
917
|
batch_time_in_sec: Optional[builtins.int] = None,
|
779
918
|
condition: Optional[builtins.str] = None,
|
780
|
-
function_id: Optional[builtins.str] = None
|
919
|
+
function_id: Optional[builtins.str] = None,
|
920
|
+
private_endpoint_metadatas: Optional[Sequence['outputs.ConnectorTaskPrivateEndpointMetadata']] = None):
|
781
921
|
"""
|
782
922
|
:param builtins.str kind: (Updatable) The type descriminator.
|
783
923
|
:param builtins.int batch_size_in_kbs: (Updatable) Size limit (kilobytes) for batch sent to invoke the function.
|
784
924
|
:param builtins.int batch_time_in_sec: (Updatable) Time limit (seconds) for batch sent to invoke the function.
|
785
925
|
:param builtins.str condition: (Updatable) A filter or mask to limit the source used in the flow defined by the connector.
|
786
926
|
:param builtins.str function_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
927
|
+
:param Sequence['ConnectorTaskPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
787
928
|
"""
|
788
929
|
pulumi.set(__self__, "kind", kind)
|
789
930
|
if batch_size_in_kbs is not None:
|
@@ -794,6 +935,8 @@ class ConnectorTask(dict):
|
|
794
935
|
pulumi.set(__self__, "condition", condition)
|
795
936
|
if function_id is not None:
|
796
937
|
pulumi.set(__self__, "function_id", function_id)
|
938
|
+
if private_endpoint_metadatas is not None:
|
939
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
797
940
|
|
798
941
|
@property
|
799
942
|
@pulumi.getter
|
@@ -835,6 +978,64 @@ class ConnectorTask(dict):
|
|
835
978
|
"""
|
836
979
|
return pulumi.get(self, "function_id")
|
837
980
|
|
981
|
+
@property
|
982
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
983
|
+
def private_endpoint_metadatas(self) -> Optional[Sequence['outputs.ConnectorTaskPrivateEndpointMetadata']]:
|
984
|
+
"""
|
985
|
+
The private endpoint metadata for the connector's source or target.
|
986
|
+
"""
|
987
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
988
|
+
|
989
|
+
|
990
|
+
@pulumi.output_type
|
991
|
+
class ConnectorTaskPrivateEndpointMetadata(dict):
|
992
|
+
@staticmethod
|
993
|
+
def __key_warning(key: str):
|
994
|
+
suggest = None
|
995
|
+
if key == "rceDnsProxyIpAddress":
|
996
|
+
suggest = "rce_dns_proxy_ip_address"
|
997
|
+
elif key == "rceTrafficIpAddress":
|
998
|
+
suggest = "rce_traffic_ip_address"
|
999
|
+
|
1000
|
+
if suggest:
|
1001
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorTaskPrivateEndpointMetadata. Access the value via the '{suggest}' property getter instead.")
|
1002
|
+
|
1003
|
+
def __getitem__(self, key: str) -> Any:
|
1004
|
+
ConnectorTaskPrivateEndpointMetadata.__key_warning(key)
|
1005
|
+
return super().__getitem__(key)
|
1006
|
+
|
1007
|
+
def get(self, key: str, default = None) -> Any:
|
1008
|
+
ConnectorTaskPrivateEndpointMetadata.__key_warning(key)
|
1009
|
+
return super().get(key, default)
|
1010
|
+
|
1011
|
+
def __init__(__self__, *,
|
1012
|
+
rce_dns_proxy_ip_address: Optional[builtins.str] = None,
|
1013
|
+
rce_traffic_ip_address: Optional[builtins.str] = None):
|
1014
|
+
"""
|
1015
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1016
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1017
|
+
"""
|
1018
|
+
if rce_dns_proxy_ip_address is not None:
|
1019
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
1020
|
+
if rce_traffic_ip_address is not None:
|
1021
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
1022
|
+
|
1023
|
+
@property
|
1024
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
1025
|
+
def rce_dns_proxy_ip_address(self) -> Optional[builtins.str]:
|
1026
|
+
"""
|
1027
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1028
|
+
"""
|
1029
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
1030
|
+
|
1031
|
+
@property
|
1032
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
1033
|
+
def rce_traffic_ip_address(self) -> Optional[builtins.str]:
|
1034
|
+
"""
|
1035
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1036
|
+
"""
|
1037
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
1038
|
+
|
838
1039
|
|
839
1040
|
@pulumi.output_type
|
840
1041
|
class GetConnectorPluginsConnectorPluginCollectionResult(dict):
|
@@ -985,14 +1186,16 @@ class GetServiceConnectorSourceResult(dict):
|
|
985
1186
|
log_sources: Sequence['outputs.GetServiceConnectorSourceLogSourceResult'],
|
986
1187
|
monitoring_sources: Sequence['outputs.GetServiceConnectorSourceMonitoringSourceResult'],
|
987
1188
|
plugin_name: builtins.str,
|
1189
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorSourcePrivateEndpointMetadataResult'],
|
988
1190
|
stream_id: builtins.str):
|
989
1191
|
"""
|
990
1192
|
:param builtins.str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
991
1193
|
:param Sequence['GetServiceConnectorSourceCursorArgs'] cursors: The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
|
992
|
-
:param builtins.str kind: The type
|
1194
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
993
1195
|
:param Sequence['GetServiceConnectorSourceLogSourceArgs'] log_sources: The logs for this Logging source.
|
994
1196
|
:param Sequence['GetServiceConnectorSourceMonitoringSourceArgs'] monitoring_sources: One or more compartment-specific lists of metric namespaces to retrieve data from.
|
995
1197
|
:param builtins.str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
1198
|
+
:param Sequence['GetServiceConnectorSourcePrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
996
1199
|
:param builtins.str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
997
1200
|
"""
|
998
1201
|
pulumi.set(__self__, "config_map", config_map)
|
@@ -1001,6 +1204,7 @@ class GetServiceConnectorSourceResult(dict):
|
|
1001
1204
|
pulumi.set(__self__, "log_sources", log_sources)
|
1002
1205
|
pulumi.set(__self__, "monitoring_sources", monitoring_sources)
|
1003
1206
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
1207
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
1004
1208
|
pulumi.set(__self__, "stream_id", stream_id)
|
1005
1209
|
|
1006
1210
|
@property
|
@@ -1023,7 +1227,7 @@ class GetServiceConnectorSourceResult(dict):
|
|
1023
1227
|
@pulumi.getter
|
1024
1228
|
def kind(self) -> builtins.str:
|
1025
1229
|
"""
|
1026
|
-
The type
|
1230
|
+
The type of dimension value: static or evaluated.
|
1027
1231
|
"""
|
1028
1232
|
return pulumi.get(self, "kind")
|
1029
1233
|
|
@@ -1051,6 +1255,14 @@ class GetServiceConnectorSourceResult(dict):
|
|
1051
1255
|
"""
|
1052
1256
|
return pulumi.get(self, "plugin_name")
|
1053
1257
|
|
1258
|
+
@property
|
1259
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
1260
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorSourcePrivateEndpointMetadataResult']:
|
1261
|
+
"""
|
1262
|
+
The private endpoint metadata for the connector's source or target.
|
1263
|
+
"""
|
1264
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
1265
|
+
|
1054
1266
|
@property
|
1055
1267
|
@pulumi.getter(name="streamId")
|
1056
1268
|
def stream_id(self) -> builtins.str:
|
@@ -1065,7 +1277,7 @@ class GetServiceConnectorSourceCursorResult(dict):
|
|
1065
1277
|
def __init__(__self__, *,
|
1066
1278
|
kind: builtins.str):
|
1067
1279
|
"""
|
1068
|
-
:param builtins.str kind: The type
|
1280
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1069
1281
|
"""
|
1070
1282
|
pulumi.set(__self__, "kind", kind)
|
1071
1283
|
|
@@ -1073,7 +1285,7 @@ class GetServiceConnectorSourceCursorResult(dict):
|
|
1073
1285
|
@pulumi.getter
|
1074
1286
|
def kind(self) -> builtins.str:
|
1075
1287
|
"""
|
1076
|
-
The type
|
1288
|
+
The type of dimension value: static or evaluated.
|
1077
1289
|
"""
|
1078
1290
|
return pulumi.get(self, "kind")
|
1079
1291
|
|
@@ -1153,7 +1365,7 @@ class GetServiceConnectorSourceMonitoringSourceNamespaceDetailResult(dict):
|
|
1153
1365
|
kind: builtins.str,
|
1154
1366
|
namespaces: Sequence['outputs.GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceResult']):
|
1155
1367
|
"""
|
1156
|
-
:param builtins.str kind: The type
|
1368
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1157
1369
|
:param Sequence['GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceArgs'] namespaces: The namespaces for the compartment-specific list.
|
1158
1370
|
"""
|
1159
1371
|
pulumi.set(__self__, "kind", kind)
|
@@ -1163,7 +1375,7 @@ class GetServiceConnectorSourceMonitoringSourceNamespaceDetailResult(dict):
|
|
1163
1375
|
@pulumi.getter
|
1164
1376
|
def kind(self) -> builtins.str:
|
1165
1377
|
"""
|
1166
|
-
The type
|
1378
|
+
The type of dimension value: static or evaluated.
|
1167
1379
|
"""
|
1168
1380
|
return pulumi.get(self, "kind")
|
1169
1381
|
|
@@ -1210,7 +1422,7 @@ class GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceMetricRes
|
|
1210
1422
|
def __init__(__self__, *,
|
1211
1423
|
kind: builtins.str):
|
1212
1424
|
"""
|
1213
|
-
:param builtins.str kind: The type
|
1425
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1214
1426
|
"""
|
1215
1427
|
pulumi.set(__self__, "kind", kind)
|
1216
1428
|
|
@@ -1218,11 +1430,40 @@ class GetServiceConnectorSourceMonitoringSourceNamespaceDetailNamespaceMetricRes
|
|
1218
1430
|
@pulumi.getter
|
1219
1431
|
def kind(self) -> builtins.str:
|
1220
1432
|
"""
|
1221
|
-
The type
|
1433
|
+
The type of dimension value: static or evaluated.
|
1222
1434
|
"""
|
1223
1435
|
return pulumi.get(self, "kind")
|
1224
1436
|
|
1225
1437
|
|
1438
|
+
@pulumi.output_type
|
1439
|
+
class GetServiceConnectorSourcePrivateEndpointMetadataResult(dict):
|
1440
|
+
def __init__(__self__, *,
|
1441
|
+
rce_dns_proxy_ip_address: builtins.str,
|
1442
|
+
rce_traffic_ip_address: builtins.str):
|
1443
|
+
"""
|
1444
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1445
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1446
|
+
"""
|
1447
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
1448
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
1449
|
+
|
1450
|
+
@property
|
1451
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
1452
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
1453
|
+
"""
|
1454
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1455
|
+
"""
|
1456
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
1457
|
+
|
1458
|
+
@property
|
1459
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
1460
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
1461
|
+
"""
|
1462
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1463
|
+
"""
|
1464
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
1465
|
+
|
1466
|
+
|
1226
1467
|
@pulumi.output_type
|
1227
1468
|
class GetServiceConnectorTargetResult(dict):
|
1228
1469
|
def __init__(__self__, *,
|
@@ -1243,6 +1484,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1243
1484
|
metric_namespace: builtins.str,
|
1244
1485
|
namespace: builtins.str,
|
1245
1486
|
object_name_prefix: builtins.str,
|
1487
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorTargetPrivateEndpointMetadataResult'],
|
1246
1488
|
stream_id: builtins.str,
|
1247
1489
|
topic_id: builtins.str):
|
1248
1490
|
"""
|
@@ -1256,13 +1498,14 @@ class GetServiceConnectorTargetResult(dict):
|
|
1256
1498
|
:param Sequence['GetServiceConnectorTargetDimensionArgs'] dimensions: List of dimension names and values.
|
1257
1499
|
:param builtins.bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
1258
1500
|
:param builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
1259
|
-
:param builtins.str kind: The type
|
1501
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1260
1502
|
:param builtins.str log_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
1261
1503
|
:param builtins.str log_source_identifier: Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
|
1262
1504
|
:param builtins.str metric: The name of the metric. Example: `CpuUtilization`
|
1263
1505
|
:param builtins.str metric_namespace: The namespace of the metric. Example: `oci_computeagent`
|
1264
1506
|
:param builtins.str namespace: The namespace.
|
1265
1507
|
:param builtins.str object_name_prefix: The prefix of the objects. Avoid entering confidential information.
|
1508
|
+
:param Sequence['GetServiceConnectorTargetPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
1266
1509
|
:param builtins.str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
1267
1510
|
:param builtins.str topic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the topic.
|
1268
1511
|
"""
|
@@ -1283,6 +1526,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1283
1526
|
pulumi.set(__self__, "metric_namespace", metric_namespace)
|
1284
1527
|
pulumi.set(__self__, "namespace", namespace)
|
1285
1528
|
pulumi.set(__self__, "object_name_prefix", object_name_prefix)
|
1529
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
1286
1530
|
pulumi.set(__self__, "stream_id", stream_id)
|
1287
1531
|
pulumi.set(__self__, "topic_id", topic_id)
|
1288
1532
|
|
@@ -1370,7 +1614,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1370
1614
|
@pulumi.getter
|
1371
1615
|
def kind(self) -> builtins.str:
|
1372
1616
|
"""
|
1373
|
-
The type
|
1617
|
+
The type of dimension value: static or evaluated.
|
1374
1618
|
"""
|
1375
1619
|
return pulumi.get(self, "kind")
|
1376
1620
|
|
@@ -1422,6 +1666,14 @@ class GetServiceConnectorTargetResult(dict):
|
|
1422
1666
|
"""
|
1423
1667
|
return pulumi.get(self, "object_name_prefix")
|
1424
1668
|
|
1669
|
+
@property
|
1670
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
1671
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorTargetPrivateEndpointMetadataResult']:
|
1672
|
+
"""
|
1673
|
+
The private endpoint metadata for the connector's source or target.
|
1674
|
+
"""
|
1675
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
1676
|
+
|
1425
1677
|
@property
|
1426
1678
|
@pulumi.getter(name="streamId")
|
1427
1679
|
def stream_id(self) -> builtins.str:
|
@@ -1475,7 +1727,7 @@ class GetServiceConnectorTargetDimensionDimensionValueResult(dict):
|
|
1475
1727
|
path: builtins.str,
|
1476
1728
|
value: builtins.str):
|
1477
1729
|
"""
|
1478
|
-
:param builtins.str kind: The type
|
1730
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1479
1731
|
:param builtins.str path: The location to use for deriving the dimension value (evaluated). The path must start with `logContent` in an acceptable notation style with supported [JMESPath selectors](https://jmespath.org/specification.html): expression with dot and index operator (`.` and `[]`). Example with dot notation: `logContent.data` Example with index notation: `logContent.data[0].content` For information on valid dimension keys and values, see [MetricDataDetails Reference](https://docs.cloud.oracle.com/iaas/api/#/en/monitoring/latest/datatypes/MetricDataDetails). The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value `"compartmentId"` is returned as `compartmentId`.) If the evaluated value is invalid, then the returned value is `SCH_EVAL_INVALID_VALUE`. If the evaluated value is empty, then the returned value is `SCH_EVAL_VALUE_EMPTY`.
|
1480
1732
|
:param builtins.str value: The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see [MetricDataDetails Reference](https://docs.cloud.oracle.com/iaas/api/#/en/monitoring/latest/datatypes/MetricDataDetails).
|
1481
1733
|
"""
|
@@ -1487,7 +1739,7 @@ class GetServiceConnectorTargetDimensionDimensionValueResult(dict):
|
|
1487
1739
|
@pulumi.getter
|
1488
1740
|
def kind(self) -> builtins.str:
|
1489
1741
|
"""
|
1490
|
-
The type
|
1742
|
+
The type of dimension value: static or evaluated.
|
1491
1743
|
"""
|
1492
1744
|
return pulumi.get(self, "kind")
|
1493
1745
|
|
@@ -1508,6 +1760,35 @@ class GetServiceConnectorTargetDimensionDimensionValueResult(dict):
|
|
1508
1760
|
return pulumi.get(self, "value")
|
1509
1761
|
|
1510
1762
|
|
1763
|
+
@pulumi.output_type
|
1764
|
+
class GetServiceConnectorTargetPrivateEndpointMetadataResult(dict):
|
1765
|
+
def __init__(__self__, *,
|
1766
|
+
rce_dns_proxy_ip_address: builtins.str,
|
1767
|
+
rce_traffic_ip_address: builtins.str):
|
1768
|
+
"""
|
1769
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1770
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1771
|
+
"""
|
1772
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
1773
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
1774
|
+
|
1775
|
+
@property
|
1776
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
1777
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
1778
|
+
"""
|
1779
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1780
|
+
"""
|
1781
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
1782
|
+
|
1783
|
+
@property
|
1784
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
1785
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
1786
|
+
"""
|
1787
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1788
|
+
"""
|
1789
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
1790
|
+
|
1791
|
+
|
1511
1792
|
@pulumi.output_type
|
1512
1793
|
class GetServiceConnectorTaskResult(dict):
|
1513
1794
|
def __init__(__self__, *,
|
@@ -1515,19 +1796,22 @@ class GetServiceConnectorTaskResult(dict):
|
|
1515
1796
|
batch_time_in_sec: builtins.int,
|
1516
1797
|
condition: builtins.str,
|
1517
1798
|
function_id: builtins.str,
|
1518
|
-
kind: builtins.str
|
1799
|
+
kind: builtins.str,
|
1800
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorTaskPrivateEndpointMetadataResult']):
|
1519
1801
|
"""
|
1520
1802
|
:param builtins.int batch_size_in_kbs: Size limit (kilobytes) for batch sent to invoke the function.
|
1521
1803
|
:param builtins.int batch_time_in_sec: Time limit (seconds) for batch sent to invoke the function.
|
1522
1804
|
:param builtins.str condition: A filter or mask to limit the source used in the flow defined by the connector.
|
1523
1805
|
:param builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
1524
|
-
:param builtins.str kind: The type
|
1806
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1807
|
+
:param Sequence['GetServiceConnectorTaskPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
1525
1808
|
"""
|
1526
1809
|
pulumi.set(__self__, "batch_size_in_kbs", batch_size_in_kbs)
|
1527
1810
|
pulumi.set(__self__, "batch_time_in_sec", batch_time_in_sec)
|
1528
1811
|
pulumi.set(__self__, "condition", condition)
|
1529
1812
|
pulumi.set(__self__, "function_id", function_id)
|
1530
1813
|
pulumi.set(__self__, "kind", kind)
|
1814
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
1531
1815
|
|
1532
1816
|
@property
|
1533
1817
|
@pulumi.getter(name="batchSizeInKbs")
|
@@ -1565,10 +1849,47 @@ class GetServiceConnectorTaskResult(dict):
|
|
1565
1849
|
@pulumi.getter
|
1566
1850
|
def kind(self) -> builtins.str:
|
1567
1851
|
"""
|
1568
|
-
The type
|
1852
|
+
The type of dimension value: static or evaluated.
|
1569
1853
|
"""
|
1570
1854
|
return pulumi.get(self, "kind")
|
1571
1855
|
|
1856
|
+
@property
|
1857
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
1858
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorTaskPrivateEndpointMetadataResult']:
|
1859
|
+
"""
|
1860
|
+
The private endpoint metadata for the connector's source or target.
|
1861
|
+
"""
|
1862
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
1863
|
+
|
1864
|
+
|
1865
|
+
@pulumi.output_type
|
1866
|
+
class GetServiceConnectorTaskPrivateEndpointMetadataResult(dict):
|
1867
|
+
def __init__(__self__, *,
|
1868
|
+
rce_dns_proxy_ip_address: builtins.str,
|
1869
|
+
rce_traffic_ip_address: builtins.str):
|
1870
|
+
"""
|
1871
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1872
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1873
|
+
"""
|
1874
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
1875
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
1876
|
+
|
1877
|
+
@property
|
1878
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
1879
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
1880
|
+
"""
|
1881
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
1882
|
+
"""
|
1883
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
1884
|
+
|
1885
|
+
@property
|
1886
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
1887
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
1888
|
+
"""
|
1889
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
1890
|
+
"""
|
1891
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
1892
|
+
|
1572
1893
|
|
1573
1894
|
@pulumi.output_type
|
1574
1895
|
class GetServiceConnectorsFilterResult(dict):
|
@@ -1788,14 +2109,16 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1788
2109
|
log_sources: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourceLogSourceResult'],
|
1789
2110
|
monitoring_sources: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceResult'],
|
1790
2111
|
plugin_name: builtins.str,
|
2112
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourcePrivateEndpointMetadataResult'],
|
1791
2113
|
stream_id: builtins.str):
|
1792
2114
|
"""
|
1793
2115
|
:param builtins.str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
1794
2116
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceCursorArgs'] cursors: The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
|
1795
|
-
:param builtins.str kind: The type
|
2117
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1796
2118
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceLogSourceArgs'] log_sources: The logs for this Logging source.
|
1797
2119
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceArgs'] monitoring_sources: One or more compartment-specific lists of metric namespaces to retrieve data from.
|
1798
2120
|
:param builtins.str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
2121
|
+
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourcePrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
1799
2122
|
:param builtins.str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
1800
2123
|
"""
|
1801
2124
|
pulumi.set(__self__, "config_map", config_map)
|
@@ -1804,6 +2127,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1804
2127
|
pulumi.set(__self__, "log_sources", log_sources)
|
1805
2128
|
pulumi.set(__self__, "monitoring_sources", monitoring_sources)
|
1806
2129
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
2130
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
1807
2131
|
pulumi.set(__self__, "stream_id", stream_id)
|
1808
2132
|
|
1809
2133
|
@property
|
@@ -1826,7 +2150,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1826
2150
|
@pulumi.getter
|
1827
2151
|
def kind(self) -> builtins.str:
|
1828
2152
|
"""
|
1829
|
-
The type
|
2153
|
+
The type of dimension value: static or evaluated.
|
1830
2154
|
"""
|
1831
2155
|
return pulumi.get(self, "kind")
|
1832
2156
|
|
@@ -1854,6 +2178,14 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1854
2178
|
"""
|
1855
2179
|
return pulumi.get(self, "plugin_name")
|
1856
2180
|
|
2181
|
+
@property
|
2182
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
2183
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourcePrivateEndpointMetadataResult']:
|
2184
|
+
"""
|
2185
|
+
The private endpoint metadata for the connector's source or target.
|
2186
|
+
"""
|
2187
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
2188
|
+
|
1857
2189
|
@property
|
1858
2190
|
@pulumi.getter(name="streamId")
|
1859
2191
|
def stream_id(self) -> builtins.str:
|
@@ -1868,7 +2200,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceCursorResult(dict)
|
|
1868
2200
|
def __init__(__self__, *,
|
1869
2201
|
kind: builtins.str):
|
1870
2202
|
"""
|
1871
|
-
:param builtins.str kind: The type
|
2203
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1872
2204
|
"""
|
1873
2205
|
pulumi.set(__self__, "kind", kind)
|
1874
2206
|
|
@@ -1876,7 +2208,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceCursorResult(dict)
|
|
1876
2208
|
@pulumi.getter
|
1877
2209
|
def kind(self) -> builtins.str:
|
1878
2210
|
"""
|
1879
|
-
The type
|
2211
|
+
The type of dimension value: static or evaluated.
|
1880
2212
|
"""
|
1881
2213
|
return pulumi.get(self, "kind")
|
1882
2214
|
|
@@ -1956,7 +2288,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNa
|
|
1956
2288
|
kind: builtins.str,
|
1957
2289
|
namespaces: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespaceResult']):
|
1958
2290
|
"""
|
1959
|
-
:param builtins.str kind: The type
|
2291
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
1960
2292
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespaceArgs'] namespaces: The namespaces for the compartment-specific list.
|
1961
2293
|
"""
|
1962
2294
|
pulumi.set(__self__, "kind", kind)
|
@@ -1966,7 +2298,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNa
|
|
1966
2298
|
@pulumi.getter
|
1967
2299
|
def kind(self) -> builtins.str:
|
1968
2300
|
"""
|
1969
|
-
The type
|
2301
|
+
The type of dimension value: static or evaluated.
|
1970
2302
|
"""
|
1971
2303
|
return pulumi.get(self, "kind")
|
1972
2304
|
|
@@ -2013,7 +2345,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNa
|
|
2013
2345
|
def __init__(__self__, *,
|
2014
2346
|
kind: builtins.str):
|
2015
2347
|
"""
|
2016
|
-
:param builtins.str kind: The type
|
2348
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
2017
2349
|
"""
|
2018
2350
|
pulumi.set(__self__, "kind", kind)
|
2019
2351
|
|
@@ -2021,11 +2353,40 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNa
|
|
2021
2353
|
@pulumi.getter
|
2022
2354
|
def kind(self) -> builtins.str:
|
2023
2355
|
"""
|
2024
|
-
The type
|
2356
|
+
The type of dimension value: static or evaluated.
|
2025
2357
|
"""
|
2026
2358
|
return pulumi.get(self, "kind")
|
2027
2359
|
|
2028
2360
|
|
2361
|
+
@pulumi.output_type
|
2362
|
+
class GetServiceConnectorsServiceConnectorCollectionItemSourcePrivateEndpointMetadataResult(dict):
|
2363
|
+
def __init__(__self__, *,
|
2364
|
+
rce_dns_proxy_ip_address: builtins.str,
|
2365
|
+
rce_traffic_ip_address: builtins.str):
|
2366
|
+
"""
|
2367
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2368
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2369
|
+
"""
|
2370
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
2371
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
2372
|
+
|
2373
|
+
@property
|
2374
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
2375
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
2376
|
+
"""
|
2377
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2378
|
+
"""
|
2379
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
2380
|
+
|
2381
|
+
@property
|
2382
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
2383
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
2384
|
+
"""
|
2385
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2386
|
+
"""
|
2387
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
2388
|
+
|
2389
|
+
|
2029
2390
|
@pulumi.output_type
|
2030
2391
|
class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
2031
2392
|
def __init__(__self__, *,
|
@@ -2046,6 +2407,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2046
2407
|
metric_namespace: builtins.str,
|
2047
2408
|
namespace: builtins.str,
|
2048
2409
|
object_name_prefix: builtins.str,
|
2410
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemTargetPrivateEndpointMetadataResult'],
|
2049
2411
|
stream_id: builtins.str,
|
2050
2412
|
topic_id: builtins.str):
|
2051
2413
|
"""
|
@@ -2059,13 +2421,14 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2059
2421
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionArgs'] dimensions: List of dimension names and values.
|
2060
2422
|
:param builtins.bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
2061
2423
|
:param builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
2062
|
-
:param builtins.str kind: The type
|
2424
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
2063
2425
|
:param builtins.str log_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
2064
2426
|
:param builtins.str log_source_identifier: Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
|
2065
2427
|
:param builtins.str metric: The name of the metric. Example: `CpuUtilization`
|
2066
2428
|
:param builtins.str metric_namespace: The namespace of the metric. Example: `oci_computeagent`
|
2067
2429
|
:param builtins.str namespace: The namespace.
|
2068
2430
|
:param builtins.str object_name_prefix: The prefix of the objects. Avoid entering confidential information.
|
2431
|
+
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTargetPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
2069
2432
|
:param builtins.str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
2070
2433
|
:param builtins.str topic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the topic.
|
2071
2434
|
"""
|
@@ -2086,6 +2449,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2086
2449
|
pulumi.set(__self__, "metric_namespace", metric_namespace)
|
2087
2450
|
pulumi.set(__self__, "namespace", namespace)
|
2088
2451
|
pulumi.set(__self__, "object_name_prefix", object_name_prefix)
|
2452
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
2089
2453
|
pulumi.set(__self__, "stream_id", stream_id)
|
2090
2454
|
pulumi.set(__self__, "topic_id", topic_id)
|
2091
2455
|
|
@@ -2173,7 +2537,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2173
2537
|
@pulumi.getter
|
2174
2538
|
def kind(self) -> builtins.str:
|
2175
2539
|
"""
|
2176
|
-
The type
|
2540
|
+
The type of dimension value: static or evaluated.
|
2177
2541
|
"""
|
2178
2542
|
return pulumi.get(self, "kind")
|
2179
2543
|
|
@@ -2225,6 +2589,14 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2225
2589
|
"""
|
2226
2590
|
return pulumi.get(self, "object_name_prefix")
|
2227
2591
|
|
2592
|
+
@property
|
2593
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
2594
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemTargetPrivateEndpointMetadataResult']:
|
2595
|
+
"""
|
2596
|
+
The private endpoint metadata for the connector's source or target.
|
2597
|
+
"""
|
2598
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
2599
|
+
|
2228
2600
|
@property
|
2229
2601
|
@pulumi.getter(name="streamId")
|
2230
2602
|
def stream_id(self) -> builtins.str:
|
@@ -2278,7 +2650,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionDimension
|
|
2278
2650
|
path: builtins.str,
|
2279
2651
|
value: builtins.str):
|
2280
2652
|
"""
|
2281
|
-
:param builtins.str kind: The type
|
2653
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
2282
2654
|
:param builtins.str path: The location to use for deriving the dimension value (evaluated). The path must start with `logContent` in an acceptable notation style with supported [JMESPath selectors](https://jmespath.org/specification.html): expression with dot and index operator (`.` and `[]`). Example with dot notation: `logContent.data` Example with index notation: `logContent.data[0].content` For information on valid dimension keys and values, see [MetricDataDetails Reference](https://docs.cloud.oracle.com/iaas/api/#/en/monitoring/latest/datatypes/MetricDataDetails). The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value `"compartmentId"` is returned as `compartmentId`.) If the evaluated value is invalid, then the returned value is `SCH_EVAL_INVALID_VALUE`. If the evaluated value is empty, then the returned value is `SCH_EVAL_VALUE_EMPTY`.
|
2283
2655
|
:param builtins.str value: The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see [MetricDataDetails Reference](https://docs.cloud.oracle.com/iaas/api/#/en/monitoring/latest/datatypes/MetricDataDetails).
|
2284
2656
|
"""
|
@@ -2290,7 +2662,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionDimension
|
|
2290
2662
|
@pulumi.getter
|
2291
2663
|
def kind(self) -> builtins.str:
|
2292
2664
|
"""
|
2293
|
-
The type
|
2665
|
+
The type of dimension value: static or evaluated.
|
2294
2666
|
"""
|
2295
2667
|
return pulumi.get(self, "kind")
|
2296
2668
|
|
@@ -2311,6 +2683,35 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionDimension
|
|
2311
2683
|
return pulumi.get(self, "value")
|
2312
2684
|
|
2313
2685
|
|
2686
|
+
@pulumi.output_type
|
2687
|
+
class GetServiceConnectorsServiceConnectorCollectionItemTargetPrivateEndpointMetadataResult(dict):
|
2688
|
+
def __init__(__self__, *,
|
2689
|
+
rce_dns_proxy_ip_address: builtins.str,
|
2690
|
+
rce_traffic_ip_address: builtins.str):
|
2691
|
+
"""
|
2692
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2693
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2694
|
+
"""
|
2695
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
2696
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
2697
|
+
|
2698
|
+
@property
|
2699
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
2700
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
2701
|
+
"""
|
2702
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2703
|
+
"""
|
2704
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
2705
|
+
|
2706
|
+
@property
|
2707
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
2708
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
2709
|
+
"""
|
2710
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2711
|
+
"""
|
2712
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
2713
|
+
|
2714
|
+
|
2314
2715
|
@pulumi.output_type
|
2315
2716
|
class GetServiceConnectorsServiceConnectorCollectionItemTaskResult(dict):
|
2316
2717
|
def __init__(__self__, *,
|
@@ -2318,19 +2719,22 @@ class GetServiceConnectorsServiceConnectorCollectionItemTaskResult(dict):
|
|
2318
2719
|
batch_time_in_sec: builtins.int,
|
2319
2720
|
condition: builtins.str,
|
2320
2721
|
function_id: builtins.str,
|
2321
|
-
kind: builtins.str
|
2722
|
+
kind: builtins.str,
|
2723
|
+
private_endpoint_metadatas: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemTaskPrivateEndpointMetadataResult']):
|
2322
2724
|
"""
|
2323
2725
|
:param builtins.int batch_size_in_kbs: Size limit (kilobytes) for batch sent to invoke the function.
|
2324
2726
|
:param builtins.int batch_time_in_sec: Time limit (seconds) for batch sent to invoke the function.
|
2325
2727
|
:param builtins.str condition: A filter or mask to limit the source used in the flow defined by the connector.
|
2326
2728
|
:param builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
2327
|
-
:param builtins.str kind: The type
|
2729
|
+
:param builtins.str kind: The type of dimension value: static or evaluated.
|
2730
|
+
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTaskPrivateEndpointMetadataArgs'] private_endpoint_metadatas: The private endpoint metadata for the connector's source or target.
|
2328
2731
|
"""
|
2329
2732
|
pulumi.set(__self__, "batch_size_in_kbs", batch_size_in_kbs)
|
2330
2733
|
pulumi.set(__self__, "batch_time_in_sec", batch_time_in_sec)
|
2331
2734
|
pulumi.set(__self__, "condition", condition)
|
2332
2735
|
pulumi.set(__self__, "function_id", function_id)
|
2333
2736
|
pulumi.set(__self__, "kind", kind)
|
2737
|
+
pulumi.set(__self__, "private_endpoint_metadatas", private_endpoint_metadatas)
|
2334
2738
|
|
2335
2739
|
@property
|
2336
2740
|
@pulumi.getter(name="batchSizeInKbs")
|
@@ -2368,8 +2772,45 @@ class GetServiceConnectorsServiceConnectorCollectionItemTaskResult(dict):
|
|
2368
2772
|
@pulumi.getter
|
2369
2773
|
def kind(self) -> builtins.str:
|
2370
2774
|
"""
|
2371
|
-
The type
|
2775
|
+
The type of dimension value: static or evaluated.
|
2372
2776
|
"""
|
2373
2777
|
return pulumi.get(self, "kind")
|
2374
2778
|
|
2779
|
+
@property
|
2780
|
+
@pulumi.getter(name="privateEndpointMetadatas")
|
2781
|
+
def private_endpoint_metadatas(self) -> Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemTaskPrivateEndpointMetadataResult']:
|
2782
|
+
"""
|
2783
|
+
The private endpoint metadata for the connector's source or target.
|
2784
|
+
"""
|
2785
|
+
return pulumi.get(self, "private_endpoint_metadatas")
|
2786
|
+
|
2787
|
+
|
2788
|
+
@pulumi.output_type
|
2789
|
+
class GetServiceConnectorsServiceConnectorCollectionItemTaskPrivateEndpointMetadataResult(dict):
|
2790
|
+
def __init__(__self__, *,
|
2791
|
+
rce_dns_proxy_ip_address: builtins.str,
|
2792
|
+
rce_traffic_ip_address: builtins.str):
|
2793
|
+
"""
|
2794
|
+
:param builtins.str rce_dns_proxy_ip_address: The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2795
|
+
:param builtins.str rce_traffic_ip_address: The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2796
|
+
"""
|
2797
|
+
pulumi.set(__self__, "rce_dns_proxy_ip_address", rce_dns_proxy_ip_address)
|
2798
|
+
pulumi.set(__self__, "rce_traffic_ip_address", rce_traffic_ip_address)
|
2799
|
+
|
2800
|
+
@property
|
2801
|
+
@pulumi.getter(name="rceDnsProxyIpAddress")
|
2802
|
+
def rce_dns_proxy_ip_address(self) -> builtins.str:
|
2803
|
+
"""
|
2804
|
+
The reverse connection endpoint (RCE) IP address for DNS lookups.
|
2805
|
+
"""
|
2806
|
+
return pulumi.get(self, "rce_dns_proxy_ip_address")
|
2807
|
+
|
2808
|
+
@property
|
2809
|
+
@pulumi.getter(name="rceTrafficIpAddress")
|
2810
|
+
def rce_traffic_ip_address(self) -> builtins.str:
|
2811
|
+
"""
|
2812
|
+
The reverse connection endpoint (RCE) IP address for primary flow of traffic in the subnet.
|
2813
|
+
"""
|
2814
|
+
return pulumi.get(self, "rce_traffic_ip_address")
|
2815
|
+
|
2375
2816
|
|