pulumi-azure-native 2.19.1a1701217948__py3-none-any.whl → 2.20.1__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.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

@@ -0,0 +1,671 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+
14
+ __all__ = [
15
+ 'AddActionGroupsResponse',
16
+ 'AlertProcessingRulePropertiesResponse',
17
+ 'ConditionResponse',
18
+ 'DailyRecurrenceResponse',
19
+ 'MonthlyRecurrenceResponse',
20
+ 'RemoveAllActionGroupsResponse',
21
+ 'ScheduleResponse',
22
+ 'SystemDataResponse',
23
+ 'WeeklyRecurrenceResponse',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class AddActionGroupsResponse(dict):
28
+ """
29
+ Add action groups to alert processing rule.
30
+ """
31
+ @staticmethod
32
+ def __key_warning(key: str):
33
+ suggest = None
34
+ if key == "actionGroupIds":
35
+ suggest = "action_group_ids"
36
+ elif key == "actionType":
37
+ suggest = "action_type"
38
+
39
+ if suggest:
40
+ pulumi.log.warn(f"Key '{key}' not found in AddActionGroupsResponse. Access the value via the '{suggest}' property getter instead.")
41
+
42
+ def __getitem__(self, key: str) -> Any:
43
+ AddActionGroupsResponse.__key_warning(key)
44
+ return super().__getitem__(key)
45
+
46
+ def get(self, key: str, default = None) -> Any:
47
+ AddActionGroupsResponse.__key_warning(key)
48
+ return super().get(key, default)
49
+
50
+ def __init__(__self__, *,
51
+ action_group_ids: Sequence[str],
52
+ action_type: str):
53
+ """
54
+ Add action groups to alert processing rule.
55
+ :param Sequence[str] action_group_ids: List of action group Ids to add to alert processing rule.
56
+ :param str action_type: Action that should be applied.
57
+ Expected value is 'AddActionGroups'.
58
+ """
59
+ pulumi.set(__self__, "action_group_ids", action_group_ids)
60
+ pulumi.set(__self__, "action_type", 'AddActionGroups')
61
+
62
+ @property
63
+ @pulumi.getter(name="actionGroupIds")
64
+ def action_group_ids(self) -> Sequence[str]:
65
+ """
66
+ List of action group Ids to add to alert processing rule.
67
+ """
68
+ return pulumi.get(self, "action_group_ids")
69
+
70
+ @property
71
+ @pulumi.getter(name="actionType")
72
+ def action_type(self) -> str:
73
+ """
74
+ Action that should be applied.
75
+ Expected value is 'AddActionGroups'.
76
+ """
77
+ return pulumi.get(self, "action_type")
78
+
79
+
80
+ @pulumi.output_type
81
+ class AlertProcessingRulePropertiesResponse(dict):
82
+ """
83
+ Alert processing rule properties defining scopes, conditions and scheduling logic for alert processing rule.
84
+ """
85
+ def __init__(__self__, *,
86
+ actions: Sequence[Any],
87
+ scopes: Sequence[str],
88
+ conditions: Optional[Sequence['outputs.ConditionResponse']] = None,
89
+ description: Optional[str] = None,
90
+ enabled: Optional[bool] = None,
91
+ schedule: Optional['outputs.ScheduleResponse'] = None):
92
+ """
93
+ Alert processing rule properties defining scopes, conditions and scheduling logic for alert processing rule.
94
+ :param Sequence[Union['AddActionGroupsResponse', 'RemoveAllActionGroupsResponse']] actions: Actions to be applied.
95
+ :param Sequence[str] scopes: Scopes on which alert processing rule will apply.
96
+ :param Sequence['ConditionResponse'] conditions: Conditions on which alerts will be filtered.
97
+ :param str description: Description of alert processing rule.
98
+ :param bool enabled: Indicates if the given alert processing rule is enabled or disabled.
99
+ :param 'ScheduleResponse' schedule: Scheduling for alert processing rule.
100
+ """
101
+ pulumi.set(__self__, "actions", actions)
102
+ pulumi.set(__self__, "scopes", scopes)
103
+ if conditions is not None:
104
+ pulumi.set(__self__, "conditions", conditions)
105
+ if description is not None:
106
+ pulumi.set(__self__, "description", description)
107
+ if enabled is None:
108
+ enabled = True
109
+ if enabled is not None:
110
+ pulumi.set(__self__, "enabled", enabled)
111
+ if schedule is not None:
112
+ pulumi.set(__self__, "schedule", schedule)
113
+
114
+ @property
115
+ @pulumi.getter
116
+ def actions(self) -> Sequence[Any]:
117
+ """
118
+ Actions to be applied.
119
+ """
120
+ return pulumi.get(self, "actions")
121
+
122
+ @property
123
+ @pulumi.getter
124
+ def scopes(self) -> Sequence[str]:
125
+ """
126
+ Scopes on which alert processing rule will apply.
127
+ """
128
+ return pulumi.get(self, "scopes")
129
+
130
+ @property
131
+ @pulumi.getter
132
+ def conditions(self) -> Optional[Sequence['outputs.ConditionResponse']]:
133
+ """
134
+ Conditions on which alerts will be filtered.
135
+ """
136
+ return pulumi.get(self, "conditions")
137
+
138
+ @property
139
+ @pulumi.getter
140
+ def description(self) -> Optional[str]:
141
+ """
142
+ Description of alert processing rule.
143
+ """
144
+ return pulumi.get(self, "description")
145
+
146
+ @property
147
+ @pulumi.getter
148
+ def enabled(self) -> Optional[bool]:
149
+ """
150
+ Indicates if the given alert processing rule is enabled or disabled.
151
+ """
152
+ return pulumi.get(self, "enabled")
153
+
154
+ @property
155
+ @pulumi.getter
156
+ def schedule(self) -> Optional['outputs.ScheduleResponse']:
157
+ """
158
+ Scheduling for alert processing rule.
159
+ """
160
+ return pulumi.get(self, "schedule")
161
+
162
+
163
+ @pulumi.output_type
164
+ class ConditionResponse(dict):
165
+ """
166
+ Condition to trigger an alert processing rule.
167
+ """
168
+ def __init__(__self__, *,
169
+ field: Optional[str] = None,
170
+ operator: Optional[str] = None,
171
+ values: Optional[Sequence[str]] = None):
172
+ """
173
+ Condition to trigger an alert processing rule.
174
+ :param str field: Field for a given condition.
175
+ :param str operator: Operator for a given condition.
176
+ :param Sequence[str] values: List of values to match for a given condition.
177
+ """
178
+ if field is not None:
179
+ pulumi.set(__self__, "field", field)
180
+ if operator is not None:
181
+ pulumi.set(__self__, "operator", operator)
182
+ if values is not None:
183
+ pulumi.set(__self__, "values", values)
184
+
185
+ @property
186
+ @pulumi.getter
187
+ def field(self) -> Optional[str]:
188
+ """
189
+ Field for a given condition.
190
+ """
191
+ return pulumi.get(self, "field")
192
+
193
+ @property
194
+ @pulumi.getter
195
+ def operator(self) -> Optional[str]:
196
+ """
197
+ Operator for a given condition.
198
+ """
199
+ return pulumi.get(self, "operator")
200
+
201
+ @property
202
+ @pulumi.getter
203
+ def values(self) -> Optional[Sequence[str]]:
204
+ """
205
+ List of values to match for a given condition.
206
+ """
207
+ return pulumi.get(self, "values")
208
+
209
+
210
+ @pulumi.output_type
211
+ class DailyRecurrenceResponse(dict):
212
+ """
213
+ Daily recurrence object.
214
+ """
215
+ @staticmethod
216
+ def __key_warning(key: str):
217
+ suggest = None
218
+ if key == "endTime":
219
+ suggest = "end_time"
220
+ elif key == "recurrenceType":
221
+ suggest = "recurrence_type"
222
+ elif key == "startTime":
223
+ suggest = "start_time"
224
+
225
+ if suggest:
226
+ pulumi.log.warn(f"Key '{key}' not found in DailyRecurrenceResponse. Access the value via the '{suggest}' property getter instead.")
227
+
228
+ def __getitem__(self, key: str) -> Any:
229
+ DailyRecurrenceResponse.__key_warning(key)
230
+ return super().__getitem__(key)
231
+
232
+ def get(self, key: str, default = None) -> Any:
233
+ DailyRecurrenceResponse.__key_warning(key)
234
+ return super().get(key, default)
235
+
236
+ def __init__(__self__, *,
237
+ end_time: str,
238
+ recurrence_type: str,
239
+ start_time: str):
240
+ """
241
+ Daily recurrence object.
242
+ :param str end_time: End time for recurrence.
243
+ :param str recurrence_type: Specifies when the recurrence should be applied.
244
+ Expected value is 'Daily'.
245
+ :param str start_time: Start time for recurrence.
246
+ """
247
+ pulumi.set(__self__, "end_time", end_time)
248
+ pulumi.set(__self__, "recurrence_type", 'Daily')
249
+ pulumi.set(__self__, "start_time", start_time)
250
+
251
+ @property
252
+ @pulumi.getter(name="endTime")
253
+ def end_time(self) -> str:
254
+ """
255
+ End time for recurrence.
256
+ """
257
+ return pulumi.get(self, "end_time")
258
+
259
+ @property
260
+ @pulumi.getter(name="recurrenceType")
261
+ def recurrence_type(self) -> str:
262
+ """
263
+ Specifies when the recurrence should be applied.
264
+ Expected value is 'Daily'.
265
+ """
266
+ return pulumi.get(self, "recurrence_type")
267
+
268
+ @property
269
+ @pulumi.getter(name="startTime")
270
+ def start_time(self) -> str:
271
+ """
272
+ Start time for recurrence.
273
+ """
274
+ return pulumi.get(self, "start_time")
275
+
276
+
277
+ @pulumi.output_type
278
+ class MonthlyRecurrenceResponse(dict):
279
+ """
280
+ Monthly recurrence object.
281
+ """
282
+ @staticmethod
283
+ def __key_warning(key: str):
284
+ suggest = None
285
+ if key == "daysOfMonth":
286
+ suggest = "days_of_month"
287
+ elif key == "recurrenceType":
288
+ suggest = "recurrence_type"
289
+ elif key == "endTime":
290
+ suggest = "end_time"
291
+ elif key == "startTime":
292
+ suggest = "start_time"
293
+
294
+ if suggest:
295
+ pulumi.log.warn(f"Key '{key}' not found in MonthlyRecurrenceResponse. Access the value via the '{suggest}' property getter instead.")
296
+
297
+ def __getitem__(self, key: str) -> Any:
298
+ MonthlyRecurrenceResponse.__key_warning(key)
299
+ return super().__getitem__(key)
300
+
301
+ def get(self, key: str, default = None) -> Any:
302
+ MonthlyRecurrenceResponse.__key_warning(key)
303
+ return super().get(key, default)
304
+
305
+ def __init__(__self__, *,
306
+ days_of_month: Sequence[int],
307
+ recurrence_type: str,
308
+ end_time: Optional[str] = None,
309
+ start_time: Optional[str] = None):
310
+ """
311
+ Monthly recurrence object.
312
+ :param Sequence[int] days_of_month: Specifies the values for monthly recurrence pattern.
313
+ :param str recurrence_type: Specifies when the recurrence should be applied.
314
+ Expected value is 'Monthly'.
315
+ :param str end_time: End time for recurrence.
316
+ :param str start_time: Start time for recurrence.
317
+ """
318
+ pulumi.set(__self__, "days_of_month", days_of_month)
319
+ pulumi.set(__self__, "recurrence_type", 'Monthly')
320
+ if end_time is not None:
321
+ pulumi.set(__self__, "end_time", end_time)
322
+ if start_time is not None:
323
+ pulumi.set(__self__, "start_time", start_time)
324
+
325
+ @property
326
+ @pulumi.getter(name="daysOfMonth")
327
+ def days_of_month(self) -> Sequence[int]:
328
+ """
329
+ Specifies the values for monthly recurrence pattern.
330
+ """
331
+ return pulumi.get(self, "days_of_month")
332
+
333
+ @property
334
+ @pulumi.getter(name="recurrenceType")
335
+ def recurrence_type(self) -> str:
336
+ """
337
+ Specifies when the recurrence should be applied.
338
+ Expected value is 'Monthly'.
339
+ """
340
+ return pulumi.get(self, "recurrence_type")
341
+
342
+ @property
343
+ @pulumi.getter(name="endTime")
344
+ def end_time(self) -> Optional[str]:
345
+ """
346
+ End time for recurrence.
347
+ """
348
+ return pulumi.get(self, "end_time")
349
+
350
+ @property
351
+ @pulumi.getter(name="startTime")
352
+ def start_time(self) -> Optional[str]:
353
+ """
354
+ Start time for recurrence.
355
+ """
356
+ return pulumi.get(self, "start_time")
357
+
358
+
359
+ @pulumi.output_type
360
+ class RemoveAllActionGroupsResponse(dict):
361
+ """
362
+ Indicates if all action groups should be removed.
363
+ """
364
+ @staticmethod
365
+ def __key_warning(key: str):
366
+ suggest = None
367
+ if key == "actionType":
368
+ suggest = "action_type"
369
+
370
+ if suggest:
371
+ pulumi.log.warn(f"Key '{key}' not found in RemoveAllActionGroupsResponse. Access the value via the '{suggest}' property getter instead.")
372
+
373
+ def __getitem__(self, key: str) -> Any:
374
+ RemoveAllActionGroupsResponse.__key_warning(key)
375
+ return super().__getitem__(key)
376
+
377
+ def get(self, key: str, default = None) -> Any:
378
+ RemoveAllActionGroupsResponse.__key_warning(key)
379
+ return super().get(key, default)
380
+
381
+ def __init__(__self__, *,
382
+ action_type: str):
383
+ """
384
+ Indicates if all action groups should be removed.
385
+ :param str action_type: Action that should be applied.
386
+ Expected value is 'RemoveAllActionGroups'.
387
+ """
388
+ pulumi.set(__self__, "action_type", 'RemoveAllActionGroups')
389
+
390
+ @property
391
+ @pulumi.getter(name="actionType")
392
+ def action_type(self) -> str:
393
+ """
394
+ Action that should be applied.
395
+ Expected value is 'RemoveAllActionGroups'.
396
+ """
397
+ return pulumi.get(self, "action_type")
398
+
399
+
400
+ @pulumi.output_type
401
+ class ScheduleResponse(dict):
402
+ """
403
+ Scheduling configuration for a given alert processing rule.
404
+ """
405
+ @staticmethod
406
+ def __key_warning(key: str):
407
+ suggest = None
408
+ if key == "effectiveFrom":
409
+ suggest = "effective_from"
410
+ elif key == "effectiveUntil":
411
+ suggest = "effective_until"
412
+ elif key == "timeZone":
413
+ suggest = "time_zone"
414
+
415
+ if suggest:
416
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleResponse. Access the value via the '{suggest}' property getter instead.")
417
+
418
+ def __getitem__(self, key: str) -> Any:
419
+ ScheduleResponse.__key_warning(key)
420
+ return super().__getitem__(key)
421
+
422
+ def get(self, key: str, default = None) -> Any:
423
+ ScheduleResponse.__key_warning(key)
424
+ return super().get(key, default)
425
+
426
+ def __init__(__self__, *,
427
+ effective_from: Optional[str] = None,
428
+ effective_until: Optional[str] = None,
429
+ recurrences: Optional[Sequence[Any]] = None,
430
+ time_zone: Optional[str] = None):
431
+ """
432
+ Scheduling configuration for a given alert processing rule.
433
+ :param str effective_from: Scheduling effective from time. Date-Time in ISO-8601 format without timezone suffix.
434
+ :param str effective_until: Scheduling effective until time. Date-Time in ISO-8601 format without timezone suffix.
435
+ :param Sequence[Union['DailyRecurrenceResponse', 'MonthlyRecurrenceResponse', 'WeeklyRecurrenceResponse']] recurrences: List of recurrences.
436
+ :param str time_zone: Scheduling time zone.
437
+ """
438
+ if effective_from is not None:
439
+ pulumi.set(__self__, "effective_from", effective_from)
440
+ if effective_until is not None:
441
+ pulumi.set(__self__, "effective_until", effective_until)
442
+ if recurrences is not None:
443
+ pulumi.set(__self__, "recurrences", recurrences)
444
+ if time_zone is not None:
445
+ pulumi.set(__self__, "time_zone", time_zone)
446
+
447
+ @property
448
+ @pulumi.getter(name="effectiveFrom")
449
+ def effective_from(self) -> Optional[str]:
450
+ """
451
+ Scheduling effective from time. Date-Time in ISO-8601 format without timezone suffix.
452
+ """
453
+ return pulumi.get(self, "effective_from")
454
+
455
+ @property
456
+ @pulumi.getter(name="effectiveUntil")
457
+ def effective_until(self) -> Optional[str]:
458
+ """
459
+ Scheduling effective until time. Date-Time in ISO-8601 format without timezone suffix.
460
+ """
461
+ return pulumi.get(self, "effective_until")
462
+
463
+ @property
464
+ @pulumi.getter
465
+ def recurrences(self) -> Optional[Sequence[Any]]:
466
+ """
467
+ List of recurrences.
468
+ """
469
+ return pulumi.get(self, "recurrences")
470
+
471
+ @property
472
+ @pulumi.getter(name="timeZone")
473
+ def time_zone(self) -> Optional[str]:
474
+ """
475
+ Scheduling time zone.
476
+ """
477
+ return pulumi.get(self, "time_zone")
478
+
479
+
480
+ @pulumi.output_type
481
+ class SystemDataResponse(dict):
482
+ """
483
+ Metadata pertaining to creation and last modification of the resource.
484
+ """
485
+ @staticmethod
486
+ def __key_warning(key: str):
487
+ suggest = None
488
+ if key == "createdAt":
489
+ suggest = "created_at"
490
+ elif key == "createdBy":
491
+ suggest = "created_by"
492
+ elif key == "createdByType":
493
+ suggest = "created_by_type"
494
+ elif key == "lastModifiedAt":
495
+ suggest = "last_modified_at"
496
+ elif key == "lastModifiedBy":
497
+ suggest = "last_modified_by"
498
+ elif key == "lastModifiedByType":
499
+ suggest = "last_modified_by_type"
500
+
501
+ if suggest:
502
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
503
+
504
+ def __getitem__(self, key: str) -> Any:
505
+ SystemDataResponse.__key_warning(key)
506
+ return super().__getitem__(key)
507
+
508
+ def get(self, key: str, default = None) -> Any:
509
+ SystemDataResponse.__key_warning(key)
510
+ return super().get(key, default)
511
+
512
+ def __init__(__self__, *,
513
+ created_at: Optional[str] = None,
514
+ created_by: Optional[str] = None,
515
+ created_by_type: Optional[str] = None,
516
+ last_modified_at: Optional[str] = None,
517
+ last_modified_by: Optional[str] = None,
518
+ last_modified_by_type: Optional[str] = None):
519
+ """
520
+ Metadata pertaining to creation and last modification of the resource.
521
+ :param str created_at: The timestamp of resource creation (UTC).
522
+ :param str created_by: The identity that created the resource.
523
+ :param str created_by_type: The type of identity that created the resource.
524
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
525
+ :param str last_modified_by: The identity that last modified the resource.
526
+ :param str last_modified_by_type: The type of identity that last modified the resource.
527
+ """
528
+ if created_at is not None:
529
+ pulumi.set(__self__, "created_at", created_at)
530
+ if created_by is not None:
531
+ pulumi.set(__self__, "created_by", created_by)
532
+ if created_by_type is not None:
533
+ pulumi.set(__self__, "created_by_type", created_by_type)
534
+ if last_modified_at is not None:
535
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
536
+ if last_modified_by is not None:
537
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
538
+ if last_modified_by_type is not None:
539
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
540
+
541
+ @property
542
+ @pulumi.getter(name="createdAt")
543
+ def created_at(self) -> Optional[str]:
544
+ """
545
+ The timestamp of resource creation (UTC).
546
+ """
547
+ return pulumi.get(self, "created_at")
548
+
549
+ @property
550
+ @pulumi.getter(name="createdBy")
551
+ def created_by(self) -> Optional[str]:
552
+ """
553
+ The identity that created the resource.
554
+ """
555
+ return pulumi.get(self, "created_by")
556
+
557
+ @property
558
+ @pulumi.getter(name="createdByType")
559
+ def created_by_type(self) -> Optional[str]:
560
+ """
561
+ The type of identity that created the resource.
562
+ """
563
+ return pulumi.get(self, "created_by_type")
564
+
565
+ @property
566
+ @pulumi.getter(name="lastModifiedAt")
567
+ def last_modified_at(self) -> Optional[str]:
568
+ """
569
+ The timestamp of resource last modification (UTC)
570
+ """
571
+ return pulumi.get(self, "last_modified_at")
572
+
573
+ @property
574
+ @pulumi.getter(name="lastModifiedBy")
575
+ def last_modified_by(self) -> Optional[str]:
576
+ """
577
+ The identity that last modified the resource.
578
+ """
579
+ return pulumi.get(self, "last_modified_by")
580
+
581
+ @property
582
+ @pulumi.getter(name="lastModifiedByType")
583
+ def last_modified_by_type(self) -> Optional[str]:
584
+ """
585
+ The type of identity that last modified the resource.
586
+ """
587
+ return pulumi.get(self, "last_modified_by_type")
588
+
589
+
590
+ @pulumi.output_type
591
+ class WeeklyRecurrenceResponse(dict):
592
+ """
593
+ Weekly recurrence object.
594
+ """
595
+ @staticmethod
596
+ def __key_warning(key: str):
597
+ suggest = None
598
+ if key == "daysOfWeek":
599
+ suggest = "days_of_week"
600
+ elif key == "recurrenceType":
601
+ suggest = "recurrence_type"
602
+ elif key == "endTime":
603
+ suggest = "end_time"
604
+ elif key == "startTime":
605
+ suggest = "start_time"
606
+
607
+ if suggest:
608
+ pulumi.log.warn(f"Key '{key}' not found in WeeklyRecurrenceResponse. Access the value via the '{suggest}' property getter instead.")
609
+
610
+ def __getitem__(self, key: str) -> Any:
611
+ WeeklyRecurrenceResponse.__key_warning(key)
612
+ return super().__getitem__(key)
613
+
614
+ def get(self, key: str, default = None) -> Any:
615
+ WeeklyRecurrenceResponse.__key_warning(key)
616
+ return super().get(key, default)
617
+
618
+ def __init__(__self__, *,
619
+ days_of_week: Sequence[str],
620
+ recurrence_type: str,
621
+ end_time: Optional[str] = None,
622
+ start_time: Optional[str] = None):
623
+ """
624
+ Weekly recurrence object.
625
+ :param Sequence[str] days_of_week: Specifies the values for weekly recurrence pattern.
626
+ :param str recurrence_type: Specifies when the recurrence should be applied.
627
+ Expected value is 'Weekly'.
628
+ :param str end_time: End time for recurrence.
629
+ :param str start_time: Start time for recurrence.
630
+ """
631
+ pulumi.set(__self__, "days_of_week", days_of_week)
632
+ pulumi.set(__self__, "recurrence_type", 'Weekly')
633
+ if end_time is not None:
634
+ pulumi.set(__self__, "end_time", end_time)
635
+ if start_time is not None:
636
+ pulumi.set(__self__, "start_time", start_time)
637
+
638
+ @property
639
+ @pulumi.getter(name="daysOfWeek")
640
+ def days_of_week(self) -> Sequence[str]:
641
+ """
642
+ Specifies the values for weekly recurrence pattern.
643
+ """
644
+ return pulumi.get(self, "days_of_week")
645
+
646
+ @property
647
+ @pulumi.getter(name="recurrenceType")
648
+ def recurrence_type(self) -> str:
649
+ """
650
+ Specifies when the recurrence should be applied.
651
+ Expected value is 'Weekly'.
652
+ """
653
+ return pulumi.get(self, "recurrence_type")
654
+
655
+ @property
656
+ @pulumi.getter(name="endTime")
657
+ def end_time(self) -> Optional[str]:
658
+ """
659
+ End time for recurrence.
660
+ """
661
+ return pulumi.get(self, "end_time")
662
+
663
+ @property
664
+ @pulumi.getter(name="startTime")
665
+ def start_time(self) -> Optional[str]:
666
+ """
667
+ Start time for recurrence.
668
+ """
669
+ return pulumi.get(self, "start_time")
670
+
671
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi-azure-native
3
- Version: 2.19.1a1701217948
3
+ Version: 2.20.1
4
4
  Summary: A native Pulumi package for creating and managing Azure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com