pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.19.0a1734003732__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 +40 -0
- pulumi_oci/database/autonomous_container_database.py +47 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_container_database.py +15 -1
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +14 -0
- pulumi_oci/dataflow/application.py +75 -33
- pulumi_oci/dataflow/get_application.py +15 -1
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/desktops/_inputs.py +9 -9
- pulumi_oci/desktops/desktop_pool.py +84 -35
- pulumi_oci/desktops/get_desktop_pool.py +12 -1
- pulumi_oci/desktops/outputs.py +13 -6
- pulumi_oci/disasterrecovery/_inputs.py +46 -30
- pulumi_oci/disasterrecovery/dr_plan.py +194 -23
- pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
- pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
- pulumi_oci/disasterrecovery/outputs.py +113 -21
- pulumi_oci/fleetappsmanagement/__init__.py +19 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
- pulumi_oci/fleetappsmanagement/fleet.py +112 -67
- pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
- pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
- pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
- pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
- pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
- pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
- pulumi_oci/fleetappsmanagement/get_property.py +4 -4
- pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
- pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
- pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
- pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
- pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
- pulumi_oci/fleetappsmanagement/patch.py +978 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
- pulumi_oci/fleetappsmanagement/property.py +27 -27
- pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
- pulumi_oci/fleetappsmanagement/task_record.py +754 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/visualbuilder/_inputs.py +57 -202
- pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
- pulumi_oci/visualbuilder/outputs.py +114 -400
- pulumi_oci/visualbuilder/vb_instance.py +62 -59
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -25,18 +25,24 @@ class DrPlanArgs:
|
|
25
25
|
dr_protection_group_id: pulumi.Input[str],
|
26
26
|
type: pulumi.Input[str],
|
27
27
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None
|
28
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
|
+
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
30
|
+
source_plan_id: Optional[pulumi.Input[str]] = None,
|
31
|
+
verify_trigger: Optional[pulumi.Input[int]] = None):
|
29
32
|
"""
|
30
33
|
The set of arguments for constructing a DrPlan resource.
|
31
34
|
:param pulumi.Input[str] display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
|
32
35
|
:param pulumi.Input[str] dr_protection_group_id: The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
33
|
-
:param pulumi.Input[str] type: The type of DR plan to be created.
|
36
|
+
:param pulumi.Input[str] type: The type of DR plan to be created.
|
37
|
+
: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: `{"Operations.CostCenter": "42"}`
|
38
|
+
: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: `{"Department": "Finance"}`
|
39
|
+
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
40
|
+
:param pulumi.Input[str] source_plan_id: The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
41
|
+
:param pulumi.Input[int] verify_trigger: (Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
34
42
|
|
35
43
|
|
36
44
|
** IMPORTANT **
|
37
45
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
38
|
-
: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: `{"Operations.CostCenter": "42"}`
|
39
|
-
: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: `{"Department": "Finance"}`
|
40
46
|
"""
|
41
47
|
pulumi.set(__self__, "display_name", display_name)
|
42
48
|
pulumi.set(__self__, "dr_protection_group_id", dr_protection_group_id)
|
@@ -45,6 +51,12 @@ class DrPlanArgs:
|
|
45
51
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
46
52
|
if freeform_tags is not None:
|
47
53
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
54
|
+
if refresh_trigger is not None:
|
55
|
+
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
56
|
+
if source_plan_id is not None:
|
57
|
+
pulumi.set(__self__, "source_plan_id", source_plan_id)
|
58
|
+
if verify_trigger is not None:
|
59
|
+
pulumi.set(__self__, "verify_trigger", verify_trigger)
|
48
60
|
|
49
61
|
@property
|
50
62
|
@pulumi.getter(name="displayName")
|
@@ -74,11 +86,7 @@ class DrPlanArgs:
|
|
74
86
|
@pulumi.getter
|
75
87
|
def type(self) -> pulumi.Input[str]:
|
76
88
|
"""
|
77
|
-
The type of DR plan to be created.
|
78
|
-
|
79
|
-
|
80
|
-
** IMPORTANT **
|
81
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
89
|
+
The type of DR plan to be created.
|
82
90
|
"""
|
83
91
|
return pulumi.get(self, "type")
|
84
92
|
|
@@ -110,6 +118,46 @@ class DrPlanArgs:
|
|
110
118
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
111
119
|
pulumi.set(self, "freeform_tags", value)
|
112
120
|
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="refreshTrigger")
|
123
|
+
def refresh_trigger(self) -> Optional[pulumi.Input[int]]:
|
124
|
+
"""
|
125
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "refresh_trigger")
|
128
|
+
|
129
|
+
@refresh_trigger.setter
|
130
|
+
def refresh_trigger(self, value: Optional[pulumi.Input[int]]):
|
131
|
+
pulumi.set(self, "refresh_trigger", value)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="sourcePlanId")
|
135
|
+
def source_plan_id(self) -> Optional[pulumi.Input[str]]:
|
136
|
+
"""
|
137
|
+
The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "source_plan_id")
|
140
|
+
|
141
|
+
@source_plan_id.setter
|
142
|
+
def source_plan_id(self, value: Optional[pulumi.Input[str]]):
|
143
|
+
pulumi.set(self, "source_plan_id", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="verifyTrigger")
|
147
|
+
def verify_trigger(self) -> Optional[pulumi.Input[int]]:
|
148
|
+
"""
|
149
|
+
(Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
150
|
+
|
151
|
+
|
152
|
+
** IMPORTANT **
|
153
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "verify_trigger")
|
156
|
+
|
157
|
+
@verify_trigger.setter
|
158
|
+
def verify_trigger(self, value: Optional[pulumi.Input[int]]):
|
159
|
+
pulumi.set(self, "verify_trigger", value)
|
160
|
+
|
113
161
|
|
114
162
|
@pulumi.input_type
|
115
163
|
class _DrPlanState:
|
@@ -120,14 +168,18 @@ class _DrPlanState:
|
|
120
168
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
121
169
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
122
170
|
life_cycle_details: Optional[pulumi.Input[str]] = None,
|
171
|
+
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
123
172
|
peer_dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
124
173
|
peer_region: Optional[pulumi.Input[str]] = None,
|
125
174
|
plan_groups: Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupArgs']]]] = None,
|
175
|
+
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
176
|
+
source_plan_id: Optional[pulumi.Input[str]] = None,
|
126
177
|
state: Optional[pulumi.Input[str]] = None,
|
127
178
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
128
179
|
time_created: Optional[pulumi.Input[str]] = None,
|
129
180
|
time_updated: Optional[pulumi.Input[str]] = None,
|
130
|
-
type: Optional[pulumi.Input[str]] = None
|
181
|
+
type: Optional[pulumi.Input[str]] = None,
|
182
|
+
verify_trigger: Optional[pulumi.Input[int]] = None):
|
131
183
|
"""
|
132
184
|
Input properties used for looking up and filtering DrPlan resources.
|
133
185
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment containing the DR plan. Example: `ocid1.compartment.oc1..uniqueID`
|
@@ -136,14 +188,18 @@ class _DrPlanState:
|
|
136
188
|
:param pulumi.Input[str] dr_protection_group_id: The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
137
189
|
: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: `{"Department": "Finance"}`
|
138
190
|
:param pulumi.Input[str] life_cycle_details: A message describing the DR plan's current state in more detail.
|
191
|
+
:param pulumi.Input[str] lifecycle_sub_state: The current state of the DR plan.
|
139
192
|
:param pulumi.Input[str] peer_dr_protection_group_id: The OCID of the peer DR protection group associated with this plan's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
140
193
|
:param pulumi.Input[str] peer_region: The region of the peer DR protection group associated with this plan's DR protection group. Example: `us-ashburn-1`
|
141
194
|
:param pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupArgs']]] plan_groups: The list of groups in this DR plan.
|
195
|
+
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
196
|
+
:param pulumi.Input[str] source_plan_id: The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
142
197
|
:param pulumi.Input[str] state: The current state of the DR plan.
|
143
198
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
144
199
|
:param pulumi.Input[str] time_created: The date and time the DR plan was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`
|
145
200
|
:param pulumi.Input[str] time_updated: The date and time the DR plan was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`
|
146
|
-
:param pulumi.Input[str] type: The type of DR plan to be created.
|
201
|
+
:param pulumi.Input[str] type: The type of DR plan to be created.
|
202
|
+
:param pulumi.Input[int] verify_trigger: (Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
147
203
|
|
148
204
|
|
149
205
|
** IMPORTANT **
|
@@ -161,12 +217,18 @@ class _DrPlanState:
|
|
161
217
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
162
218
|
if life_cycle_details is not None:
|
163
219
|
pulumi.set(__self__, "life_cycle_details", life_cycle_details)
|
220
|
+
if lifecycle_sub_state is not None:
|
221
|
+
pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
|
164
222
|
if peer_dr_protection_group_id is not None:
|
165
223
|
pulumi.set(__self__, "peer_dr_protection_group_id", peer_dr_protection_group_id)
|
166
224
|
if peer_region is not None:
|
167
225
|
pulumi.set(__self__, "peer_region", peer_region)
|
168
226
|
if plan_groups is not None:
|
169
227
|
pulumi.set(__self__, "plan_groups", plan_groups)
|
228
|
+
if refresh_trigger is not None:
|
229
|
+
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
230
|
+
if source_plan_id is not None:
|
231
|
+
pulumi.set(__self__, "source_plan_id", source_plan_id)
|
170
232
|
if state is not None:
|
171
233
|
pulumi.set(__self__, "state", state)
|
172
234
|
if system_tags is not None:
|
@@ -177,6 +239,8 @@ class _DrPlanState:
|
|
177
239
|
pulumi.set(__self__, "time_updated", time_updated)
|
178
240
|
if type is not None:
|
179
241
|
pulumi.set(__self__, "type", type)
|
242
|
+
if verify_trigger is not None:
|
243
|
+
pulumi.set(__self__, "verify_trigger", verify_trigger)
|
180
244
|
|
181
245
|
@property
|
182
246
|
@pulumi.getter(name="compartmentId")
|
@@ -250,6 +314,18 @@ class _DrPlanState:
|
|
250
314
|
def life_cycle_details(self, value: Optional[pulumi.Input[str]]):
|
251
315
|
pulumi.set(self, "life_cycle_details", value)
|
252
316
|
|
317
|
+
@property
|
318
|
+
@pulumi.getter(name="lifecycleSubState")
|
319
|
+
def lifecycle_sub_state(self) -> Optional[pulumi.Input[str]]:
|
320
|
+
"""
|
321
|
+
The current state of the DR plan.
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
324
|
+
|
325
|
+
@lifecycle_sub_state.setter
|
326
|
+
def lifecycle_sub_state(self, value: Optional[pulumi.Input[str]]):
|
327
|
+
pulumi.set(self, "lifecycle_sub_state", value)
|
328
|
+
|
253
329
|
@property
|
254
330
|
@pulumi.getter(name="peerDrProtectionGroupId")
|
255
331
|
def peer_dr_protection_group_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -286,6 +362,30 @@ class _DrPlanState:
|
|
286
362
|
def plan_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupArgs']]]]):
|
287
363
|
pulumi.set(self, "plan_groups", value)
|
288
364
|
|
365
|
+
@property
|
366
|
+
@pulumi.getter(name="refreshTrigger")
|
367
|
+
def refresh_trigger(self) -> Optional[pulumi.Input[int]]:
|
368
|
+
"""
|
369
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
370
|
+
"""
|
371
|
+
return pulumi.get(self, "refresh_trigger")
|
372
|
+
|
373
|
+
@refresh_trigger.setter
|
374
|
+
def refresh_trigger(self, value: Optional[pulumi.Input[int]]):
|
375
|
+
pulumi.set(self, "refresh_trigger", value)
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter(name="sourcePlanId")
|
379
|
+
def source_plan_id(self) -> Optional[pulumi.Input[str]]:
|
380
|
+
"""
|
381
|
+
The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "source_plan_id")
|
384
|
+
|
385
|
+
@source_plan_id.setter
|
386
|
+
def source_plan_id(self, value: Optional[pulumi.Input[str]]):
|
387
|
+
pulumi.set(self, "source_plan_id", value)
|
388
|
+
|
289
389
|
@property
|
290
390
|
@pulumi.getter
|
291
391
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -338,11 +438,7 @@ class _DrPlanState:
|
|
338
438
|
@pulumi.getter
|
339
439
|
def type(self) -> Optional[pulumi.Input[str]]:
|
340
440
|
"""
|
341
|
-
The type of DR plan to be created.
|
342
|
-
|
343
|
-
|
344
|
-
** IMPORTANT **
|
345
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
441
|
+
The type of DR plan to be created.
|
346
442
|
"""
|
347
443
|
return pulumi.get(self, "type")
|
348
444
|
|
@@ -350,6 +446,22 @@ class _DrPlanState:
|
|
350
446
|
def type(self, value: Optional[pulumi.Input[str]]):
|
351
447
|
pulumi.set(self, "type", value)
|
352
448
|
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="verifyTrigger")
|
451
|
+
def verify_trigger(self) -> Optional[pulumi.Input[int]]:
|
452
|
+
"""
|
453
|
+
(Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
454
|
+
|
455
|
+
|
456
|
+
** IMPORTANT **
|
457
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "verify_trigger")
|
460
|
+
|
461
|
+
@verify_trigger.setter
|
462
|
+
def verify_trigger(self, value: Optional[pulumi.Input[int]]):
|
463
|
+
pulumi.set(self, "verify_trigger", value)
|
464
|
+
|
353
465
|
|
354
466
|
class DrPlan(pulumi.CustomResource):
|
355
467
|
@overload
|
@@ -360,7 +472,10 @@ class DrPlan(pulumi.CustomResource):
|
|
360
472
|
display_name: Optional[pulumi.Input[str]] = None,
|
361
473
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
362
474
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
475
|
+
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
476
|
+
source_plan_id: Optional[pulumi.Input[str]] = None,
|
363
477
|
type: Optional[pulumi.Input[str]] = None,
|
478
|
+
verify_trigger: Optional[pulumi.Input[int]] = None,
|
364
479
|
__props__=None):
|
365
480
|
"""
|
366
481
|
This resource provides the Dr Plan resource in Oracle Cloud Infrastructure Disaster Recovery service.
|
@@ -382,7 +497,8 @@ class DrPlan(pulumi.CustomResource):
|
|
382
497
|
},
|
383
498
|
freeform_tags={
|
384
499
|
"Department": "Finance",
|
385
|
-
}
|
500
|
+
},
|
501
|
+
source_plan_id=test_source_plan["id"])
|
386
502
|
```
|
387
503
|
|
388
504
|
## Import
|
@@ -399,7 +515,10 @@ class DrPlan(pulumi.CustomResource):
|
|
399
515
|
:param pulumi.Input[str] display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
|
400
516
|
:param pulumi.Input[str] dr_protection_group_id: The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
401
517
|
: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: `{"Department": "Finance"}`
|
402
|
-
:param pulumi.Input[
|
518
|
+
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
519
|
+
:param pulumi.Input[str] source_plan_id: The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
520
|
+
:param pulumi.Input[str] type: The type of DR plan to be created.
|
521
|
+
:param pulumi.Input[int] verify_trigger: (Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
403
522
|
|
404
523
|
|
405
524
|
** IMPORTANT **
|
@@ -431,7 +550,8 @@ class DrPlan(pulumi.CustomResource):
|
|
431
550
|
},
|
432
551
|
freeform_tags={
|
433
552
|
"Department": "Finance",
|
434
|
-
}
|
553
|
+
},
|
554
|
+
source_plan_id=test_source_plan["id"])
|
435
555
|
```
|
436
556
|
|
437
557
|
## Import
|
@@ -461,7 +581,10 @@ class DrPlan(pulumi.CustomResource):
|
|
461
581
|
display_name: Optional[pulumi.Input[str]] = None,
|
462
582
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
463
583
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
584
|
+
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
585
|
+
source_plan_id: Optional[pulumi.Input[str]] = None,
|
464
586
|
type: Optional[pulumi.Input[str]] = None,
|
587
|
+
verify_trigger: Optional[pulumi.Input[int]] = None,
|
465
588
|
__props__=None):
|
466
589
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
467
590
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -479,11 +602,15 @@ class DrPlan(pulumi.CustomResource):
|
|
479
602
|
raise TypeError("Missing required property 'dr_protection_group_id'")
|
480
603
|
__props__.__dict__["dr_protection_group_id"] = dr_protection_group_id
|
481
604
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
605
|
+
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
606
|
+
__props__.__dict__["source_plan_id"] = source_plan_id
|
482
607
|
if type is None and not opts.urn:
|
483
608
|
raise TypeError("Missing required property 'type'")
|
484
609
|
__props__.__dict__["type"] = type
|
610
|
+
__props__.__dict__["verify_trigger"] = verify_trigger
|
485
611
|
__props__.__dict__["compartment_id"] = None
|
486
612
|
__props__.__dict__["life_cycle_details"] = None
|
613
|
+
__props__.__dict__["lifecycle_sub_state"] = None
|
487
614
|
__props__.__dict__["peer_dr_protection_group_id"] = None
|
488
615
|
__props__.__dict__["peer_region"] = None
|
489
616
|
__props__.__dict__["plan_groups"] = None
|
@@ -507,14 +634,18 @@ class DrPlan(pulumi.CustomResource):
|
|
507
634
|
dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
508
635
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
509
636
|
life_cycle_details: Optional[pulumi.Input[str]] = None,
|
637
|
+
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
510
638
|
peer_dr_protection_group_id: Optional[pulumi.Input[str]] = None,
|
511
639
|
peer_region: Optional[pulumi.Input[str]] = None,
|
512
640
|
plan_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DrPlanPlanGroupArgs', 'DrPlanPlanGroupArgsDict']]]]] = None,
|
641
|
+
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
642
|
+
source_plan_id: Optional[pulumi.Input[str]] = None,
|
513
643
|
state: Optional[pulumi.Input[str]] = None,
|
514
644
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
515
645
|
time_created: Optional[pulumi.Input[str]] = None,
|
516
646
|
time_updated: Optional[pulumi.Input[str]] = None,
|
517
|
-
type: Optional[pulumi.Input[str]] = None
|
647
|
+
type: Optional[pulumi.Input[str]] = None,
|
648
|
+
verify_trigger: Optional[pulumi.Input[int]] = None) -> 'DrPlan':
|
518
649
|
"""
|
519
650
|
Get an existing DrPlan resource's state with the given name, id, and optional extra
|
520
651
|
properties used to qualify the lookup.
|
@@ -528,14 +659,18 @@ class DrPlan(pulumi.CustomResource):
|
|
528
659
|
:param pulumi.Input[str] dr_protection_group_id: The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
529
660
|
: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: `{"Department": "Finance"}`
|
530
661
|
:param pulumi.Input[str] life_cycle_details: A message describing the DR plan's current state in more detail.
|
662
|
+
:param pulumi.Input[str] lifecycle_sub_state: The current state of the DR plan.
|
531
663
|
:param pulumi.Input[str] peer_dr_protection_group_id: The OCID of the peer DR protection group associated with this plan's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`
|
532
664
|
:param pulumi.Input[str] peer_region: The region of the peer DR protection group associated with this plan's DR protection group. Example: `us-ashburn-1`
|
533
665
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DrPlanPlanGroupArgs', 'DrPlanPlanGroupArgsDict']]]] plan_groups: The list of groups in this DR plan.
|
666
|
+
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
667
|
+
:param pulumi.Input[str] source_plan_id: The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
534
668
|
:param pulumi.Input[str] state: The current state of the DR plan.
|
535
669
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
536
670
|
:param pulumi.Input[str] time_created: The date and time the DR plan was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`
|
537
671
|
:param pulumi.Input[str] time_updated: The date and time the DR plan was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`
|
538
|
-
:param pulumi.Input[str] type: The type of DR plan to be created.
|
672
|
+
:param pulumi.Input[str] type: The type of DR plan to be created.
|
673
|
+
:param pulumi.Input[int] verify_trigger: (Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
539
674
|
|
540
675
|
|
541
676
|
** IMPORTANT **
|
@@ -551,14 +686,18 @@ class DrPlan(pulumi.CustomResource):
|
|
551
686
|
__props__.__dict__["dr_protection_group_id"] = dr_protection_group_id
|
552
687
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
553
688
|
__props__.__dict__["life_cycle_details"] = life_cycle_details
|
689
|
+
__props__.__dict__["lifecycle_sub_state"] = lifecycle_sub_state
|
554
690
|
__props__.__dict__["peer_dr_protection_group_id"] = peer_dr_protection_group_id
|
555
691
|
__props__.__dict__["peer_region"] = peer_region
|
556
692
|
__props__.__dict__["plan_groups"] = plan_groups
|
693
|
+
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
694
|
+
__props__.__dict__["source_plan_id"] = source_plan_id
|
557
695
|
__props__.__dict__["state"] = state
|
558
696
|
__props__.__dict__["system_tags"] = system_tags
|
559
697
|
__props__.__dict__["time_created"] = time_created
|
560
698
|
__props__.__dict__["time_updated"] = time_updated
|
561
699
|
__props__.__dict__["type"] = type
|
700
|
+
__props__.__dict__["verify_trigger"] = verify_trigger
|
562
701
|
return DrPlan(resource_name, opts=opts, __props__=__props__)
|
563
702
|
|
564
703
|
@property
|
@@ -609,6 +748,14 @@ class DrPlan(pulumi.CustomResource):
|
|
609
748
|
"""
|
610
749
|
return pulumi.get(self, "life_cycle_details")
|
611
750
|
|
751
|
+
@property
|
752
|
+
@pulumi.getter(name="lifecycleSubState")
|
753
|
+
def lifecycle_sub_state(self) -> pulumi.Output[str]:
|
754
|
+
"""
|
755
|
+
The current state of the DR plan.
|
756
|
+
"""
|
757
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
758
|
+
|
612
759
|
@property
|
613
760
|
@pulumi.getter(name="peerDrProtectionGroupId")
|
614
761
|
def peer_dr_protection_group_id(self) -> pulumi.Output[str]:
|
@@ -633,6 +780,22 @@ class DrPlan(pulumi.CustomResource):
|
|
633
780
|
"""
|
634
781
|
return pulumi.get(self, "plan_groups")
|
635
782
|
|
783
|
+
@property
|
784
|
+
@pulumi.getter(name="refreshTrigger")
|
785
|
+
def refresh_trigger(self) -> pulumi.Output[Optional[int]]:
|
786
|
+
"""
|
787
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
788
|
+
"""
|
789
|
+
return pulumi.get(self, "refresh_trigger")
|
790
|
+
|
791
|
+
@property
|
792
|
+
@pulumi.getter(name="sourcePlanId")
|
793
|
+
def source_plan_id(self) -> pulumi.Output[str]:
|
794
|
+
"""
|
795
|
+
The OCID of the source DR plan that should be cloned. Example: `ocid1.drplan.oc1..uniqueID`
|
796
|
+
"""
|
797
|
+
return pulumi.get(self, "source_plan_id")
|
798
|
+
|
636
799
|
@property
|
637
800
|
@pulumi.getter
|
638
801
|
def state(self) -> pulumi.Output[str]:
|
@@ -669,11 +832,19 @@ class DrPlan(pulumi.CustomResource):
|
|
669
832
|
@pulumi.getter
|
670
833
|
def type(self) -> pulumi.Output[str]:
|
671
834
|
"""
|
672
|
-
The type of DR plan to be created.
|
835
|
+
The type of DR plan to be created.
|
836
|
+
"""
|
837
|
+
return pulumi.get(self, "type")
|
838
|
+
|
839
|
+
@property
|
840
|
+
@pulumi.getter(name="verifyTrigger")
|
841
|
+
def verify_trigger(self) -> pulumi.Output[Optional[int]]:
|
842
|
+
"""
|
843
|
+
(Updatable) An optional property when incremented triggers Verify. Could be set to any integer value.
|
673
844
|
|
674
845
|
|
675
846
|
** IMPORTANT **
|
676
847
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
677
848
|
"""
|
678
|
-
return pulumi.get(self, "
|
849
|
+
return pulumi.get(self, "verify_trigger")
|
679
850
|
|
@@ -27,7 +27,7 @@ class GetDrPlanResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDrPlan.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, dr_plan_id=None, dr_protection_group_id=None, freeform_tags=None, id=None, life_cycle_details=None, peer_dr_protection_group_id=None, peer_region=None, plan_groups=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None):
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, dr_plan_id=None, dr_protection_group_id=None, freeform_tags=None, id=None, life_cycle_details=None, lifecycle_sub_state=None, peer_dr_protection_group_id=None, peer_region=None, plan_groups=None, refresh_trigger=None, source_plan_id=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None, verify_trigger=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)
|
@@ -52,6 +52,9 @@ class GetDrPlanResult:
|
|
52
52
|
if life_cycle_details and not isinstance(life_cycle_details, str):
|
53
53
|
raise TypeError("Expected argument 'life_cycle_details' to be a str")
|
54
54
|
pulumi.set(__self__, "life_cycle_details", life_cycle_details)
|
55
|
+
if lifecycle_sub_state and not isinstance(lifecycle_sub_state, str):
|
56
|
+
raise TypeError("Expected argument 'lifecycle_sub_state' to be a str")
|
57
|
+
pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
|
55
58
|
if peer_dr_protection_group_id and not isinstance(peer_dr_protection_group_id, str):
|
56
59
|
raise TypeError("Expected argument 'peer_dr_protection_group_id' to be a str")
|
57
60
|
pulumi.set(__self__, "peer_dr_protection_group_id", peer_dr_protection_group_id)
|
@@ -61,6 +64,12 @@ class GetDrPlanResult:
|
|
61
64
|
if plan_groups and not isinstance(plan_groups, list):
|
62
65
|
raise TypeError("Expected argument 'plan_groups' to be a list")
|
63
66
|
pulumi.set(__self__, "plan_groups", plan_groups)
|
67
|
+
if refresh_trigger and not isinstance(refresh_trigger, int):
|
68
|
+
raise TypeError("Expected argument 'refresh_trigger' to be a int")
|
69
|
+
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
70
|
+
if source_plan_id and not isinstance(source_plan_id, str):
|
71
|
+
raise TypeError("Expected argument 'source_plan_id' to be a str")
|
72
|
+
pulumi.set(__self__, "source_plan_id", source_plan_id)
|
64
73
|
if state and not isinstance(state, str):
|
65
74
|
raise TypeError("Expected argument 'state' to be a str")
|
66
75
|
pulumi.set(__self__, "state", state)
|
@@ -76,6 +85,9 @@ class GetDrPlanResult:
|
|
76
85
|
if type and not isinstance(type, str):
|
77
86
|
raise TypeError("Expected argument 'type' to be a str")
|
78
87
|
pulumi.set(__self__, "type", type)
|
88
|
+
if verify_trigger and not isinstance(verify_trigger, int):
|
89
|
+
raise TypeError("Expected argument 'verify_trigger' to be a int")
|
90
|
+
pulumi.set(__self__, "verify_trigger", verify_trigger)
|
79
91
|
|
80
92
|
@property
|
81
93
|
@pulumi.getter(name="compartmentId")
|
@@ -138,6 +150,14 @@ class GetDrPlanResult:
|
|
138
150
|
"""
|
139
151
|
return pulumi.get(self, "life_cycle_details")
|
140
152
|
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="lifecycleSubState")
|
155
|
+
def lifecycle_sub_state(self) -> str:
|
156
|
+
"""
|
157
|
+
The current state of the DR plan.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
160
|
+
|
141
161
|
@property
|
142
162
|
@pulumi.getter(name="peerDrProtectionGroupId")
|
143
163
|
def peer_dr_protection_group_id(self) -> str:
|
@@ -162,6 +182,19 @@ class GetDrPlanResult:
|
|
162
182
|
"""
|
163
183
|
return pulumi.get(self, "plan_groups")
|
164
184
|
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="refreshTrigger")
|
187
|
+
def refresh_trigger(self) -> int:
|
188
|
+
return pulumi.get(self, "refresh_trigger")
|
189
|
+
|
190
|
+
@property
|
191
|
+
@pulumi.getter(name="sourcePlanId")
|
192
|
+
def source_plan_id(self) -> str:
|
193
|
+
"""
|
194
|
+
If this is a cloned DR plan, the OCID of the source DR plan that was used to clone this DR plan. If this DR plan was not cloned, then the value for this will be `null`. Example: `ocid1.drplan.oc1..uniqueID`
|
195
|
+
"""
|
196
|
+
return pulumi.get(self, "source_plan_id")
|
197
|
+
|
165
198
|
@property
|
166
199
|
@pulumi.getter
|
167
200
|
def state(self) -> str:
|
@@ -202,6 +235,11 @@ class GetDrPlanResult:
|
|
202
235
|
"""
|
203
236
|
return pulumi.get(self, "type")
|
204
237
|
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="verifyTrigger")
|
240
|
+
def verify_trigger(self) -> int:
|
241
|
+
return pulumi.get(self, "verify_trigger")
|
242
|
+
|
205
243
|
|
206
244
|
class AwaitableGetDrPlanResult(GetDrPlanResult):
|
207
245
|
# pylint: disable=using-constant-test
|
@@ -217,14 +255,18 @@ class AwaitableGetDrPlanResult(GetDrPlanResult):
|
|
217
255
|
freeform_tags=self.freeform_tags,
|
218
256
|
id=self.id,
|
219
257
|
life_cycle_details=self.life_cycle_details,
|
258
|
+
lifecycle_sub_state=self.lifecycle_sub_state,
|
220
259
|
peer_dr_protection_group_id=self.peer_dr_protection_group_id,
|
221
260
|
peer_region=self.peer_region,
|
222
261
|
plan_groups=self.plan_groups,
|
262
|
+
refresh_trigger=self.refresh_trigger,
|
263
|
+
source_plan_id=self.source_plan_id,
|
223
264
|
state=self.state,
|
224
265
|
system_tags=self.system_tags,
|
225
266
|
time_created=self.time_created,
|
226
267
|
time_updated=self.time_updated,
|
227
|
-
type=self.type
|
268
|
+
type=self.type,
|
269
|
+
verify_trigger=self.verify_trigger)
|
228
270
|
|
229
271
|
|
230
272
|
def get_dr_plan(dr_plan_id: Optional[str] = None,
|
@@ -260,14 +302,18 @@ def get_dr_plan(dr_plan_id: Optional[str] = None,
|
|
260
302
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
261
303
|
id=pulumi.get(__ret__, 'id'),
|
262
304
|
life_cycle_details=pulumi.get(__ret__, 'life_cycle_details'),
|
305
|
+
lifecycle_sub_state=pulumi.get(__ret__, 'lifecycle_sub_state'),
|
263
306
|
peer_dr_protection_group_id=pulumi.get(__ret__, 'peer_dr_protection_group_id'),
|
264
307
|
peer_region=pulumi.get(__ret__, 'peer_region'),
|
265
308
|
plan_groups=pulumi.get(__ret__, 'plan_groups'),
|
309
|
+
refresh_trigger=pulumi.get(__ret__, 'refresh_trigger'),
|
310
|
+
source_plan_id=pulumi.get(__ret__, 'source_plan_id'),
|
266
311
|
state=pulumi.get(__ret__, 'state'),
|
267
312
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
268
313
|
time_created=pulumi.get(__ret__, 'time_created'),
|
269
314
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
270
|
-
type=pulumi.get(__ret__, 'type')
|
315
|
+
type=pulumi.get(__ret__, 'type'),
|
316
|
+
verify_trigger=pulumi.get(__ret__, 'verify_trigger'))
|
271
317
|
def get_dr_plan_output(dr_plan_id: Optional[pulumi.Input[str]] = None,
|
272
318
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDrPlanResult]:
|
273
319
|
"""
|
@@ -300,11 +346,15 @@ def get_dr_plan_output(dr_plan_id: Optional[pulumi.Input[str]] = None,
|
|
300
346
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
301
347
|
id=pulumi.get(__response__, 'id'),
|
302
348
|
life_cycle_details=pulumi.get(__response__, 'life_cycle_details'),
|
349
|
+
lifecycle_sub_state=pulumi.get(__response__, 'lifecycle_sub_state'),
|
303
350
|
peer_dr_protection_group_id=pulumi.get(__response__, 'peer_dr_protection_group_id'),
|
304
351
|
peer_region=pulumi.get(__response__, 'peer_region'),
|
305
352
|
plan_groups=pulumi.get(__response__, 'plan_groups'),
|
353
|
+
refresh_trigger=pulumi.get(__response__, 'refresh_trigger'),
|
354
|
+
source_plan_id=pulumi.get(__response__, 'source_plan_id'),
|
306
355
|
state=pulumi.get(__response__, 'state'),
|
307
356
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
308
357
|
time_created=pulumi.get(__response__, 'time_created'),
|
309
358
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
310
|
-
type=pulumi.get(__response__, 'type')
|
359
|
+
type=pulumi.get(__response__, 'type'),
|
360
|
+
verify_trigger=pulumi.get(__response__, 'verify_trigger')))
|