pulumi-oci 2.28.0a1742970963__py3-none-any.whl → 2.28.0a1743049042__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/__init__.py +2 -0
- pulumi_oci/core/_inputs.py +49 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +265 -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/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.28.0a1742970963.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/METADATA +1 -1
- {pulumi_oci-2.28.0a1742970963.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/RECORD +24 -22
- {pulumi_oci-2.28.0a1742970963.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.28.0a1742970963.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/top_level.txt +0 -0
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'),
|