pulumi-oci 2.27.0a1742444119__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/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.27.0a1742444119.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.27.0a1742444119.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +24 -22
- {pulumi_oci-2.27.0a1742444119.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742444119.dist-info → pulumi_oci-2.28.0.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,7 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
16
17
|
|
17
18
|
__all__ = [
|
18
19
|
'GetConfigResult',
|
@@ -26,7 +27,10 @@ class GetConfigResult:
|
|
26
27
|
"""
|
27
28
|
A collection of values returned by getConfig.
|
28
29
|
"""
|
29
|
-
def __init__(__self__, compartment_id=None, config_id=None, config_type=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_enabled=None, license=None, resource_type=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, additional_configurations=None, compartment_id=None, config_id=None, config_type=None, defined_tags=None, display_name=None, dynamic_groups=None, freeform_tags=None, id=None, is_enabled=None, is_manually_onboarded=None, license=None, policy_names=None, resource_type=None, state=None, system_tags=None, time_created=None, time_updated=None, user_groups=None, version=None):
|
31
|
+
if additional_configurations and not isinstance(additional_configurations, list):
|
32
|
+
raise TypeError("Expected argument 'additional_configurations' to be a list")
|
33
|
+
pulumi.set(__self__, "additional_configurations", additional_configurations)
|
30
34
|
if compartment_id and not isinstance(compartment_id, str):
|
31
35
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
36
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -42,6 +46,9 @@ class GetConfigResult:
|
|
42
46
|
if display_name and not isinstance(display_name, str):
|
43
47
|
raise TypeError("Expected argument 'display_name' to be a str")
|
44
48
|
pulumi.set(__self__, "display_name", display_name)
|
49
|
+
if dynamic_groups and not isinstance(dynamic_groups, list):
|
50
|
+
raise TypeError("Expected argument 'dynamic_groups' to be a list")
|
51
|
+
pulumi.set(__self__, "dynamic_groups", dynamic_groups)
|
45
52
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
46
53
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
47
54
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -51,9 +58,15 @@ class GetConfigResult:
|
|
51
58
|
if is_enabled and not isinstance(is_enabled, bool):
|
52
59
|
raise TypeError("Expected argument 'is_enabled' to be a bool")
|
53
60
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
61
|
+
if is_manually_onboarded and not isinstance(is_manually_onboarded, bool):
|
62
|
+
raise TypeError("Expected argument 'is_manually_onboarded' to be a bool")
|
63
|
+
pulumi.set(__self__, "is_manually_onboarded", is_manually_onboarded)
|
54
64
|
if license and not isinstance(license, str):
|
55
65
|
raise TypeError("Expected argument 'license' to be a str")
|
56
66
|
pulumi.set(__self__, "license", license)
|
67
|
+
if policy_names and not isinstance(policy_names, list):
|
68
|
+
raise TypeError("Expected argument 'policy_names' to be a list")
|
69
|
+
pulumi.set(__self__, "policy_names", policy_names)
|
57
70
|
if resource_type and not isinstance(resource_type, str):
|
58
71
|
raise TypeError("Expected argument 'resource_type' to be a str")
|
59
72
|
pulumi.set(__self__, "resource_type", resource_type)
|
@@ -69,6 +82,20 @@ class GetConfigResult:
|
|
69
82
|
if time_updated and not isinstance(time_updated, str):
|
70
83
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
71
84
|
pulumi.set(__self__, "time_updated", time_updated)
|
85
|
+
if user_groups and not isinstance(user_groups, list):
|
86
|
+
raise TypeError("Expected argument 'user_groups' to be a list")
|
87
|
+
pulumi.set(__self__, "user_groups", user_groups)
|
88
|
+
if version and not isinstance(version, str):
|
89
|
+
raise TypeError("Expected argument 'version' to be a str")
|
90
|
+
pulumi.set(__self__, "version", version)
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="additionalConfigurations")
|
94
|
+
def additional_configurations(self) -> Sequence['outputs.GetConfigAdditionalConfigurationResult']:
|
95
|
+
"""
|
96
|
+
Property Details
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "additional_configurations")
|
72
99
|
|
73
100
|
@property
|
74
101
|
@pulumi.getter(name="compartmentId")
|
@@ -107,6 +134,14 @@ class GetConfigResult:
|
|
107
134
|
"""
|
108
135
|
return pulumi.get(self, "display_name")
|
109
136
|
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="dynamicGroups")
|
139
|
+
def dynamic_groups(self) -> Sequence['outputs.GetConfigDynamicGroupResult']:
|
140
|
+
"""
|
141
|
+
List of dynamic groups dedicated for Stack Monitoring.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "dynamic_groups")
|
144
|
+
|
110
145
|
@property
|
111
146
|
@pulumi.getter(name="freeformTags")
|
112
147
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -127,10 +162,18 @@ class GetConfigResult:
|
|
127
162
|
@pulumi.getter(name="isEnabled")
|
128
163
|
def is_enabled(self) -> bool:
|
129
164
|
"""
|
130
|
-
True if automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
165
|
+
True if automatic activation of the Management Agent plugin, automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
131
166
|
"""
|
132
167
|
return pulumi.get(self, "is_enabled")
|
133
168
|
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="isManuallyOnboarded")
|
171
|
+
def is_manually_onboarded(self) -> bool:
|
172
|
+
"""
|
173
|
+
True if customer decides marks configuration as manually configured.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "is_manually_onboarded")
|
176
|
+
|
134
177
|
@property
|
135
178
|
@pulumi.getter
|
136
179
|
def license(self) -> str:
|
@@ -139,6 +182,14 @@ class GetConfigResult:
|
|
139
182
|
"""
|
140
183
|
return pulumi.get(self, "license")
|
141
184
|
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="policyNames")
|
187
|
+
def policy_names(self) -> Sequence[str]:
|
188
|
+
"""
|
189
|
+
List of policy names assigned for onboarding
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "policy_names")
|
192
|
+
|
142
193
|
@property
|
143
194
|
@pulumi.getter(name="resourceType")
|
144
195
|
def resource_type(self) -> str:
|
@@ -179,6 +230,22 @@ class GetConfigResult:
|
|
179
230
|
"""
|
180
231
|
return pulumi.get(self, "time_updated")
|
181
232
|
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="userGroups")
|
235
|
+
def user_groups(self) -> Sequence['outputs.GetConfigUserGroupResult']:
|
236
|
+
"""
|
237
|
+
List of user groups dedicated for Stack Monitoring.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "user_groups")
|
240
|
+
|
241
|
+
@property
|
242
|
+
@pulumi.getter
|
243
|
+
def version(self) -> str:
|
244
|
+
"""
|
245
|
+
Assigned version to given onboard configuration.
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "version")
|
248
|
+
|
182
249
|
|
183
250
|
class AwaitableGetConfigResult(GetConfigResult):
|
184
251
|
# pylint: disable=using-constant-test
|
@@ -186,20 +253,26 @@ class AwaitableGetConfigResult(GetConfigResult):
|
|
186
253
|
if False:
|
187
254
|
yield self
|
188
255
|
return GetConfigResult(
|
256
|
+
additional_configurations=self.additional_configurations,
|
189
257
|
compartment_id=self.compartment_id,
|
190
258
|
config_id=self.config_id,
|
191
259
|
config_type=self.config_type,
|
192
260
|
defined_tags=self.defined_tags,
|
193
261
|
display_name=self.display_name,
|
262
|
+
dynamic_groups=self.dynamic_groups,
|
194
263
|
freeform_tags=self.freeform_tags,
|
195
264
|
id=self.id,
|
196
265
|
is_enabled=self.is_enabled,
|
266
|
+
is_manually_onboarded=self.is_manually_onboarded,
|
197
267
|
license=self.license,
|
268
|
+
policy_names=self.policy_names,
|
198
269
|
resource_type=self.resource_type,
|
199
270
|
state=self.state,
|
200
271
|
system_tags=self.system_tags,
|
201
272
|
time_created=self.time_created,
|
202
|
-
time_updated=self.time_updated
|
273
|
+
time_updated=self.time_updated,
|
274
|
+
user_groups=self.user_groups,
|
275
|
+
version=self.version)
|
203
276
|
|
204
277
|
|
205
278
|
def get_config(config_id: Optional[str] = None,
|
@@ -227,20 +300,26 @@ def get_config(config_id: Optional[str] = None,
|
|
227
300
|
__ret__ = pulumi.runtime.invoke('oci:StackMonitoring/getConfig:getConfig', __args__, opts=opts, typ=GetConfigResult).value
|
228
301
|
|
229
302
|
return AwaitableGetConfigResult(
|
303
|
+
additional_configurations=pulumi.get(__ret__, 'additional_configurations'),
|
230
304
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
231
305
|
config_id=pulumi.get(__ret__, 'config_id'),
|
232
306
|
config_type=pulumi.get(__ret__, 'config_type'),
|
233
307
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
234
308
|
display_name=pulumi.get(__ret__, 'display_name'),
|
309
|
+
dynamic_groups=pulumi.get(__ret__, 'dynamic_groups'),
|
235
310
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
236
311
|
id=pulumi.get(__ret__, 'id'),
|
237
312
|
is_enabled=pulumi.get(__ret__, 'is_enabled'),
|
313
|
+
is_manually_onboarded=pulumi.get(__ret__, 'is_manually_onboarded'),
|
238
314
|
license=pulumi.get(__ret__, 'license'),
|
315
|
+
policy_names=pulumi.get(__ret__, 'policy_names'),
|
239
316
|
resource_type=pulumi.get(__ret__, 'resource_type'),
|
240
317
|
state=pulumi.get(__ret__, 'state'),
|
241
318
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
242
319
|
time_created=pulumi.get(__ret__, 'time_created'),
|
243
|
-
time_updated=pulumi.get(__ret__, 'time_updated')
|
320
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
321
|
+
user_groups=pulumi.get(__ret__, 'user_groups'),
|
322
|
+
version=pulumi.get(__ret__, 'version'))
|
244
323
|
def get_config_output(config_id: Optional[pulumi.Input[str]] = None,
|
245
324
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConfigResult]:
|
246
325
|
"""
|
@@ -265,17 +344,23 @@ def get_config_output(config_id: Optional[pulumi.Input[str]] = None,
|
|
265
344
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
266
345
|
__ret__ = pulumi.runtime.invoke_output('oci:StackMonitoring/getConfig:getConfig', __args__, opts=opts, typ=GetConfigResult)
|
267
346
|
return __ret__.apply(lambda __response__: GetConfigResult(
|
347
|
+
additional_configurations=pulumi.get(__response__, 'additional_configurations'),
|
268
348
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
269
349
|
config_id=pulumi.get(__response__, 'config_id'),
|
270
350
|
config_type=pulumi.get(__response__, 'config_type'),
|
271
351
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
272
352
|
display_name=pulumi.get(__response__, 'display_name'),
|
353
|
+
dynamic_groups=pulumi.get(__response__, 'dynamic_groups'),
|
273
354
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
274
355
|
id=pulumi.get(__response__, 'id'),
|
275
356
|
is_enabled=pulumi.get(__response__, 'is_enabled'),
|
357
|
+
is_manually_onboarded=pulumi.get(__response__, 'is_manually_onboarded'),
|
276
358
|
license=pulumi.get(__response__, 'license'),
|
359
|
+
policy_names=pulumi.get(__response__, 'policy_names'),
|
277
360
|
resource_type=pulumi.get(__response__, 'resource_type'),
|
278
361
|
state=pulumi.get(__response__, 'state'),
|
279
362
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
280
363
|
time_created=pulumi.get(__response__, 'time_created'),
|
281
|
-
time_updated=pulumi.get(__response__, 'time_updated')
|
364
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
365
|
+
user_groups=pulumi.get(__response__, 'user_groups'),
|
366
|
+
version=pulumi.get(__response__, 'version')))
|
@@ -27,13 +27,19 @@ class GetMaintenanceWindowResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMaintenanceWindow.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, description=None, id=None, lifecycle_details=None, maintenance_window_id=None, name=None, resources=None, resources_details=None, schedules=None, state=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, lifecycle_details=None, maintenance_window_id=None, name=None, resources=None, resources_details=None, schedules=None, state=None, system_tags=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)
|
34
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
35
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
36
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
34
37
|
if description and not isinstance(description, str):
|
35
38
|
raise TypeError("Expected argument 'description' to be a str")
|
36
39
|
pulumi.set(__self__, "description", description)
|
40
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
41
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
42
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
37
43
|
if id and not isinstance(id, str):
|
38
44
|
raise TypeError("Expected argument 'id' to be a str")
|
39
45
|
pulumi.set(__self__, "id", id)
|
@@ -58,6 +64,9 @@ class GetMaintenanceWindowResult:
|
|
58
64
|
if state and not isinstance(state, str):
|
59
65
|
raise TypeError("Expected argument 'state' to be a str")
|
60
66
|
pulumi.set(__self__, "state", state)
|
67
|
+
if system_tags and not isinstance(system_tags, dict):
|
68
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
69
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
61
70
|
if time_created and not isinstance(time_created, str):
|
62
71
|
raise TypeError("Expected argument 'time_created' to be a str")
|
63
72
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -73,6 +82,14 @@ class GetMaintenanceWindowResult:
|
|
73
82
|
"""
|
74
83
|
return pulumi.get(self, "compartment_id")
|
75
84
|
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="definedTags")
|
87
|
+
def defined_tags(self) -> Mapping[str, str]:
|
88
|
+
"""
|
89
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "defined_tags")
|
92
|
+
|
76
93
|
@property
|
77
94
|
@pulumi.getter
|
78
95
|
def description(self) -> str:
|
@@ -81,6 +98,14 @@ class GetMaintenanceWindowResult:
|
|
81
98
|
"""
|
82
99
|
return pulumi.get(self, "description")
|
83
100
|
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="freeformTags")
|
103
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
104
|
+
"""
|
105
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "freeform_tags")
|
108
|
+
|
84
109
|
@property
|
85
110
|
@pulumi.getter
|
86
111
|
def id(self) -> str:
|
@@ -142,6 +167,14 @@ class GetMaintenanceWindowResult:
|
|
142
167
|
"""
|
143
168
|
return pulumi.get(self, "state")
|
144
169
|
|
170
|
+
@property
|
171
|
+
@pulumi.getter(name="systemTags")
|
172
|
+
def system_tags(self) -> Mapping[str, str]:
|
173
|
+
"""
|
174
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
175
|
+
"""
|
176
|
+
return pulumi.get(self, "system_tags")
|
177
|
+
|
145
178
|
@property
|
146
179
|
@pulumi.getter(name="timeCreated")
|
147
180
|
def time_created(self) -> str:
|
@@ -166,7 +199,9 @@ class AwaitableGetMaintenanceWindowResult(GetMaintenanceWindowResult):
|
|
166
199
|
yield self
|
167
200
|
return GetMaintenanceWindowResult(
|
168
201
|
compartment_id=self.compartment_id,
|
202
|
+
defined_tags=self.defined_tags,
|
169
203
|
description=self.description,
|
204
|
+
freeform_tags=self.freeform_tags,
|
170
205
|
id=self.id,
|
171
206
|
lifecycle_details=self.lifecycle_details,
|
172
207
|
maintenance_window_id=self.maintenance_window_id,
|
@@ -175,6 +210,7 @@ class AwaitableGetMaintenanceWindowResult(GetMaintenanceWindowResult):
|
|
175
210
|
resources_details=self.resources_details,
|
176
211
|
schedules=self.schedules,
|
177
212
|
state=self.state,
|
213
|
+
system_tags=self.system_tags,
|
178
214
|
time_created=self.time_created,
|
179
215
|
time_updated=self.time_updated)
|
180
216
|
|
@@ -205,7 +241,9 @@ def get_maintenance_window(maintenance_window_id: Optional[str] = None,
|
|
205
241
|
|
206
242
|
return AwaitableGetMaintenanceWindowResult(
|
207
243
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
244
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
208
245
|
description=pulumi.get(__ret__, 'description'),
|
246
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
209
247
|
id=pulumi.get(__ret__, 'id'),
|
210
248
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
211
249
|
maintenance_window_id=pulumi.get(__ret__, 'maintenance_window_id'),
|
@@ -214,6 +252,7 @@ def get_maintenance_window(maintenance_window_id: Optional[str] = None,
|
|
214
252
|
resources_details=pulumi.get(__ret__, 'resources_details'),
|
215
253
|
schedules=pulumi.get(__ret__, 'schedules'),
|
216
254
|
state=pulumi.get(__ret__, 'state'),
|
255
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
217
256
|
time_created=pulumi.get(__ret__, 'time_created'),
|
218
257
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
219
258
|
def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[str]] = None,
|
@@ -241,7 +280,9 @@ def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[s
|
|
241
280
|
__ret__ = pulumi.runtime.invoke_output('oci:StackMonitoring/getMaintenanceWindow:getMaintenanceWindow', __args__, opts=opts, typ=GetMaintenanceWindowResult)
|
242
281
|
return __ret__.apply(lambda __response__: GetMaintenanceWindowResult(
|
243
282
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
283
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
244
284
|
description=pulumi.get(__response__, 'description'),
|
285
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
245
286
|
id=pulumi.get(__response__, 'id'),
|
246
287
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
247
288
|
maintenance_window_id=pulumi.get(__response__, 'maintenance_window_id'),
|
@@ -250,5 +291,6 @@ def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[s
|
|
250
291
|
resources_details=pulumi.get(__response__, 'resources_details'),
|
251
292
|
schedules=pulumi.get(__response__, 'schedules'),
|
252
293
|
state=pulumi.get(__response__, 'state'),
|
294
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
253
295
|
time_created=pulumi.get(__response__, 'time_created'),
|
254
296
|
time_updated=pulumi.get(__response__, 'time_updated')))
|