pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.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/__init__.py +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +9 -0
- pulumi_oci/core/_inputs.py +196 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +847 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/identity/_inputs.py +9 -49
- pulumi_oci/identity/domains_app.py +34 -0
- pulumi_oci/identity/get_domains_app.py +12 -1
- pulumi_oci/identity/outputs.py +20 -47
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +24 -24
- pulumi_oci/sch/connector.py +46 -18
- pulumi_oci/sch/get_service_connector.py +16 -8
- pulumi_oci/sch/outputs.py +53 -50
- pulumi_oci/stackmonitoring/_inputs.py +191 -0
- pulumi_oci/stackmonitoring/config.py +307 -23
- pulumi_oci/stackmonitoring/get_config.py +90 -5
- pulumi_oci/stackmonitoring/get_maintenance_window.py +43 -1
- pulumi_oci/stackmonitoring/maintenance_window.py +136 -2
- pulumi_oci/stackmonitoring/outputs.py +448 -3
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +100 -71
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/top_level.txt +0 -0
pulumi_oci/sch/_inputs.py
CHANGED
@@ -53,7 +53,7 @@ if not MYPY:
|
|
53
53
|
"""
|
54
54
|
config_map: NotRequired[pulumi.Input[str]]
|
55
55
|
"""
|
56
|
-
(Updatable) 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 (
|
56
|
+
(Updatable) 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.
|
57
57
|
"""
|
58
58
|
cursor: NotRequired[pulumi.Input['ConnectorSourceCursorArgsDict']]
|
59
59
|
"""
|
@@ -69,7 +69,7 @@ if not MYPY:
|
|
69
69
|
"""
|
70
70
|
plugin_name: NotRequired[pulumi.Input[str]]
|
71
71
|
"""
|
72
|
-
(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 (
|
72
|
+
(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).
|
73
73
|
"""
|
74
74
|
stream_id: NotRequired[pulumi.Input[str]]
|
75
75
|
"""
|
@@ -90,11 +90,11 @@ class ConnectorSourceArgs:
|
|
90
90
|
stream_id: Optional[pulumi.Input[str]] = None):
|
91
91
|
"""
|
92
92
|
:param pulumi.Input[str] kind: (Updatable) The type discriminator.
|
93
|
-
:param pulumi.Input[str] config_map: (Updatable) 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 (
|
93
|
+
:param pulumi.Input[str] config_map: (Updatable) 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.
|
94
94
|
:param pulumi.Input['ConnectorSourceCursorArgs'] cursor: (Updatable) 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).
|
95
95
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectorSourceLogSourceArgs']]] log_sources: (Updatable) The logs for this Logging source.
|
96
96
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectorSourceMonitoringSourceArgs']]] monitoring_sources: (Updatable) One or more compartment-specific lists of metric namespaces to retrieve data from.
|
97
|
-
:param pulumi.Input[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 (
|
97
|
+
:param pulumi.Input[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).
|
98
98
|
:param pulumi.Input[str] stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
99
99
|
"""
|
100
100
|
pulumi.set(__self__, "kind", kind)
|
@@ -127,7 +127,7 @@ class ConnectorSourceArgs:
|
|
127
127
|
@pulumi.getter(name="configMap")
|
128
128
|
def config_map(self) -> Optional[pulumi.Input[str]]:
|
129
129
|
"""
|
130
|
-
(Updatable) 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 (
|
130
|
+
(Updatable) 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.
|
131
131
|
"""
|
132
132
|
return pulumi.get(self, "config_map")
|
133
133
|
|
@@ -175,7 +175,7 @@ class ConnectorSourceArgs:
|
|
175
175
|
@pulumi.getter(name="pluginName")
|
176
176
|
def plugin_name(self) -> Optional[pulumi.Input[str]]:
|
177
177
|
"""
|
178
|
-
(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 (
|
178
|
+
(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).
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "plugin_name")
|
181
181
|
|
@@ -236,7 +236,7 @@ if not MYPY:
|
|
236
236
|
"""
|
237
237
|
log_group_id: NotRequired[pulumi.Input[str]]
|
238
238
|
"""
|
239
|
-
(Updatable)
|
239
|
+
(Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
|
240
240
|
"""
|
241
241
|
log_id: NotRequired[pulumi.Input[str]]
|
242
242
|
"""
|
@@ -253,7 +253,7 @@ class ConnectorSourceLogSourceArgs:
|
|
253
253
|
log_id: Optional[pulumi.Input[str]] = None):
|
254
254
|
"""
|
255
255
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the log source.
|
256
|
-
:param pulumi.Input[str] log_group_id: (Updatable)
|
256
|
+
:param pulumi.Input[str] log_group_id: (Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
|
257
257
|
:param pulumi.Input[str] log_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
258
258
|
"""
|
259
259
|
if compartment_id is not None:
|
@@ -279,7 +279,7 @@ class ConnectorSourceLogSourceArgs:
|
|
279
279
|
@pulumi.getter(name="logGroupId")
|
280
280
|
def log_group_id(self) -> Optional[pulumi.Input[str]]:
|
281
281
|
"""
|
282
|
-
(Updatable)
|
282
|
+
(Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
|
283
283
|
"""
|
284
284
|
return pulumi.get(self, "log_group_id")
|
285
285
|
|
@@ -499,11 +499,11 @@ if not MYPY:
|
|
499
499
|
"""
|
500
500
|
batch_size_in_kbs: NotRequired[pulumi.Input[int]]
|
501
501
|
"""
|
502
|
-
(Updatable) The batch rollover size in kilobytes.
|
502
|
+
(Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
503
503
|
"""
|
504
504
|
batch_size_in_num: NotRequired[pulumi.Input[int]]
|
505
505
|
"""
|
506
|
-
(Updatable) The batch rollover size in number of messages.
|
506
|
+
(Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
507
507
|
"""
|
508
508
|
batch_time_in_sec: NotRequired[pulumi.Input[int]]
|
509
509
|
"""
|
@@ -523,7 +523,7 @@ if not MYPY:
|
|
523
523
|
"""
|
524
524
|
enable_formatted_messaging: NotRequired[pulumi.Input[bool]]
|
525
525
|
"""
|
526
|
-
(Updatable) 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.
|
526
|
+
(Updatable) 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`
|
527
527
|
"""
|
528
528
|
function_id: NotRequired[pulumi.Input[str]]
|
529
529
|
"""
|
@@ -539,11 +539,11 @@ if not MYPY:
|
|
539
539
|
"""
|
540
540
|
metric: NotRequired[pulumi.Input[str]]
|
541
541
|
"""
|
542
|
-
(Updatable) The name of the metric.
|
542
|
+
(Updatable) The name of the metric. Example: `CpuUtilization`
|
543
543
|
"""
|
544
544
|
metric_namespace: NotRequired[pulumi.Input[str]]
|
545
545
|
"""
|
546
|
-
(Updatable) The namespace of the metric.
|
546
|
+
(Updatable) The namespace of the metric. Example: `oci_computeagent`
|
547
547
|
"""
|
548
548
|
namespace: NotRequired[pulumi.Input[str]]
|
549
549
|
"""
|
@@ -590,18 +590,18 @@ class ConnectorTargetArgs:
|
|
590
590
|
:param pulumi.Input[str] kind: (Updatable) The type discriminator.
|
591
591
|
:param pulumi.Input[int] batch_rollover_size_in_mbs: (Updatable) The batch rollover size in megabytes.
|
592
592
|
:param pulumi.Input[int] batch_rollover_time_in_ms: (Updatable) The batch rollover time in milliseconds.
|
593
|
-
:param pulumi.Input[int] batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes.
|
594
|
-
:param pulumi.Input[int] batch_size_in_num: (Updatable) The batch rollover size in number of messages.
|
593
|
+
:param pulumi.Input[int] batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
594
|
+
:param pulumi.Input[int] batch_size_in_num: (Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
595
595
|
:param pulumi.Input[int] batch_time_in_sec: (Updatable) The batch rollover time in seconds.
|
596
596
|
:param pulumi.Input[str] bucket: (Updatable) The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
|
597
597
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric.
|
598
598
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectorTargetDimensionArgs']]] dimensions: (Updatable) List of dimension names and values.
|
599
|
-
:param pulumi.Input[bool] enable_formatted_messaging: (Updatable) 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.
|
599
|
+
:param pulumi.Input[bool] enable_formatted_messaging: (Updatable) 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`
|
600
600
|
:param pulumi.Input[str] function_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function.
|
601
601
|
:param pulumi.Input[str] log_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
602
602
|
:param pulumi.Input[str] log_source_identifier: (Updatable) 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/).
|
603
|
-
:param pulumi.Input[str] metric: (Updatable) The name of the metric.
|
604
|
-
:param pulumi.Input[str] metric_namespace: (Updatable) The namespace of the metric.
|
603
|
+
:param pulumi.Input[str] metric: (Updatable) The name of the metric. Example: `CpuUtilization`
|
604
|
+
:param pulumi.Input[str] metric_namespace: (Updatable) The namespace of the metric. Example: `oci_computeagent`
|
605
605
|
:param pulumi.Input[str] namespace: (Updatable) The namespace.
|
606
606
|
:param pulumi.Input[str] object_name_prefix: (Updatable) The prefix of the objects. Avoid entering confidential information.
|
607
607
|
:param pulumi.Input[str] stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
@@ -685,7 +685,7 @@ class ConnectorTargetArgs:
|
|
685
685
|
@pulumi.getter(name="batchSizeInKbs")
|
686
686
|
def batch_size_in_kbs(self) -> Optional[pulumi.Input[int]]:
|
687
687
|
"""
|
688
|
-
(Updatable) The batch rollover size in kilobytes.
|
688
|
+
(Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
689
689
|
"""
|
690
690
|
return pulumi.get(self, "batch_size_in_kbs")
|
691
691
|
|
@@ -697,7 +697,7 @@ class ConnectorTargetArgs:
|
|
697
697
|
@pulumi.getter(name="batchSizeInNum")
|
698
698
|
def batch_size_in_num(self) -> Optional[pulumi.Input[int]]:
|
699
699
|
"""
|
700
|
-
(Updatable) The batch rollover size in number of messages.
|
700
|
+
(Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
701
701
|
"""
|
702
702
|
return pulumi.get(self, "batch_size_in_num")
|
703
703
|
|
@@ -757,7 +757,7 @@ class ConnectorTargetArgs:
|
|
757
757
|
@pulumi.getter(name="enableFormattedMessaging")
|
758
758
|
def enable_formatted_messaging(self) -> Optional[pulumi.Input[bool]]:
|
759
759
|
"""
|
760
|
-
(Updatable) 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.
|
760
|
+
(Updatable) 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`
|
761
761
|
"""
|
762
762
|
return pulumi.get(self, "enable_formatted_messaging")
|
763
763
|
|
@@ -805,7 +805,7 @@ class ConnectorTargetArgs:
|
|
805
805
|
@pulumi.getter
|
806
806
|
def metric(self) -> Optional[pulumi.Input[str]]:
|
807
807
|
"""
|
808
|
-
(Updatable) The name of the metric.
|
808
|
+
(Updatable) The name of the metric. Example: `CpuUtilization`
|
809
809
|
"""
|
810
810
|
return pulumi.get(self, "metric")
|
811
811
|
|
@@ -817,7 +817,7 @@ class ConnectorTargetArgs:
|
|
817
817
|
@pulumi.getter(name="metricNamespace")
|
818
818
|
def metric_namespace(self) -> Optional[pulumi.Input[str]]:
|
819
819
|
"""
|
820
|
-
(Updatable) The namespace of the metric.
|
820
|
+
(Updatable) The namespace of the metric. Example: `oci_computeagent`
|
821
821
|
"""
|
822
822
|
return pulumi.get(self, "metric_namespace")
|
823
823
|
|
pulumi_oci/sch/connector.py
CHANGED
@@ -34,8 +34,8 @@ class ConnectorArgs:
|
|
34
34
|
The set of arguments for constructing a Connector resource.
|
35
35
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the comparment to create the connector in.
|
36
36
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
|
37
|
-
:param pulumi.Input['ConnectorSourceArgs'] source: (Updatable)
|
38
|
-
:param pulumi.Input['ConnectorTargetArgs'] target: (Updatable)
|
37
|
+
:param pulumi.Input['ConnectorSourceArgs'] source: (Updatable)
|
38
|
+
:param pulumi.Input['ConnectorTargetArgs'] target: (Updatable)
|
39
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
40
40
|
:param pulumi.Input[str] description: (Updatable) The description of the resource. Avoid entering confidential information.
|
41
41
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
@@ -89,7 +89,7 @@ class ConnectorArgs:
|
|
89
89
|
@pulumi.getter
|
90
90
|
def source(self) -> pulumi.Input['ConnectorSourceArgs']:
|
91
91
|
"""
|
92
|
-
(Updatable)
|
92
|
+
(Updatable)
|
93
93
|
"""
|
94
94
|
return pulumi.get(self, "source")
|
95
95
|
|
@@ -101,7 +101,7 @@ class ConnectorArgs:
|
|
101
101
|
@pulumi.getter
|
102
102
|
def target(self) -> pulumi.Input['ConnectorTargetArgs']:
|
103
103
|
"""
|
104
|
-
(Updatable)
|
104
|
+
(Updatable)
|
105
105
|
"""
|
106
106
|
return pulumi.get(self, "target")
|
107
107
|
|
@@ -182,6 +182,7 @@ class _ConnectorState:
|
|
182
182
|
description: Optional[pulumi.Input[str]] = None,
|
183
183
|
display_name: Optional[pulumi.Input[str]] = None,
|
184
184
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
185
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
185
186
|
lifecyle_details: Optional[pulumi.Input[str]] = None,
|
186
187
|
source: Optional[pulumi.Input['ConnectorSourceArgs']] = None,
|
187
188
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -197,15 +198,16 @@ class _ConnectorState:
|
|
197
198
|
:param pulumi.Input[str] description: (Updatable) The description of the resource. Avoid entering confidential information.
|
198
199
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
|
199
200
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
200
|
-
:param pulumi.Input[str]
|
201
|
-
:param pulumi.Input[
|
201
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
202
|
+
:param pulumi.Input[str] lifecyle_details: *Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
203
|
+
:param pulumi.Input['ConnectorSourceArgs'] source: (Updatable)
|
202
204
|
:param pulumi.Input[str] state: (Updatable) The target state for the service connector. Could be set to `ACTIVE` or `INACTIVE`.
|
203
205
|
|
204
206
|
|
205
207
|
** IMPORTANT **
|
206
208
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
207
209
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
208
|
-
:param pulumi.Input['ConnectorTargetArgs'] target: (Updatable)
|
210
|
+
:param pulumi.Input['ConnectorTargetArgs'] target: (Updatable)
|
209
211
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectorTaskArgs']]] tasks: (Updatable) The list of tasks.
|
210
212
|
:param pulumi.Input[str] time_created: The date and time when the connector was created. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
211
213
|
:param pulumi.Input[str] time_updated: The date and time when the connector was updated. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
@@ -220,6 +222,8 @@ class _ConnectorState:
|
|
220
222
|
pulumi.set(__self__, "display_name", display_name)
|
221
223
|
if freeform_tags is not None:
|
222
224
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
225
|
+
if lifecycle_details is not None:
|
226
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
223
227
|
if lifecyle_details is not None:
|
224
228
|
pulumi.set(__self__, "lifecyle_details", lifecyle_details)
|
225
229
|
if source is not None:
|
@@ -297,11 +301,23 @@ class _ConnectorState:
|
|
297
301
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
298
302
|
pulumi.set(self, "freeform_tags", value)
|
299
303
|
|
304
|
+
@property
|
305
|
+
@pulumi.getter(name="lifecycleDetails")
|
306
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
307
|
+
"""
|
308
|
+
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
309
|
+
"""
|
310
|
+
return pulumi.get(self, "lifecycle_details")
|
311
|
+
|
312
|
+
@lifecycle_details.setter
|
313
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
314
|
+
pulumi.set(self, "lifecycle_details", value)
|
315
|
+
|
300
316
|
@property
|
301
317
|
@pulumi.getter(name="lifecyleDetails")
|
302
318
|
def lifecyle_details(self) -> Optional[pulumi.Input[str]]:
|
303
319
|
"""
|
304
|
-
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
320
|
+
*Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
305
321
|
"""
|
306
322
|
return pulumi.get(self, "lifecyle_details")
|
307
323
|
|
@@ -313,7 +329,7 @@ class _ConnectorState:
|
|
313
329
|
@pulumi.getter
|
314
330
|
def source(self) -> Optional[pulumi.Input['ConnectorSourceArgs']]:
|
315
331
|
"""
|
316
|
-
(Updatable)
|
332
|
+
(Updatable)
|
317
333
|
"""
|
318
334
|
return pulumi.get(self, "source")
|
319
335
|
|
@@ -353,7 +369,7 @@ class _ConnectorState:
|
|
353
369
|
@pulumi.getter
|
354
370
|
def target(self) -> Optional[pulumi.Input['ConnectorTargetArgs']]:
|
355
371
|
"""
|
356
|
-
(Updatable)
|
372
|
+
(Updatable)
|
357
373
|
"""
|
358
374
|
return pulumi.get(self, "target")
|
359
375
|
|
@@ -531,13 +547,13 @@ class Connector(pulumi.CustomResource):
|
|
531
547
|
:param pulumi.Input[str] description: (Updatable) The description of the resource. Avoid entering confidential information.
|
532
548
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
|
533
549
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
534
|
-
:param pulumi.Input[Union['ConnectorSourceArgs', 'ConnectorSourceArgsDict']] source: (Updatable)
|
550
|
+
:param pulumi.Input[Union['ConnectorSourceArgs', 'ConnectorSourceArgsDict']] source: (Updatable)
|
535
551
|
:param pulumi.Input[str] state: (Updatable) The target state for the service connector. Could be set to `ACTIVE` or `INACTIVE`.
|
536
552
|
|
537
553
|
|
538
554
|
** IMPORTANT **
|
539
555
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
540
|
-
:param pulumi.Input[Union['ConnectorTargetArgs', 'ConnectorTargetArgsDict']] target: (Updatable)
|
556
|
+
:param pulumi.Input[Union['ConnectorTargetArgs', 'ConnectorTargetArgsDict']] target: (Updatable)
|
541
557
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectorTaskArgs', 'ConnectorTaskArgsDict']]]] tasks: (Updatable) The list of tasks.
|
542
558
|
"""
|
543
559
|
...
|
@@ -707,6 +723,7 @@ class Connector(pulumi.CustomResource):
|
|
707
723
|
raise TypeError("Missing required property 'target'")
|
708
724
|
__props__.__dict__["target"] = target
|
709
725
|
__props__.__dict__["tasks"] = tasks
|
726
|
+
__props__.__dict__["lifecycle_details"] = None
|
710
727
|
__props__.__dict__["lifecyle_details"] = None
|
711
728
|
__props__.__dict__["system_tags"] = None
|
712
729
|
__props__.__dict__["time_created"] = None
|
@@ -726,6 +743,7 @@ class Connector(pulumi.CustomResource):
|
|
726
743
|
description: Optional[pulumi.Input[str]] = None,
|
727
744
|
display_name: Optional[pulumi.Input[str]] = None,
|
728
745
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
746
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
729
747
|
lifecyle_details: Optional[pulumi.Input[str]] = None,
|
730
748
|
source: Optional[pulumi.Input[Union['ConnectorSourceArgs', 'ConnectorSourceArgsDict']]] = None,
|
731
749
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -746,15 +764,16 @@ class Connector(pulumi.CustomResource):
|
|
746
764
|
:param pulumi.Input[str] description: (Updatable) The description of the resource. Avoid entering confidential information.
|
747
765
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
|
748
766
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
749
|
-
:param pulumi.Input[str]
|
750
|
-
:param pulumi.Input[
|
767
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
768
|
+
:param pulumi.Input[str] lifecyle_details: *Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
769
|
+
:param pulumi.Input[Union['ConnectorSourceArgs', 'ConnectorSourceArgsDict']] source: (Updatable)
|
751
770
|
:param pulumi.Input[str] state: (Updatable) The target state for the service connector. Could be set to `ACTIVE` or `INACTIVE`.
|
752
771
|
|
753
772
|
|
754
773
|
** IMPORTANT **
|
755
774
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
756
775
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
757
|
-
:param pulumi.Input[Union['ConnectorTargetArgs', 'ConnectorTargetArgsDict']] target: (Updatable)
|
776
|
+
:param pulumi.Input[Union['ConnectorTargetArgs', 'ConnectorTargetArgsDict']] target: (Updatable)
|
758
777
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectorTaskArgs', 'ConnectorTaskArgsDict']]]] tasks: (Updatable) The list of tasks.
|
759
778
|
:param pulumi.Input[str] time_created: The date and time when the connector was created. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
760
779
|
:param pulumi.Input[str] time_updated: The date and time when the connector was updated. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
@@ -768,6 +787,7 @@ class Connector(pulumi.CustomResource):
|
|
768
787
|
__props__.__dict__["description"] = description
|
769
788
|
__props__.__dict__["display_name"] = display_name
|
770
789
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
790
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
771
791
|
__props__.__dict__["lifecyle_details"] = lifecyle_details
|
772
792
|
__props__.__dict__["source"] = source
|
773
793
|
__props__.__dict__["state"] = state
|
@@ -818,11 +838,19 @@ class Connector(pulumi.CustomResource):
|
|
818
838
|
"""
|
819
839
|
return pulumi.get(self, "freeform_tags")
|
820
840
|
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="lifecycleDetails")
|
843
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
844
|
+
"""
|
845
|
+
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
846
|
+
"""
|
847
|
+
return pulumi.get(self, "lifecycle_details")
|
848
|
+
|
821
849
|
@property
|
822
850
|
@pulumi.getter(name="lifecyleDetails")
|
823
851
|
def lifecyle_details(self) -> pulumi.Output[str]:
|
824
852
|
"""
|
825
|
-
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
853
|
+
*Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
826
854
|
"""
|
827
855
|
return pulumi.get(self, "lifecyle_details")
|
828
856
|
|
@@ -830,7 +858,7 @@ class Connector(pulumi.CustomResource):
|
|
830
858
|
@pulumi.getter
|
831
859
|
def source(self) -> pulumi.Output['outputs.ConnectorSource']:
|
832
860
|
"""
|
833
|
-
(Updatable)
|
861
|
+
(Updatable)
|
834
862
|
"""
|
835
863
|
return pulumi.get(self, "source")
|
836
864
|
|
@@ -858,7 +886,7 @@ class Connector(pulumi.CustomResource):
|
|
858
886
|
@pulumi.getter
|
859
887
|
def target(self) -> pulumi.Output['outputs.ConnectorTarget']:
|
860
888
|
"""
|
861
|
-
(Updatable)
|
889
|
+
(Updatable)
|
862
890
|
"""
|
863
891
|
return pulumi.get(self, "target")
|
864
892
|
|
@@ -27,7 +27,7 @@ class GetServiceConnectorResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getServiceConnector.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecyle_details=None, service_connector_id=None, sources=None, state=None, system_tags=None, targets=None, tasks=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, lifecyle_details=None, service_connector_id=None, sources=None, state=None, system_tags=None, targets=None, tasks=None, time_created=None, time_updated=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -46,6 +46,9 @@ class GetServiceConnectorResult:
|
|
46
46
|
if id and not isinstance(id, str):
|
47
47
|
raise TypeError("Expected argument 'id' to be a str")
|
48
48
|
pulumi.set(__self__, "id", id)
|
49
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
50
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
51
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
49
52
|
if lifecyle_details and not isinstance(lifecyle_details, str):
|
50
53
|
raise TypeError("Expected argument 'lifecyle_details' to be a str")
|
51
54
|
pulumi.set(__self__, "lifecyle_details", lifecyle_details)
|
@@ -122,11 +125,19 @@ class GetServiceConnectorResult:
|
|
122
125
|
"""
|
123
126
|
return pulumi.get(self, "id")
|
124
127
|
|
128
|
+
@property
|
129
|
+
@pulumi.getter(name="lifecycleDetails")
|
130
|
+
def lifecycle_details(self) -> str:
|
131
|
+
"""
|
132
|
+
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "lifecycle_details")
|
135
|
+
|
125
136
|
@property
|
126
137
|
@pulumi.getter(name="lifecyleDetails")
|
127
138
|
def lifecyle_details(self) -> str:
|
128
139
|
"""
|
129
|
-
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
140
|
+
*Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
130
141
|
"""
|
131
142
|
return pulumi.get(self, "lifecyle_details")
|
132
143
|
|
@@ -138,9 +149,6 @@ class GetServiceConnectorResult:
|
|
138
149
|
@property
|
139
150
|
@pulumi.getter
|
140
151
|
def sources(self) -> Sequence['outputs.GetServiceConnectorSourceResult']:
|
141
|
-
"""
|
142
|
-
An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see [Overview of Connector Hub](https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm). For configuration instructions, see [Creating a Connector](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
|
143
|
-
"""
|
144
152
|
return pulumi.get(self, "sources")
|
145
153
|
|
146
154
|
@property
|
@@ -162,9 +170,6 @@ class GetServiceConnectorResult:
|
|
162
170
|
@property
|
163
171
|
@pulumi.getter
|
164
172
|
def targets(self) -> Sequence['outputs.GetServiceConnectorTargetResult']:
|
165
|
-
"""
|
166
|
-
An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see [Overview of Connector Hub](https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm). For configuration instructions, see [Creating a Connector](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
|
167
|
-
"""
|
168
173
|
return pulumi.get(self, "targets")
|
169
174
|
|
170
175
|
@property
|
@@ -204,6 +209,7 @@ class AwaitableGetServiceConnectorResult(GetServiceConnectorResult):
|
|
204
209
|
display_name=self.display_name,
|
205
210
|
freeform_tags=self.freeform_tags,
|
206
211
|
id=self.id,
|
212
|
+
lifecycle_details=self.lifecycle_details,
|
207
213
|
lifecyle_details=self.lifecyle_details,
|
208
214
|
service_connector_id=self.service_connector_id,
|
209
215
|
sources=self.sources,
|
@@ -248,6 +254,7 @@ def get_service_connector(service_connector_id: Optional[str] = None,
|
|
248
254
|
display_name=pulumi.get(__ret__, 'display_name'),
|
249
255
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
250
256
|
id=pulumi.get(__ret__, 'id'),
|
257
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
251
258
|
lifecyle_details=pulumi.get(__ret__, 'lifecyle_details'),
|
252
259
|
service_connector_id=pulumi.get(__ret__, 'service_connector_id'),
|
253
260
|
sources=pulumi.get(__ret__, 'sources'),
|
@@ -289,6 +296,7 @@ def get_service_connector_output(service_connector_id: Optional[pulumi.Input[str
|
|
289
296
|
display_name=pulumi.get(__response__, 'display_name'),
|
290
297
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
291
298
|
id=pulumi.get(__response__, 'id'),
|
299
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
292
300
|
lifecyle_details=pulumi.get(__response__, 'lifecyle_details'),
|
293
301
|
service_connector_id=pulumi.get(__response__, 'service_connector_id'),
|
294
302
|
sources=pulumi.get(__response__, 'sources'),
|