pulumi-gcp 8.9.0a1731221331__py3-none-any.whl → 8.9.0a1731432418__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.
Files changed (114) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/activedirectory/domain.py +24 -0
  3. pulumi_gcp/apigee/__init__.py +1 -0
  4. pulumi_gcp/apigee/_inputs.py +74 -0
  5. pulumi_gcp/apigee/api.py +456 -0
  6. pulumi_gcp/apigee/outputs.py +65 -0
  7. pulumi_gcp/applicationintegration/auth_config.py +24 -0
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +4 -0
  9. pulumi_gcp/backupdisasterrecovery/_inputs.py +533 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_plan.py +653 -0
  11. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +766 -0
  12. pulumi_gcp/backupdisasterrecovery/backup_vault.py +146 -6
  13. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +204 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +243 -0
  15. pulumi_gcp/backupdisasterrecovery/outputs.py +702 -0
  16. pulumi_gcp/bigquery/data_transfer_config.py +24 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +46 -0
  18. pulumi_gcp/cloudrunv2/job.py +0 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +60 -2
  20. pulumi_gcp/cloudrunv2/service.py +0 -2
  21. pulumi_gcp/compute/__init__.py +1 -0
  22. pulumi_gcp/compute/_inputs.py +2163 -256
  23. pulumi_gcp/compute/disk.py +7 -7
  24. pulumi_gcp/compute/firewall_policy_rule.py +108 -54
  25. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  26. pulumi_gcp/compute/health_check.py +42 -42
  27. pulumi_gcp/compute/network_firewall_policy_rule.py +4 -4
  28. pulumi_gcp/compute/network_firewall_policy_with_rules.py +10 -10
  29. pulumi_gcp/compute/node_template.py +95 -0
  30. pulumi_gcp/compute/outputs.py +1639 -213
  31. pulumi_gcp/compute/region_disk.py +7 -7
  32. pulumi_gcp/compute/region_health_check.py +42 -42
  33. pulumi_gcp/compute/region_instance_group_manager.py +54 -14
  34. pulumi_gcp/compute/region_network_firewall_policy_rule.py +4 -4
  35. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +10 -10
  36. pulumi_gcp/compute/region_resize_request.py +772 -0
  37. pulumi_gcp/compute/region_security_policy.py +120 -0
  38. pulumi_gcp/compute/region_security_policy_rule.py +6 -6
  39. pulumi_gcp/compute/router_peer.py +56 -35
  40. pulumi_gcp/compute/security_scan_config.py +8 -8
  41. pulumi_gcp/config/__init__.pyi +4 -0
  42. pulumi_gcp/config/vars.py +8 -0
  43. pulumi_gcp/container/_inputs.py +345 -10
  44. pulumi_gcp/container/cluster.py +101 -0
  45. pulumi_gcp/container/get_cluster.py +23 -1
  46. pulumi_gcp/container/outputs.py +456 -8
  47. pulumi_gcp/dataloss/prevention_discovery_config.py +7 -7
  48. pulumi_gcp/dataproc/__init__.py +2 -0
  49. pulumi_gcp/dataproc/_inputs.py +101 -0
  50. pulumi_gcp/dataproc/gdc_application_environment.py +931 -0
  51. pulumi_gcp/dataproc/gdc_service_instance.py +1022 -0
  52. pulumi_gcp/dataproc/outputs.py +94 -0
  53. pulumi_gcp/edgecontainer/vpn_connection.py +4 -4
  54. pulumi_gcp/firebase/android_app.py +2 -2
  55. pulumi_gcp/firebase/apple_app.py +2 -2
  56. pulumi_gcp/firebase/web_app.py +2 -2
  57. pulumi_gcp/firestore/index.py +44 -0
  58. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  59. pulumi_gcp/gkeonprem/outputs.py +10 -10
  60. pulumi_gcp/healthcare/dataset.py +7 -7
  61. pulumi_gcp/healthcare/dicom_store.py +7 -7
  62. pulumi_gcp/healthcare/fhir_store.py +7 -7
  63. pulumi_gcp/healthcare/hl7_store.py +14 -14
  64. pulumi_gcp/iam/__init__.py +1 -0
  65. pulumi_gcp/iam/_inputs.py +161 -0
  66. pulumi_gcp/iam/outputs.py +114 -0
  67. pulumi_gcp/iam/principal_access_boundary_policy.py +679 -0
  68. pulumi_gcp/logging/metric.py +2 -2
  69. pulumi_gcp/looker/_inputs.py +6 -0
  70. pulumi_gcp/looker/instance.py +169 -321
  71. pulumi_gcp/looker/outputs.py +4 -0
  72. pulumi_gcp/memorystore/instance.py +4 -0
  73. pulumi_gcp/monitoring/alert_policy.py +24 -0
  74. pulumi_gcp/monitoring/custom_service.py +24 -0
  75. pulumi_gcp/monitoring/group.py +24 -0
  76. pulumi_gcp/monitoring/metric_descriptor.py +24 -0
  77. pulumi_gcp/monitoring/slo.py +24 -0
  78. pulumi_gcp/monitoring/uptime_check_config.py +24 -0
  79. pulumi_gcp/networkmanagement/__init__.py +1 -0
  80. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +1358 -0
  81. pulumi_gcp/osconfig/patch_deployment.py +8 -8
  82. pulumi_gcp/provider.py +40 -0
  83. pulumi_gcp/pulumi-plugin.json +1 -1
  84. pulumi_gcp/redis/_inputs.py +3 -3
  85. pulumi_gcp/redis/outputs.py +2 -2
  86. pulumi_gcp/securitycenter/notification_config.py +4 -16
  87. pulumi_gcp/securitycenter/project_notification_config.py +0 -24
  88. pulumi_gcp/securitycenter/v2_organization_notification_config.py +4 -16
  89. pulumi_gcp/spanner/__init__.py +1 -0
  90. pulumi_gcp/spanner/_inputs.py +9 -9
  91. pulumi_gcp/spanner/get_database.py +229 -0
  92. pulumi_gcp/spanner/get_instance.py +12 -1
  93. pulumi_gcp/spanner/instance.py +70 -0
  94. pulumi_gcp/spanner/outputs.py +46 -12
  95. pulumi_gcp/sql/_inputs.py +26 -0
  96. pulumi_gcp/sql/database_instance.py +124 -11
  97. pulumi_gcp/sql/get_database_instance.py +12 -1
  98. pulumi_gcp/sql/outputs.py +51 -0
  99. pulumi_gcp/storage/_inputs.py +3 -3
  100. pulumi_gcp/storage/outputs.py +2 -2
  101. pulumi_gcp/tags/tag_binding.py +4 -4
  102. pulumi_gcp/tags/tag_value.py +2 -2
  103. pulumi_gcp/transcoder/job.py +24 -0
  104. pulumi_gcp/vertex/_inputs.py +184 -0
  105. pulumi_gcp/vertex/ai_endpoint.py +394 -8
  106. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  107. pulumi_gcp/vertex/outputs.py +166 -0
  108. pulumi_gcp/workbench/instance.py +21 -7
  109. pulumi_gcp/workflows/workflow.py +36 -0
  110. pulumi_gcp/workstations/workstation_config.py +8 -8
  111. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/METADATA +1 -1
  112. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/RECORD +114 -103
  113. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/WHEEL +1 -1
  114. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/top_level.txt +0 -0
@@ -13,14 +13,448 @@ 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__ = [
19
+ 'BackupPlanAssociationRulesConfigInfo',
20
+ 'BackupPlanAssociationRulesConfigInfoLastBackupError',
21
+ 'BackupPlanBackupRule',
22
+ 'BackupPlanBackupRuleStandardSchedule',
23
+ 'BackupPlanBackupRuleStandardScheduleBackupWindow',
24
+ 'BackupPlanBackupRuleStandardScheduleWeekDayOfMonth',
18
25
  'ManagementServerManagementUri',
19
26
  'ManagementServerNetwork',
27
+ 'GetBackupPlanAssociationRulesConfigInfoResult',
28
+ 'GetBackupPlanAssociationRulesConfigInfoLastBackupErrorResult',
29
+ 'GetBackupPlanBackupRuleResult',
30
+ 'GetBackupPlanBackupRuleStandardScheduleResult',
31
+ 'GetBackupPlanBackupRuleStandardScheduleBackupWindowResult',
32
+ 'GetBackupPlanBackupRuleStandardScheduleWeekDayOfMonthResult',
20
33
  'GetManagementServerManagementUriResult',
21
34
  'GetManagementServerNetworkResult',
22
35
  ]
23
36
 
37
+ @pulumi.output_type
38
+ class BackupPlanAssociationRulesConfigInfo(dict):
39
+ @staticmethod
40
+ def __key_warning(key: str):
41
+ suggest = None
42
+ if key == "lastBackupErrors":
43
+ suggest = "last_backup_errors"
44
+ elif key == "lastBackupState":
45
+ suggest = "last_backup_state"
46
+ elif key == "ruleId":
47
+ suggest = "rule_id"
48
+
49
+ if suggest:
50
+ pulumi.log.warn(f"Key '{key}' not found in BackupPlanAssociationRulesConfigInfo. Access the value via the '{suggest}' property getter instead.")
51
+
52
+ def __getitem__(self, key: str) -> Any:
53
+ BackupPlanAssociationRulesConfigInfo.__key_warning(key)
54
+ return super().__getitem__(key)
55
+
56
+ def get(self, key: str, default = None) -> Any:
57
+ BackupPlanAssociationRulesConfigInfo.__key_warning(key)
58
+ return super().get(key, default)
59
+
60
+ def __init__(__self__, *,
61
+ last_backup_errors: Optional[Sequence['outputs.BackupPlanAssociationRulesConfigInfoLastBackupError']] = None,
62
+ last_backup_state: Optional[str] = None,
63
+ rule_id: Optional[str] = None):
64
+ """
65
+ :param Sequence['BackupPlanAssociationRulesConfigInfoLastBackupErrorArgs'] last_backup_errors: (Output)
66
+ google.rpc.Status object to store the last backup error
67
+ Structure is documented below.
68
+ :param str last_backup_state: (Output)
69
+ State of last backup taken.
70
+ :param str rule_id: (Output)
71
+ Backup Rule id fetched from backup plan.
72
+ """
73
+ if last_backup_errors is not None:
74
+ pulumi.set(__self__, "last_backup_errors", last_backup_errors)
75
+ if last_backup_state is not None:
76
+ pulumi.set(__self__, "last_backup_state", last_backup_state)
77
+ if rule_id is not None:
78
+ pulumi.set(__self__, "rule_id", rule_id)
79
+
80
+ @property
81
+ @pulumi.getter(name="lastBackupErrors")
82
+ def last_backup_errors(self) -> Optional[Sequence['outputs.BackupPlanAssociationRulesConfigInfoLastBackupError']]:
83
+ """
84
+ (Output)
85
+ google.rpc.Status object to store the last backup error
86
+ Structure is documented below.
87
+ """
88
+ return pulumi.get(self, "last_backup_errors")
89
+
90
+ @property
91
+ @pulumi.getter(name="lastBackupState")
92
+ def last_backup_state(self) -> Optional[str]:
93
+ """
94
+ (Output)
95
+ State of last backup taken.
96
+ """
97
+ return pulumi.get(self, "last_backup_state")
98
+
99
+ @property
100
+ @pulumi.getter(name="ruleId")
101
+ def rule_id(self) -> Optional[str]:
102
+ """
103
+ (Output)
104
+ Backup Rule id fetched from backup plan.
105
+ """
106
+ return pulumi.get(self, "rule_id")
107
+
108
+
109
+ @pulumi.output_type
110
+ class BackupPlanAssociationRulesConfigInfoLastBackupError(dict):
111
+ def __init__(__self__, *,
112
+ code: Optional[float] = None,
113
+ message: Optional[str] = None):
114
+ """
115
+ :param float code: (Output)
116
+ The status code, which should be an enum value of [google.rpc.Code]
117
+ :param str message: (Output)
118
+ A developer-facing error message, which should be in English.
119
+ """
120
+ if code is not None:
121
+ pulumi.set(__self__, "code", code)
122
+ if message is not None:
123
+ pulumi.set(__self__, "message", message)
124
+
125
+ @property
126
+ @pulumi.getter
127
+ def code(self) -> Optional[float]:
128
+ """
129
+ (Output)
130
+ The status code, which should be an enum value of [google.rpc.Code]
131
+ """
132
+ return pulumi.get(self, "code")
133
+
134
+ @property
135
+ @pulumi.getter
136
+ def message(self) -> Optional[str]:
137
+ """
138
+ (Output)
139
+ A developer-facing error message, which should be in English.
140
+ """
141
+ return pulumi.get(self, "message")
142
+
143
+
144
+ @pulumi.output_type
145
+ class BackupPlanBackupRule(dict):
146
+ @staticmethod
147
+ def __key_warning(key: str):
148
+ suggest = None
149
+ if key == "backupRetentionDays":
150
+ suggest = "backup_retention_days"
151
+ elif key == "ruleId":
152
+ suggest = "rule_id"
153
+ elif key == "standardSchedule":
154
+ suggest = "standard_schedule"
155
+
156
+ if suggest:
157
+ pulumi.log.warn(f"Key '{key}' not found in BackupPlanBackupRule. Access the value via the '{suggest}' property getter instead.")
158
+
159
+ def __getitem__(self, key: str) -> Any:
160
+ BackupPlanBackupRule.__key_warning(key)
161
+ return super().__getitem__(key)
162
+
163
+ def get(self, key: str, default = None) -> Any:
164
+ BackupPlanBackupRule.__key_warning(key)
165
+ return super().get(key, default)
166
+
167
+ def __init__(__self__, *,
168
+ backup_retention_days: int,
169
+ rule_id: str,
170
+ standard_schedule: 'outputs.BackupPlanBackupRuleStandardSchedule'):
171
+ """
172
+ :param int backup_retention_days: Configures the duration for which backup data will be kept. The value should be greater than or equal to minimum enforced retention of the backup vault.
173
+ :param str rule_id: The unique ID of this `BackupRule`. The `rule_id` is unique per `BackupPlan`.
174
+ :param 'BackupPlanBackupRuleStandardScheduleArgs' standard_schedule: StandardSchedule defines a schedule that runs within the confines of a defined window of days.
175
+ Structure is documented below.
176
+ """
177
+ pulumi.set(__self__, "backup_retention_days", backup_retention_days)
178
+ pulumi.set(__self__, "rule_id", rule_id)
179
+ pulumi.set(__self__, "standard_schedule", standard_schedule)
180
+
181
+ @property
182
+ @pulumi.getter(name="backupRetentionDays")
183
+ def backup_retention_days(self) -> int:
184
+ """
185
+ Configures the duration for which backup data will be kept. The value should be greater than or equal to minimum enforced retention of the backup vault.
186
+ """
187
+ return pulumi.get(self, "backup_retention_days")
188
+
189
+ @property
190
+ @pulumi.getter(name="ruleId")
191
+ def rule_id(self) -> str:
192
+ """
193
+ The unique ID of this `BackupRule`. The `rule_id` is unique per `BackupPlan`.
194
+ """
195
+ return pulumi.get(self, "rule_id")
196
+
197
+ @property
198
+ @pulumi.getter(name="standardSchedule")
199
+ def standard_schedule(self) -> 'outputs.BackupPlanBackupRuleStandardSchedule':
200
+ """
201
+ StandardSchedule defines a schedule that runs within the confines of a defined window of days.
202
+ Structure is documented below.
203
+ """
204
+ return pulumi.get(self, "standard_schedule")
205
+
206
+
207
+ @pulumi.output_type
208
+ class BackupPlanBackupRuleStandardSchedule(dict):
209
+ @staticmethod
210
+ def __key_warning(key: str):
211
+ suggest = None
212
+ if key == "recurrenceType":
213
+ suggest = "recurrence_type"
214
+ elif key == "timeZone":
215
+ suggest = "time_zone"
216
+ elif key == "backupWindow":
217
+ suggest = "backup_window"
218
+ elif key == "daysOfMonths":
219
+ suggest = "days_of_months"
220
+ elif key == "daysOfWeeks":
221
+ suggest = "days_of_weeks"
222
+ elif key == "hourlyFrequency":
223
+ suggest = "hourly_frequency"
224
+ elif key == "weekDayOfMonth":
225
+ suggest = "week_day_of_month"
226
+
227
+ if suggest:
228
+ pulumi.log.warn(f"Key '{key}' not found in BackupPlanBackupRuleStandardSchedule. Access the value via the '{suggest}' property getter instead.")
229
+
230
+ def __getitem__(self, key: str) -> Any:
231
+ BackupPlanBackupRuleStandardSchedule.__key_warning(key)
232
+ return super().__getitem__(key)
233
+
234
+ def get(self, key: str, default = None) -> Any:
235
+ BackupPlanBackupRuleStandardSchedule.__key_warning(key)
236
+ return super().get(key, default)
237
+
238
+ def __init__(__self__, *,
239
+ recurrence_type: str,
240
+ time_zone: str,
241
+ backup_window: Optional['outputs.BackupPlanBackupRuleStandardScheduleBackupWindow'] = None,
242
+ days_of_months: Optional[Sequence[int]] = None,
243
+ days_of_weeks: Optional[Sequence[str]] = None,
244
+ hourly_frequency: Optional[int] = None,
245
+ months: Optional[Sequence[str]] = None,
246
+ week_day_of_month: Optional['outputs.BackupPlanBackupRuleStandardScheduleWeekDayOfMonth'] = None):
247
+ """
248
+ :param str recurrence_type: RecurrenceType enumerates the applicable periodicity for the schedule.
249
+ Possible values are: `HOURLY`, `DAILY`, `WEEKLY`, `MONTHLY`, `YEARLY`.
250
+ :param str time_zone: The time zone to be used when interpreting the schedule.
251
+ :param 'BackupPlanBackupRuleStandardScheduleBackupWindowArgs' backup_window: A BackupWindow defines the window of the day during which backup jobs will run. Jobs are queued at the beginning of the window and will be marked as
252
+ `NOT_RUN` if they do not start by the end of the window.
253
+ Structure is documented below.
254
+ :param Sequence[int] days_of_months: Specifies days of months like 1, 5, or 14 on which jobs will run.
255
+ :param Sequence[str] days_of_weeks: Specifies days of week like MONDAY or TUESDAY, on which jobs will run. This is required for `recurrence_type`, `WEEKLY` and is not applicable otherwise.
256
+ Each value may be one of: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`.
257
+ :param int hourly_frequency: Specifies frequency for hourly backups. An hourly frequency of 2 means jobs will run every 2 hours from start time till end time defined.
258
+ This is required for `recurrence_type`, `HOURLY` and is not applicable otherwise.
259
+ :param Sequence[str] months: Specifies values of months
260
+ Each value may be one of: `MONTH_UNSPECIFIED`, `JANUARY`, `FEBRUARY`, `MARCH`, `APRIL`, `MAY`, `JUNE`, `JULY`, `AUGUST`, `SEPTEMBER`, `OCTOBER`, `NOVEMBER`, `DECEMBER`.
261
+ :param 'BackupPlanBackupRuleStandardScheduleWeekDayOfMonthArgs' week_day_of_month: Specifies a week day of the month like FIRST SUNDAY or LAST MONDAY, on which jobs will run.
262
+ Structure is documented below.
263
+ """
264
+ pulumi.set(__self__, "recurrence_type", recurrence_type)
265
+ pulumi.set(__self__, "time_zone", time_zone)
266
+ if backup_window is not None:
267
+ pulumi.set(__self__, "backup_window", backup_window)
268
+ if days_of_months is not None:
269
+ pulumi.set(__self__, "days_of_months", days_of_months)
270
+ if days_of_weeks is not None:
271
+ pulumi.set(__self__, "days_of_weeks", days_of_weeks)
272
+ if hourly_frequency is not None:
273
+ pulumi.set(__self__, "hourly_frequency", hourly_frequency)
274
+ if months is not None:
275
+ pulumi.set(__self__, "months", months)
276
+ if week_day_of_month is not None:
277
+ pulumi.set(__self__, "week_day_of_month", week_day_of_month)
278
+
279
+ @property
280
+ @pulumi.getter(name="recurrenceType")
281
+ def recurrence_type(self) -> str:
282
+ """
283
+ RecurrenceType enumerates the applicable periodicity for the schedule.
284
+ Possible values are: `HOURLY`, `DAILY`, `WEEKLY`, `MONTHLY`, `YEARLY`.
285
+ """
286
+ return pulumi.get(self, "recurrence_type")
287
+
288
+ @property
289
+ @pulumi.getter(name="timeZone")
290
+ def time_zone(self) -> str:
291
+ """
292
+ The time zone to be used when interpreting the schedule.
293
+ """
294
+ return pulumi.get(self, "time_zone")
295
+
296
+ @property
297
+ @pulumi.getter(name="backupWindow")
298
+ def backup_window(self) -> Optional['outputs.BackupPlanBackupRuleStandardScheduleBackupWindow']:
299
+ """
300
+ A BackupWindow defines the window of the day during which backup jobs will run. Jobs are queued at the beginning of the window and will be marked as
301
+ `NOT_RUN` if they do not start by the end of the window.
302
+ Structure is documented below.
303
+ """
304
+ return pulumi.get(self, "backup_window")
305
+
306
+ @property
307
+ @pulumi.getter(name="daysOfMonths")
308
+ def days_of_months(self) -> Optional[Sequence[int]]:
309
+ """
310
+ Specifies days of months like 1, 5, or 14 on which jobs will run.
311
+ """
312
+ return pulumi.get(self, "days_of_months")
313
+
314
+ @property
315
+ @pulumi.getter(name="daysOfWeeks")
316
+ def days_of_weeks(self) -> Optional[Sequence[str]]:
317
+ """
318
+ Specifies days of week like MONDAY or TUESDAY, on which jobs will run. This is required for `recurrence_type`, `WEEKLY` and is not applicable otherwise.
319
+ Each value may be one of: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`.
320
+ """
321
+ return pulumi.get(self, "days_of_weeks")
322
+
323
+ @property
324
+ @pulumi.getter(name="hourlyFrequency")
325
+ def hourly_frequency(self) -> Optional[int]:
326
+ """
327
+ Specifies frequency for hourly backups. An hourly frequency of 2 means jobs will run every 2 hours from start time till end time defined.
328
+ This is required for `recurrence_type`, `HOURLY` and is not applicable otherwise.
329
+ """
330
+ return pulumi.get(self, "hourly_frequency")
331
+
332
+ @property
333
+ @pulumi.getter
334
+ def months(self) -> Optional[Sequence[str]]:
335
+ """
336
+ Specifies values of months
337
+ Each value may be one of: `MONTH_UNSPECIFIED`, `JANUARY`, `FEBRUARY`, `MARCH`, `APRIL`, `MAY`, `JUNE`, `JULY`, `AUGUST`, `SEPTEMBER`, `OCTOBER`, `NOVEMBER`, `DECEMBER`.
338
+ """
339
+ return pulumi.get(self, "months")
340
+
341
+ @property
342
+ @pulumi.getter(name="weekDayOfMonth")
343
+ def week_day_of_month(self) -> Optional['outputs.BackupPlanBackupRuleStandardScheduleWeekDayOfMonth']:
344
+ """
345
+ Specifies a week day of the month like FIRST SUNDAY or LAST MONDAY, on which jobs will run.
346
+ Structure is documented below.
347
+ """
348
+ return pulumi.get(self, "week_day_of_month")
349
+
350
+
351
+ @pulumi.output_type
352
+ class BackupPlanBackupRuleStandardScheduleBackupWindow(dict):
353
+ @staticmethod
354
+ def __key_warning(key: str):
355
+ suggest = None
356
+ if key == "startHourOfDay":
357
+ suggest = "start_hour_of_day"
358
+ elif key == "endHourOfDay":
359
+ suggest = "end_hour_of_day"
360
+
361
+ if suggest:
362
+ pulumi.log.warn(f"Key '{key}' not found in BackupPlanBackupRuleStandardScheduleBackupWindow. Access the value via the '{suggest}' property getter instead.")
363
+
364
+ def __getitem__(self, key: str) -> Any:
365
+ BackupPlanBackupRuleStandardScheduleBackupWindow.__key_warning(key)
366
+ return super().__getitem__(key)
367
+
368
+ def get(self, key: str, default = None) -> Any:
369
+ BackupPlanBackupRuleStandardScheduleBackupWindow.__key_warning(key)
370
+ return super().get(key, default)
371
+
372
+ def __init__(__self__, *,
373
+ start_hour_of_day: int,
374
+ end_hour_of_day: Optional[int] = None):
375
+ """
376
+ :param int start_hour_of_day: The hour of the day (0-23) when the window starts, for example, if the value of the start hour of the day is 6, that means the backup window starts at 6:00.
377
+ :param int end_hour_of_day: The hour of the day (1-24) when the window ends, for example, if the value of end hour of the day is 10, that means the backup window end time is 10:00.
378
+ The end hour of the day should be greater than the start
379
+
380
+ - - -
381
+ """
382
+ pulumi.set(__self__, "start_hour_of_day", start_hour_of_day)
383
+ if end_hour_of_day is not None:
384
+ pulumi.set(__self__, "end_hour_of_day", end_hour_of_day)
385
+
386
+ @property
387
+ @pulumi.getter(name="startHourOfDay")
388
+ def start_hour_of_day(self) -> int:
389
+ """
390
+ The hour of the day (0-23) when the window starts, for example, if the value of the start hour of the day is 6, that means the backup window starts at 6:00.
391
+ """
392
+ return pulumi.get(self, "start_hour_of_day")
393
+
394
+ @property
395
+ @pulumi.getter(name="endHourOfDay")
396
+ def end_hour_of_day(self) -> Optional[int]:
397
+ """
398
+ The hour of the day (1-24) when the window ends, for example, if the value of end hour of the day is 10, that means the backup window end time is 10:00.
399
+ The end hour of the day should be greater than the start
400
+
401
+ - - -
402
+ """
403
+ return pulumi.get(self, "end_hour_of_day")
404
+
405
+
406
+ @pulumi.output_type
407
+ class BackupPlanBackupRuleStandardScheduleWeekDayOfMonth(dict):
408
+ @staticmethod
409
+ def __key_warning(key: str):
410
+ suggest = None
411
+ if key == "dayOfWeek":
412
+ suggest = "day_of_week"
413
+ elif key == "weekOfMonth":
414
+ suggest = "week_of_month"
415
+
416
+ if suggest:
417
+ pulumi.log.warn(f"Key '{key}' not found in BackupPlanBackupRuleStandardScheduleWeekDayOfMonth. Access the value via the '{suggest}' property getter instead.")
418
+
419
+ def __getitem__(self, key: str) -> Any:
420
+ BackupPlanBackupRuleStandardScheduleWeekDayOfMonth.__key_warning(key)
421
+ return super().__getitem__(key)
422
+
423
+ def get(self, key: str, default = None) -> Any:
424
+ BackupPlanBackupRuleStandardScheduleWeekDayOfMonth.__key_warning(key)
425
+ return super().get(key, default)
426
+
427
+ def __init__(__self__, *,
428
+ day_of_week: str,
429
+ week_of_month: str):
430
+ """
431
+ :param str day_of_week: Specifies the day of the week.
432
+ Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
433
+ :param str week_of_month: WeekOfMonth enumerates possible weeks in the month, e.g. the first, third, or last week of the month.
434
+ Possible values are: `WEEK_OF_MONTH_UNSPECIFIED`, `FIRST`, `SECOND`, `THIRD`, `FOURTH`, `LAST`.
435
+ """
436
+ pulumi.set(__self__, "day_of_week", day_of_week)
437
+ pulumi.set(__self__, "week_of_month", week_of_month)
438
+
439
+ @property
440
+ @pulumi.getter(name="dayOfWeek")
441
+ def day_of_week(self) -> str:
442
+ """
443
+ Specifies the day of the week.
444
+ Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
445
+ """
446
+ return pulumi.get(self, "day_of_week")
447
+
448
+ @property
449
+ @pulumi.getter(name="weekOfMonth")
450
+ def week_of_month(self) -> str:
451
+ """
452
+ WeekOfMonth enumerates possible weeks in the month, e.g. the first, third, or last week of the month.
453
+ Possible values are: `WEEK_OF_MONTH_UNSPECIFIED`, `FIRST`, `SECOND`, `THIRD`, `FOURTH`, `LAST`.
454
+ """
455
+ return pulumi.get(self, "week_of_month")
456
+
457
+
24
458
  @pulumi.output_type
25
459
  class ManagementServerManagementUri(dict):
26
460
  @staticmethod
@@ -124,6 +558,274 @@ class ManagementServerNetwork(dict):
124
558
  return pulumi.get(self, "peering_mode")
125
559
 
126
560
 
561
+ @pulumi.output_type
562
+ class GetBackupPlanAssociationRulesConfigInfoResult(dict):
563
+ def __init__(__self__, *,
564
+ last_backup_errors: Sequence['outputs.GetBackupPlanAssociationRulesConfigInfoLastBackupErrorResult'],
565
+ last_backup_state: str,
566
+ rule_id: str):
567
+ """
568
+ :param Sequence['GetBackupPlanAssociationRulesConfigInfoLastBackupErrorArgs'] last_backup_errors: google.rpc.Status object to store the last backup error
569
+ :param str last_backup_state: State of last backup taken.
570
+ :param str rule_id: Backup Rule id fetched from backup plan.
571
+ """
572
+ pulumi.set(__self__, "last_backup_errors", last_backup_errors)
573
+ pulumi.set(__self__, "last_backup_state", last_backup_state)
574
+ pulumi.set(__self__, "rule_id", rule_id)
575
+
576
+ @property
577
+ @pulumi.getter(name="lastBackupErrors")
578
+ def last_backup_errors(self) -> Sequence['outputs.GetBackupPlanAssociationRulesConfigInfoLastBackupErrorResult']:
579
+ """
580
+ google.rpc.Status object to store the last backup error
581
+ """
582
+ return pulumi.get(self, "last_backup_errors")
583
+
584
+ @property
585
+ @pulumi.getter(name="lastBackupState")
586
+ def last_backup_state(self) -> str:
587
+ """
588
+ State of last backup taken.
589
+ """
590
+ return pulumi.get(self, "last_backup_state")
591
+
592
+ @property
593
+ @pulumi.getter(name="ruleId")
594
+ def rule_id(self) -> str:
595
+ """
596
+ Backup Rule id fetched from backup plan.
597
+ """
598
+ return pulumi.get(self, "rule_id")
599
+
600
+
601
+ @pulumi.output_type
602
+ class GetBackupPlanAssociationRulesConfigInfoLastBackupErrorResult(dict):
603
+ def __init__(__self__, *,
604
+ code: float,
605
+ message: str):
606
+ """
607
+ :param float code: The status code, which should be an enum value of [google.rpc.Code]
608
+ :param str message: A developer-facing error message, which should be in English.
609
+ """
610
+ pulumi.set(__self__, "code", code)
611
+ pulumi.set(__self__, "message", message)
612
+
613
+ @property
614
+ @pulumi.getter
615
+ def code(self) -> float:
616
+ """
617
+ The status code, which should be an enum value of [google.rpc.Code]
618
+ """
619
+ return pulumi.get(self, "code")
620
+
621
+ @property
622
+ @pulumi.getter
623
+ def message(self) -> str:
624
+ """
625
+ A developer-facing error message, which should be in English.
626
+ """
627
+ return pulumi.get(self, "message")
628
+
629
+
630
+ @pulumi.output_type
631
+ class GetBackupPlanBackupRuleResult(dict):
632
+ def __init__(__self__, *,
633
+ backup_retention_days: int,
634
+ rule_id: str,
635
+ standard_schedules: Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleResult']):
636
+ """
637
+ :param int backup_retention_days: Configures the duration for which backup data will be kept. The value should be greater than or equal to minimum enforced retention of the backup vault.
638
+ :param str rule_id: The unique ID of this 'BackupRule'. The 'rule_id' is unique per 'BackupPlan'.
639
+ :param Sequence['GetBackupPlanBackupRuleStandardScheduleArgs'] standard_schedules: StandardSchedule defines a schedule that runs within the confines of a defined window of days.
640
+ """
641
+ pulumi.set(__self__, "backup_retention_days", backup_retention_days)
642
+ pulumi.set(__self__, "rule_id", rule_id)
643
+ pulumi.set(__self__, "standard_schedules", standard_schedules)
644
+
645
+ @property
646
+ @pulumi.getter(name="backupRetentionDays")
647
+ def backup_retention_days(self) -> int:
648
+ """
649
+ Configures the duration for which backup data will be kept. The value should be greater than or equal to minimum enforced retention of the backup vault.
650
+ """
651
+ return pulumi.get(self, "backup_retention_days")
652
+
653
+ @property
654
+ @pulumi.getter(name="ruleId")
655
+ def rule_id(self) -> str:
656
+ """
657
+ The unique ID of this 'BackupRule'. The 'rule_id' is unique per 'BackupPlan'.
658
+ """
659
+ return pulumi.get(self, "rule_id")
660
+
661
+ @property
662
+ @pulumi.getter(name="standardSchedules")
663
+ def standard_schedules(self) -> Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleResult']:
664
+ """
665
+ StandardSchedule defines a schedule that runs within the confines of a defined window of days.
666
+ """
667
+ return pulumi.get(self, "standard_schedules")
668
+
669
+
670
+ @pulumi.output_type
671
+ class GetBackupPlanBackupRuleStandardScheduleResult(dict):
672
+ def __init__(__self__, *,
673
+ backup_windows: Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleBackupWindowResult'],
674
+ days_of_months: Sequence[int],
675
+ days_of_weeks: Sequence[str],
676
+ hourly_frequency: int,
677
+ months: Sequence[str],
678
+ recurrence_type: str,
679
+ time_zone: str,
680
+ week_day_of_months: Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleWeekDayOfMonthResult']):
681
+ """
682
+ :param Sequence['GetBackupPlanBackupRuleStandardScheduleBackupWindowArgs'] backup_windows: A BackupWindow defines the window of the day during which backup jobs will run. Jobs are queued at the beginning of the window and will be marked as
683
+ 'NOT_RUN' if they do not start by the end of the window.
684
+ :param Sequence[int] days_of_months: Specifies days of months like 1, 5, or 14 on which jobs will run.
685
+ :param Sequence[str] days_of_weeks: Specifies days of week like MONDAY or TUESDAY, on which jobs will run. This is required for 'recurrence_type', 'WEEKLY' and is not applicable otherwise. Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"]
686
+ :param int hourly_frequency: Specifies frequency for hourly backups. An hourly frequency of 2 means jobs will run every 2 hours from start time till end time defined.
687
+ This is required for 'recurrence_type', 'HOURLY' and is not applicable otherwise.
688
+ :param Sequence[str] months: Specifies values of months Possible values: ["MONTH_UNSPECIFIED", "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"]
689
+ :param str recurrence_type: RecurrenceType enumerates the applicable periodicity for the schedule. Possible values: ["HOURLY", "DAILY", "WEEKLY", "MONTHLY", "YEARLY"]
690
+ :param str time_zone: The time zone to be used when interpreting the schedule.
691
+ :param Sequence['GetBackupPlanBackupRuleStandardScheduleWeekDayOfMonthArgs'] week_day_of_months: Specifies a week day of the month like FIRST SUNDAY or LAST MONDAY, on which jobs will run.
692
+ """
693
+ pulumi.set(__self__, "backup_windows", backup_windows)
694
+ pulumi.set(__self__, "days_of_months", days_of_months)
695
+ pulumi.set(__self__, "days_of_weeks", days_of_weeks)
696
+ pulumi.set(__self__, "hourly_frequency", hourly_frequency)
697
+ pulumi.set(__self__, "months", months)
698
+ pulumi.set(__self__, "recurrence_type", recurrence_type)
699
+ pulumi.set(__self__, "time_zone", time_zone)
700
+ pulumi.set(__self__, "week_day_of_months", week_day_of_months)
701
+
702
+ @property
703
+ @pulumi.getter(name="backupWindows")
704
+ def backup_windows(self) -> Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleBackupWindowResult']:
705
+ """
706
+ A BackupWindow defines the window of the day during which backup jobs will run. Jobs are queued at the beginning of the window and will be marked as
707
+ 'NOT_RUN' if they do not start by the end of the window.
708
+ """
709
+ return pulumi.get(self, "backup_windows")
710
+
711
+ @property
712
+ @pulumi.getter(name="daysOfMonths")
713
+ def days_of_months(self) -> Sequence[int]:
714
+ """
715
+ Specifies days of months like 1, 5, or 14 on which jobs will run.
716
+ """
717
+ return pulumi.get(self, "days_of_months")
718
+
719
+ @property
720
+ @pulumi.getter(name="daysOfWeeks")
721
+ def days_of_weeks(self) -> Sequence[str]:
722
+ """
723
+ Specifies days of week like MONDAY or TUESDAY, on which jobs will run. This is required for 'recurrence_type', 'WEEKLY' and is not applicable otherwise. Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"]
724
+ """
725
+ return pulumi.get(self, "days_of_weeks")
726
+
727
+ @property
728
+ @pulumi.getter(name="hourlyFrequency")
729
+ def hourly_frequency(self) -> int:
730
+ """
731
+ Specifies frequency for hourly backups. An hourly frequency of 2 means jobs will run every 2 hours from start time till end time defined.
732
+ This is required for 'recurrence_type', 'HOURLY' and is not applicable otherwise.
733
+ """
734
+ return pulumi.get(self, "hourly_frequency")
735
+
736
+ @property
737
+ @pulumi.getter
738
+ def months(self) -> Sequence[str]:
739
+ """
740
+ Specifies values of months Possible values: ["MONTH_UNSPECIFIED", "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"]
741
+ """
742
+ return pulumi.get(self, "months")
743
+
744
+ @property
745
+ @pulumi.getter(name="recurrenceType")
746
+ def recurrence_type(self) -> str:
747
+ """
748
+ RecurrenceType enumerates the applicable periodicity for the schedule. Possible values: ["HOURLY", "DAILY", "WEEKLY", "MONTHLY", "YEARLY"]
749
+ """
750
+ return pulumi.get(self, "recurrence_type")
751
+
752
+ @property
753
+ @pulumi.getter(name="timeZone")
754
+ def time_zone(self) -> str:
755
+ """
756
+ The time zone to be used when interpreting the schedule.
757
+ """
758
+ return pulumi.get(self, "time_zone")
759
+
760
+ @property
761
+ @pulumi.getter(name="weekDayOfMonths")
762
+ def week_day_of_months(self) -> Sequence['outputs.GetBackupPlanBackupRuleStandardScheduleWeekDayOfMonthResult']:
763
+ """
764
+ Specifies a week day of the month like FIRST SUNDAY or LAST MONDAY, on which jobs will run.
765
+ """
766
+ return pulumi.get(self, "week_day_of_months")
767
+
768
+
769
+ @pulumi.output_type
770
+ class GetBackupPlanBackupRuleStandardScheduleBackupWindowResult(dict):
771
+ def __init__(__self__, *,
772
+ end_hour_of_day: int,
773
+ start_hour_of_day: int):
774
+ """
775
+ :param int end_hour_of_day: The hour of the day (1-24) when the window ends, for example, if the value of end hour of the day is 10, that means the backup window end time is 10:00.
776
+ The end hour of the day should be greater than the start
777
+ :param int start_hour_of_day: The hour of the day (0-23) when the window starts, for example, if the value of the start hour of the day is 6, that means the backup window starts at 6:00.
778
+ """
779
+ pulumi.set(__self__, "end_hour_of_day", end_hour_of_day)
780
+ pulumi.set(__self__, "start_hour_of_day", start_hour_of_day)
781
+
782
+ @property
783
+ @pulumi.getter(name="endHourOfDay")
784
+ def end_hour_of_day(self) -> int:
785
+ """
786
+ The hour of the day (1-24) when the window ends, for example, if the value of end hour of the day is 10, that means the backup window end time is 10:00.
787
+ The end hour of the day should be greater than the start
788
+ """
789
+ return pulumi.get(self, "end_hour_of_day")
790
+
791
+ @property
792
+ @pulumi.getter(name="startHourOfDay")
793
+ def start_hour_of_day(self) -> int:
794
+ """
795
+ The hour of the day (0-23) when the window starts, for example, if the value of the start hour of the day is 6, that means the backup window starts at 6:00.
796
+ """
797
+ return pulumi.get(self, "start_hour_of_day")
798
+
799
+
800
+ @pulumi.output_type
801
+ class GetBackupPlanBackupRuleStandardScheduleWeekDayOfMonthResult(dict):
802
+ def __init__(__self__, *,
803
+ day_of_week: str,
804
+ week_of_month: str):
805
+ """
806
+ :param str day_of_week: Specifies the day of the week. Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]
807
+ :param str week_of_month: WeekOfMonth enumerates possible weeks in the month, e.g. the first, third, or last week of the month. Possible values: ["WEEK_OF_MONTH_UNSPECIFIED", "FIRST", "SECOND", "THIRD", "FOURTH", "LAST"]
808
+ """
809
+ pulumi.set(__self__, "day_of_week", day_of_week)
810
+ pulumi.set(__self__, "week_of_month", week_of_month)
811
+
812
+ @property
813
+ @pulumi.getter(name="dayOfWeek")
814
+ def day_of_week(self) -> str:
815
+ """
816
+ Specifies the day of the week. Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]
817
+ """
818
+ return pulumi.get(self, "day_of_week")
819
+
820
+ @property
821
+ @pulumi.getter(name="weekOfMonth")
822
+ def week_of_month(self) -> str:
823
+ """
824
+ WeekOfMonth enumerates possible weeks in the month, e.g. the first, third, or last week of the month. Possible values: ["WEEK_OF_MONTH_UNSPECIFIED", "FIRST", "SECOND", "THIRD", "FOURTH", "LAST"]
825
+ """
826
+ return pulumi.get(self, "week_of_month")
827
+
828
+
127
829
  @pulumi.output_type
128
830
  class GetManagementServerManagementUriResult(dict):
129
831
  def __init__(__self__, *,