pulumi-gcp 8.0.0a1726253601__py3-none-any.whl → 8.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/_inputs.py
CHANGED
@@ -19,6 +19,14 @@ __all__ = [
|
|
19
19
|
'ClusterDiscoveryEndpointArgsDict',
|
20
20
|
'ClusterDiscoveryEndpointPscConfigArgs',
|
21
21
|
'ClusterDiscoveryEndpointPscConfigArgsDict',
|
22
|
+
'ClusterMaintenancePolicyArgs',
|
23
|
+
'ClusterMaintenancePolicyArgsDict',
|
24
|
+
'ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs',
|
25
|
+
'ClusterMaintenancePolicyWeeklyMaintenanceWindowArgsDict',
|
26
|
+
'ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs',
|
27
|
+
'ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgsDict',
|
28
|
+
'ClusterMaintenanceScheduleArgs',
|
29
|
+
'ClusterMaintenanceScheduleArgsDict',
|
22
30
|
'ClusterPscConfigArgs',
|
23
31
|
'ClusterPscConfigArgsDict',
|
24
32
|
'ClusterPscConnectionArgs',
|
@@ -157,6 +165,417 @@ class ClusterDiscoveryEndpointPscConfigArgs:
|
|
157
165
|
pulumi.set(self, "network", value)
|
158
166
|
|
159
167
|
|
168
|
+
if not MYPY:
|
169
|
+
class ClusterMaintenancePolicyArgsDict(TypedDict):
|
170
|
+
create_time: NotRequired[pulumi.Input[str]]
|
171
|
+
"""
|
172
|
+
(Output)
|
173
|
+
Output only. The time when the policy was created.
|
174
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
175
|
+
resolution and up to nine fractional digits.
|
176
|
+
"""
|
177
|
+
update_time: NotRequired[pulumi.Input[str]]
|
178
|
+
"""
|
179
|
+
(Output)
|
180
|
+
Output only. The time when the policy was last updated.
|
181
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
182
|
+
resolution and up to nine fractional digits.
|
183
|
+
"""
|
184
|
+
weekly_maintenance_windows: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowArgsDict']]]]
|
185
|
+
"""
|
186
|
+
Optional. Maintenance window that is applied to resources covered by this policy.
|
187
|
+
Minimum 1. For the current version, the maximum number
|
188
|
+
of weekly_window is expected to be one.
|
189
|
+
Structure is documented below.
|
190
|
+
"""
|
191
|
+
elif False:
|
192
|
+
ClusterMaintenancePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
193
|
+
|
194
|
+
@pulumi.input_type
|
195
|
+
class ClusterMaintenancePolicyArgs:
|
196
|
+
def __init__(__self__, *,
|
197
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
198
|
+
update_time: Optional[pulumi.Input[str]] = None,
|
199
|
+
weekly_maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs']]]] = None):
|
200
|
+
"""
|
201
|
+
:param pulumi.Input[str] create_time: (Output)
|
202
|
+
Output only. The time when the policy was created.
|
203
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
204
|
+
resolution and up to nine fractional digits.
|
205
|
+
:param pulumi.Input[str] update_time: (Output)
|
206
|
+
Output only. The time when the policy was last updated.
|
207
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
208
|
+
resolution and up to nine fractional digits.
|
209
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs']]] weekly_maintenance_windows: Optional. Maintenance window that is applied to resources covered by this policy.
|
210
|
+
Minimum 1. For the current version, the maximum number
|
211
|
+
of weekly_window is expected to be one.
|
212
|
+
Structure is documented below.
|
213
|
+
"""
|
214
|
+
if create_time is not None:
|
215
|
+
pulumi.set(__self__, "create_time", create_time)
|
216
|
+
if update_time is not None:
|
217
|
+
pulumi.set(__self__, "update_time", update_time)
|
218
|
+
if weekly_maintenance_windows is not None:
|
219
|
+
pulumi.set(__self__, "weekly_maintenance_windows", weekly_maintenance_windows)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="createTime")
|
223
|
+
def create_time(self) -> Optional[pulumi.Input[str]]:
|
224
|
+
"""
|
225
|
+
(Output)
|
226
|
+
Output only. The time when the policy was created.
|
227
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
228
|
+
resolution and up to nine fractional digits.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "create_time")
|
231
|
+
|
232
|
+
@create_time.setter
|
233
|
+
def create_time(self, value: Optional[pulumi.Input[str]]):
|
234
|
+
pulumi.set(self, "create_time", value)
|
235
|
+
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="updateTime")
|
238
|
+
def update_time(self) -> Optional[pulumi.Input[str]]:
|
239
|
+
"""
|
240
|
+
(Output)
|
241
|
+
Output only. The time when the policy was last updated.
|
242
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
243
|
+
resolution and up to nine fractional digits.
|
244
|
+
"""
|
245
|
+
return pulumi.get(self, "update_time")
|
246
|
+
|
247
|
+
@update_time.setter
|
248
|
+
def update_time(self, value: Optional[pulumi.Input[str]]):
|
249
|
+
pulumi.set(self, "update_time", value)
|
250
|
+
|
251
|
+
@property
|
252
|
+
@pulumi.getter(name="weeklyMaintenanceWindows")
|
253
|
+
def weekly_maintenance_windows(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs']]]]:
|
254
|
+
"""
|
255
|
+
Optional. Maintenance window that is applied to resources covered by this policy.
|
256
|
+
Minimum 1. For the current version, the maximum number
|
257
|
+
of weekly_window is expected to be one.
|
258
|
+
Structure is documented below.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "weekly_maintenance_windows")
|
261
|
+
|
262
|
+
@weekly_maintenance_windows.setter
|
263
|
+
def weekly_maintenance_windows(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs']]]]):
|
264
|
+
pulumi.set(self, "weekly_maintenance_windows", value)
|
265
|
+
|
266
|
+
|
267
|
+
if not MYPY:
|
268
|
+
class ClusterMaintenancePolicyWeeklyMaintenanceWindowArgsDict(TypedDict):
|
269
|
+
day: pulumi.Input[str]
|
270
|
+
"""
|
271
|
+
Required. The day of week that maintenance updates occur.
|
272
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
273
|
+
- MONDAY: Monday
|
274
|
+
- TUESDAY: Tuesday
|
275
|
+
- WEDNESDAY: Wednesday
|
276
|
+
- THURSDAY: Thursday
|
277
|
+
- FRIDAY: Friday
|
278
|
+
- SATURDAY: Saturday
|
279
|
+
- SUNDAY: Sunday
|
280
|
+
Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
281
|
+
"""
|
282
|
+
start_time: pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgsDict']
|
283
|
+
"""
|
284
|
+
Required. Start time of the window in UTC time.
|
285
|
+
Structure is documented below.
|
286
|
+
"""
|
287
|
+
duration: NotRequired[pulumi.Input[str]]
|
288
|
+
"""
|
289
|
+
(Output)
|
290
|
+
Output only. Duration of the maintenance window.
|
291
|
+
The current window is fixed at 1 hour.
|
292
|
+
A duration in seconds with up to nine fractional digits,
|
293
|
+
terminated by 's'. Example: "3.5s".
|
294
|
+
"""
|
295
|
+
elif False:
|
296
|
+
ClusterMaintenancePolicyWeeklyMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
|
297
|
+
|
298
|
+
@pulumi.input_type
|
299
|
+
class ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs:
|
300
|
+
def __init__(__self__, *,
|
301
|
+
day: pulumi.Input[str],
|
302
|
+
start_time: pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs'],
|
303
|
+
duration: Optional[pulumi.Input[str]] = None):
|
304
|
+
"""
|
305
|
+
:param pulumi.Input[str] day: Required. The day of week that maintenance updates occur.
|
306
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
307
|
+
- MONDAY: Monday
|
308
|
+
- TUESDAY: Tuesday
|
309
|
+
- WEDNESDAY: Wednesday
|
310
|
+
- THURSDAY: Thursday
|
311
|
+
- FRIDAY: Friday
|
312
|
+
- SATURDAY: Saturday
|
313
|
+
- SUNDAY: Sunday
|
314
|
+
Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
315
|
+
:param pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs'] start_time: Required. Start time of the window in UTC time.
|
316
|
+
Structure is documented below.
|
317
|
+
:param pulumi.Input[str] duration: (Output)
|
318
|
+
Output only. Duration of the maintenance window.
|
319
|
+
The current window is fixed at 1 hour.
|
320
|
+
A duration in seconds with up to nine fractional digits,
|
321
|
+
terminated by 's'. Example: "3.5s".
|
322
|
+
"""
|
323
|
+
pulumi.set(__self__, "day", day)
|
324
|
+
pulumi.set(__self__, "start_time", start_time)
|
325
|
+
if duration is not None:
|
326
|
+
pulumi.set(__self__, "duration", duration)
|
327
|
+
|
328
|
+
@property
|
329
|
+
@pulumi.getter
|
330
|
+
def day(self) -> pulumi.Input[str]:
|
331
|
+
"""
|
332
|
+
Required. The day of week that maintenance updates occur.
|
333
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
334
|
+
- MONDAY: Monday
|
335
|
+
- TUESDAY: Tuesday
|
336
|
+
- WEDNESDAY: Wednesday
|
337
|
+
- THURSDAY: Thursday
|
338
|
+
- FRIDAY: Friday
|
339
|
+
- SATURDAY: Saturday
|
340
|
+
- SUNDAY: Sunday
|
341
|
+
Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
342
|
+
"""
|
343
|
+
return pulumi.get(self, "day")
|
344
|
+
|
345
|
+
@day.setter
|
346
|
+
def day(self, value: pulumi.Input[str]):
|
347
|
+
pulumi.set(self, "day", value)
|
348
|
+
|
349
|
+
@property
|
350
|
+
@pulumi.getter(name="startTime")
|
351
|
+
def start_time(self) -> pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs']:
|
352
|
+
"""
|
353
|
+
Required. Start time of the window in UTC time.
|
354
|
+
Structure is documented below.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "start_time")
|
357
|
+
|
358
|
+
@start_time.setter
|
359
|
+
def start_time(self, value: pulumi.Input['ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs']):
|
360
|
+
pulumi.set(self, "start_time", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter
|
364
|
+
def duration(self) -> Optional[pulumi.Input[str]]:
|
365
|
+
"""
|
366
|
+
(Output)
|
367
|
+
Output only. Duration of the maintenance window.
|
368
|
+
The current window is fixed at 1 hour.
|
369
|
+
A duration in seconds with up to nine fractional digits,
|
370
|
+
terminated by 's'. Example: "3.5s".
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "duration")
|
373
|
+
|
374
|
+
@duration.setter
|
375
|
+
def duration(self, value: Optional[pulumi.Input[str]]):
|
376
|
+
pulumi.set(self, "duration", value)
|
377
|
+
|
378
|
+
|
379
|
+
if not MYPY:
|
380
|
+
class ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgsDict(TypedDict):
|
381
|
+
hours: NotRequired[pulumi.Input[int]]
|
382
|
+
"""
|
383
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
384
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
385
|
+
"""
|
386
|
+
minutes: NotRequired[pulumi.Input[int]]
|
387
|
+
"""
|
388
|
+
Minutes of hour of day. Must be from 0 to 59.
|
389
|
+
"""
|
390
|
+
nanos: NotRequired[pulumi.Input[int]]
|
391
|
+
"""
|
392
|
+
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
393
|
+
"""
|
394
|
+
seconds: NotRequired[pulumi.Input[int]]
|
395
|
+
"""
|
396
|
+
Seconds of minutes of the time. Must normally be from 0 to 59.
|
397
|
+
An API may allow the value 60 if it allows leap-seconds.
|
398
|
+
"""
|
399
|
+
elif False:
|
400
|
+
ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgsDict: TypeAlias = Mapping[str, Any]
|
401
|
+
|
402
|
+
@pulumi.input_type
|
403
|
+
class ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs:
|
404
|
+
def __init__(__self__, *,
|
405
|
+
hours: Optional[pulumi.Input[int]] = None,
|
406
|
+
minutes: Optional[pulumi.Input[int]] = None,
|
407
|
+
nanos: Optional[pulumi.Input[int]] = None,
|
408
|
+
seconds: Optional[pulumi.Input[int]] = None):
|
409
|
+
"""
|
410
|
+
:param pulumi.Input[int] hours: Hours of day in 24 hour format. Should be from 0 to 23.
|
411
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
412
|
+
:param pulumi.Input[int] minutes: Minutes of hour of day. Must be from 0 to 59.
|
413
|
+
:param pulumi.Input[int] nanos: Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
414
|
+
:param pulumi.Input[int] seconds: Seconds of minutes of the time. Must normally be from 0 to 59.
|
415
|
+
An API may allow the value 60 if it allows leap-seconds.
|
416
|
+
"""
|
417
|
+
if hours is not None:
|
418
|
+
pulumi.set(__self__, "hours", hours)
|
419
|
+
if minutes is not None:
|
420
|
+
pulumi.set(__self__, "minutes", minutes)
|
421
|
+
if nanos is not None:
|
422
|
+
pulumi.set(__self__, "nanos", nanos)
|
423
|
+
if seconds is not None:
|
424
|
+
pulumi.set(__self__, "seconds", seconds)
|
425
|
+
|
426
|
+
@property
|
427
|
+
@pulumi.getter
|
428
|
+
def hours(self) -> Optional[pulumi.Input[int]]:
|
429
|
+
"""
|
430
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
431
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
432
|
+
"""
|
433
|
+
return pulumi.get(self, "hours")
|
434
|
+
|
435
|
+
@hours.setter
|
436
|
+
def hours(self, value: Optional[pulumi.Input[int]]):
|
437
|
+
pulumi.set(self, "hours", value)
|
438
|
+
|
439
|
+
@property
|
440
|
+
@pulumi.getter
|
441
|
+
def minutes(self) -> Optional[pulumi.Input[int]]:
|
442
|
+
"""
|
443
|
+
Minutes of hour of day. Must be from 0 to 59.
|
444
|
+
"""
|
445
|
+
return pulumi.get(self, "minutes")
|
446
|
+
|
447
|
+
@minutes.setter
|
448
|
+
def minutes(self, value: Optional[pulumi.Input[int]]):
|
449
|
+
pulumi.set(self, "minutes", value)
|
450
|
+
|
451
|
+
@property
|
452
|
+
@pulumi.getter
|
453
|
+
def nanos(self) -> Optional[pulumi.Input[int]]:
|
454
|
+
"""
|
455
|
+
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
456
|
+
"""
|
457
|
+
return pulumi.get(self, "nanos")
|
458
|
+
|
459
|
+
@nanos.setter
|
460
|
+
def nanos(self, value: Optional[pulumi.Input[int]]):
|
461
|
+
pulumi.set(self, "nanos", value)
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter
|
465
|
+
def seconds(self) -> Optional[pulumi.Input[int]]:
|
466
|
+
"""
|
467
|
+
Seconds of minutes of the time. Must normally be from 0 to 59.
|
468
|
+
An API may allow the value 60 if it allows leap-seconds.
|
469
|
+
"""
|
470
|
+
return pulumi.get(self, "seconds")
|
471
|
+
|
472
|
+
@seconds.setter
|
473
|
+
def seconds(self, value: Optional[pulumi.Input[int]]):
|
474
|
+
pulumi.set(self, "seconds", value)
|
475
|
+
|
476
|
+
|
477
|
+
if not MYPY:
|
478
|
+
class ClusterMaintenanceScheduleArgsDict(TypedDict):
|
479
|
+
end_time: NotRequired[pulumi.Input[str]]
|
480
|
+
"""
|
481
|
+
(Output)
|
482
|
+
Output only. The end time of any upcoming scheduled maintenance for this cluster.
|
483
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
484
|
+
resolution and up to nine fractional digits.
|
485
|
+
"""
|
486
|
+
schedule_deadline_time: NotRequired[pulumi.Input[str]]
|
487
|
+
"""
|
488
|
+
(Output)
|
489
|
+
Output only. The deadline that the maintenance schedule start time
|
490
|
+
can not go beyond, including reschedule.
|
491
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
492
|
+
resolution and up to nine fractional digits.
|
493
|
+
"""
|
494
|
+
start_time: NotRequired[pulumi.Input[str]]
|
495
|
+
"""
|
496
|
+
(Output)
|
497
|
+
Output only. The start time of any upcoming scheduled maintenance for this cluster.
|
498
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
499
|
+
resolution and up to nine fractional digits.
|
500
|
+
"""
|
501
|
+
elif False:
|
502
|
+
ClusterMaintenanceScheduleArgsDict: TypeAlias = Mapping[str, Any]
|
503
|
+
|
504
|
+
@pulumi.input_type
|
505
|
+
class ClusterMaintenanceScheduleArgs:
|
506
|
+
def __init__(__self__, *,
|
507
|
+
end_time: Optional[pulumi.Input[str]] = None,
|
508
|
+
schedule_deadline_time: Optional[pulumi.Input[str]] = None,
|
509
|
+
start_time: Optional[pulumi.Input[str]] = None):
|
510
|
+
"""
|
511
|
+
:param pulumi.Input[str] end_time: (Output)
|
512
|
+
Output only. The end time of any upcoming scheduled maintenance for this cluster.
|
513
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
514
|
+
resolution and up to nine fractional digits.
|
515
|
+
:param pulumi.Input[str] schedule_deadline_time: (Output)
|
516
|
+
Output only. The deadline that the maintenance schedule start time
|
517
|
+
can not go beyond, including reschedule.
|
518
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
519
|
+
resolution and up to nine fractional digits.
|
520
|
+
:param pulumi.Input[str] start_time: (Output)
|
521
|
+
Output only. The start time of any upcoming scheduled maintenance for this cluster.
|
522
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
523
|
+
resolution and up to nine fractional digits.
|
524
|
+
"""
|
525
|
+
if end_time is not None:
|
526
|
+
pulumi.set(__self__, "end_time", end_time)
|
527
|
+
if schedule_deadline_time is not None:
|
528
|
+
pulumi.set(__self__, "schedule_deadline_time", schedule_deadline_time)
|
529
|
+
if start_time is not None:
|
530
|
+
pulumi.set(__self__, "start_time", start_time)
|
531
|
+
|
532
|
+
@property
|
533
|
+
@pulumi.getter(name="endTime")
|
534
|
+
def end_time(self) -> Optional[pulumi.Input[str]]:
|
535
|
+
"""
|
536
|
+
(Output)
|
537
|
+
Output only. The end time of any upcoming scheduled maintenance for this cluster.
|
538
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
539
|
+
resolution and up to nine fractional digits.
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "end_time")
|
542
|
+
|
543
|
+
@end_time.setter
|
544
|
+
def end_time(self, value: Optional[pulumi.Input[str]]):
|
545
|
+
pulumi.set(self, "end_time", value)
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter(name="scheduleDeadlineTime")
|
549
|
+
def schedule_deadline_time(self) -> Optional[pulumi.Input[str]]:
|
550
|
+
"""
|
551
|
+
(Output)
|
552
|
+
Output only. The deadline that the maintenance schedule start time
|
553
|
+
can not go beyond, including reschedule.
|
554
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
555
|
+
resolution and up to nine fractional digits.
|
556
|
+
"""
|
557
|
+
return pulumi.get(self, "schedule_deadline_time")
|
558
|
+
|
559
|
+
@schedule_deadline_time.setter
|
560
|
+
def schedule_deadline_time(self, value: Optional[pulumi.Input[str]]):
|
561
|
+
pulumi.set(self, "schedule_deadline_time", value)
|
562
|
+
|
563
|
+
@property
|
564
|
+
@pulumi.getter(name="startTime")
|
565
|
+
def start_time(self) -> Optional[pulumi.Input[str]]:
|
566
|
+
"""
|
567
|
+
(Output)
|
568
|
+
Output only. The start time of any upcoming scheduled maintenance for this cluster.
|
569
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
570
|
+
resolution and up to nine fractional digits.
|
571
|
+
"""
|
572
|
+
return pulumi.get(self, "start_time")
|
573
|
+
|
574
|
+
@start_time.setter
|
575
|
+
def start_time(self, value: Optional[pulumi.Input[str]]):
|
576
|
+
pulumi.set(self, "start_time", value)
|
577
|
+
|
578
|
+
|
160
579
|
if not MYPY:
|
161
580
|
class ClusterPscConfigArgsDict(TypedDict):
|
162
581
|
network: pulumi.Input[str]
|