pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.0a1743489606__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 +27 -0
- pulumi_gcp/bigquery/_inputs.py +158 -0
- pulumi_gcp/bigquery/outputs.py +115 -0
- pulumi_gcp/bigquery/reservation.py +189 -1
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
- pulumi_gcp/chronicle/data_access_label.py +16 -0
- pulumi_gcp/cloudrunv2/service.py +14 -14
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +616 -18
- pulumi_gcp/compute/get_images.py +172 -0
- pulumi_gcp/compute/get_resource_policy.py +15 -4
- pulumi_gcp/compute/image.py +54 -0
- pulumi_gcp/compute/interconnect.py +14 -7
- pulumi_gcp/compute/outputs.py +710 -18
- pulumi_gcp/compute/resource_policy.py +169 -3
- pulumi_gcp/compute/router_route_policy.py +16 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/container/_inputs.py +262 -1
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +297 -2
- pulumi_gcp/dataproc/_inputs.py +23 -0
- pulumi_gcp/dataproc/outputs.py +27 -0
- pulumi_gcp/lustre/__init__.py +8 -0
- pulumi_gcp/lustre/instance.py +983 -0
- pulumi_gcp/memorystore/_inputs.py +419 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +137 -7
- pulumi_gcp/memorystore/outputs.py +544 -0
- pulumi_gcp/networkmanagement/_inputs.py +422 -91
- pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
- pulumi_gcp/networkmanagement/outputs.py +280 -61
- pulumi_gcp/networksecurity/_inputs.py +392 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +240 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
- pulumi_gcp/osconfig/__init__.py +1 -0
- pulumi_gcp/osconfig/_inputs.py +5413 -0
- pulumi_gcp/osconfig/outputs.py +3962 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +726 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
- pulumi_gcp/storage/outputs.py +716 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/RECORD +55 -48
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,10 @@ __all__ = [
|
|
21
21
|
'InstanceEndpoint',
|
22
22
|
'InstanceEndpointConnection',
|
23
23
|
'InstanceEndpointConnectionPscAutoConnection',
|
24
|
+
'InstanceMaintenancePolicy',
|
25
|
+
'InstanceMaintenancePolicyWeeklyMaintenanceWindow',
|
26
|
+
'InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime',
|
27
|
+
'InstanceMaintenanceSchedule',
|
24
28
|
'InstanceNodeConfig',
|
25
29
|
'InstancePersistenceConfig',
|
26
30
|
'InstancePersistenceConfigAofConfig',
|
@@ -34,6 +38,10 @@ __all__ = [
|
|
34
38
|
'GetInstanceEndpointResult',
|
35
39
|
'GetInstanceEndpointConnectionResult',
|
36
40
|
'GetInstanceEndpointConnectionPscAutoConnectionResult',
|
41
|
+
'GetInstanceMaintenancePolicyResult',
|
42
|
+
'GetInstanceMaintenancePolicyWeeklyMaintenanceWindowResult',
|
43
|
+
'GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeResult',
|
44
|
+
'GetInstanceMaintenanceScheduleResult',
|
37
45
|
'GetInstanceNodeConfigResult',
|
38
46
|
'GetInstancePersistenceConfigResult',
|
39
47
|
'GetInstancePersistenceConfigAofConfigResult',
|
@@ -368,6 +376,317 @@ class InstanceEndpointConnectionPscAutoConnection(dict):
|
|
368
376
|
return pulumi.get(self, "service_attachment")
|
369
377
|
|
370
378
|
|
379
|
+
@pulumi.output_type
|
380
|
+
class InstanceMaintenancePolicy(dict):
|
381
|
+
@staticmethod
|
382
|
+
def __key_warning(key: str):
|
383
|
+
suggest = None
|
384
|
+
if key == "createTime":
|
385
|
+
suggest = "create_time"
|
386
|
+
elif key == "updateTime":
|
387
|
+
suggest = "update_time"
|
388
|
+
elif key == "weeklyMaintenanceWindows":
|
389
|
+
suggest = "weekly_maintenance_windows"
|
390
|
+
|
391
|
+
if suggest:
|
392
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceMaintenancePolicy. Access the value via the '{suggest}' property getter instead.")
|
393
|
+
|
394
|
+
def __getitem__(self, key: str) -> Any:
|
395
|
+
InstanceMaintenancePolicy.__key_warning(key)
|
396
|
+
return super().__getitem__(key)
|
397
|
+
|
398
|
+
def get(self, key: str, default = None) -> Any:
|
399
|
+
InstanceMaintenancePolicy.__key_warning(key)
|
400
|
+
return super().get(key, default)
|
401
|
+
|
402
|
+
def __init__(__self__, *,
|
403
|
+
create_time: Optional[str] = None,
|
404
|
+
update_time: Optional[str] = None,
|
405
|
+
weekly_maintenance_windows: Optional[Sequence['outputs.InstanceMaintenancePolicyWeeklyMaintenanceWindow']] = None):
|
406
|
+
"""
|
407
|
+
:param str create_time: (Output)
|
408
|
+
The time when the policy was created.
|
409
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
410
|
+
resolution and up to nine fractional digits.
|
411
|
+
:param str update_time: (Output)
|
412
|
+
The time when the policy was last updated.
|
413
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
414
|
+
resolution and up to nine fractional digits.
|
415
|
+
:param Sequence['InstanceMaintenancePolicyWeeklyMaintenanceWindowArgs'] weekly_maintenance_windows: Optional. Maintenance window that is applied to resources covered by this policy.
|
416
|
+
Minimum 1. For the current version, the maximum number
|
417
|
+
of weekly_window is expected to be one.
|
418
|
+
Structure is documented below.
|
419
|
+
"""
|
420
|
+
if create_time is not None:
|
421
|
+
pulumi.set(__self__, "create_time", create_time)
|
422
|
+
if update_time is not None:
|
423
|
+
pulumi.set(__self__, "update_time", update_time)
|
424
|
+
if weekly_maintenance_windows is not None:
|
425
|
+
pulumi.set(__self__, "weekly_maintenance_windows", weekly_maintenance_windows)
|
426
|
+
|
427
|
+
@property
|
428
|
+
@pulumi.getter(name="createTime")
|
429
|
+
def create_time(self) -> Optional[str]:
|
430
|
+
"""
|
431
|
+
(Output)
|
432
|
+
The time when the policy was created.
|
433
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
434
|
+
resolution and up to nine fractional digits.
|
435
|
+
"""
|
436
|
+
return pulumi.get(self, "create_time")
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="updateTime")
|
440
|
+
def update_time(self) -> Optional[str]:
|
441
|
+
"""
|
442
|
+
(Output)
|
443
|
+
The time when the policy was last updated.
|
444
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
445
|
+
resolution and up to nine fractional digits.
|
446
|
+
"""
|
447
|
+
return pulumi.get(self, "update_time")
|
448
|
+
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="weeklyMaintenanceWindows")
|
451
|
+
def weekly_maintenance_windows(self) -> Optional[Sequence['outputs.InstanceMaintenancePolicyWeeklyMaintenanceWindow']]:
|
452
|
+
"""
|
453
|
+
Optional. Maintenance window that is applied to resources covered by this policy.
|
454
|
+
Minimum 1. For the current version, the maximum number
|
455
|
+
of weekly_window is expected to be one.
|
456
|
+
Structure is documented below.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "weekly_maintenance_windows")
|
459
|
+
|
460
|
+
|
461
|
+
@pulumi.output_type
|
462
|
+
class InstanceMaintenancePolicyWeeklyMaintenanceWindow(dict):
|
463
|
+
@staticmethod
|
464
|
+
def __key_warning(key: str):
|
465
|
+
suggest = None
|
466
|
+
if key == "startTime":
|
467
|
+
suggest = "start_time"
|
468
|
+
|
469
|
+
if suggest:
|
470
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceMaintenancePolicyWeeklyMaintenanceWindow. Access the value via the '{suggest}' property getter instead.")
|
471
|
+
|
472
|
+
def __getitem__(self, key: str) -> Any:
|
473
|
+
InstanceMaintenancePolicyWeeklyMaintenanceWindow.__key_warning(key)
|
474
|
+
return super().__getitem__(key)
|
475
|
+
|
476
|
+
def get(self, key: str, default = None) -> Any:
|
477
|
+
InstanceMaintenancePolicyWeeklyMaintenanceWindow.__key_warning(key)
|
478
|
+
return super().get(key, default)
|
479
|
+
|
480
|
+
def __init__(__self__, *,
|
481
|
+
day: str,
|
482
|
+
start_time: 'outputs.InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime',
|
483
|
+
duration: Optional[str] = None):
|
484
|
+
"""
|
485
|
+
:param str day: The day of week that maintenance updates occur.
|
486
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
487
|
+
- MONDAY: Monday
|
488
|
+
- TUESDAY: Tuesday
|
489
|
+
- WEDNESDAY: Wednesday
|
490
|
+
- THURSDAY: Thursday
|
491
|
+
- FRIDAY: Friday
|
492
|
+
- SATURDAY: Saturday
|
493
|
+
- SUNDAY: Sunday
|
494
|
+
Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
495
|
+
:param 'InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs' start_time: Start time of the window in UTC time.
|
496
|
+
Structure is documented below.
|
497
|
+
:param str duration: (Output)
|
498
|
+
Duration of the maintenance window.
|
499
|
+
The current window is fixed at 1 hour.
|
500
|
+
A duration in seconds with up to nine fractional digits,
|
501
|
+
terminated by 's'. Example: "3.5s".
|
502
|
+
"""
|
503
|
+
pulumi.set(__self__, "day", day)
|
504
|
+
pulumi.set(__self__, "start_time", start_time)
|
505
|
+
if duration is not None:
|
506
|
+
pulumi.set(__self__, "duration", duration)
|
507
|
+
|
508
|
+
@property
|
509
|
+
@pulumi.getter
|
510
|
+
def day(self) -> str:
|
511
|
+
"""
|
512
|
+
The day of week that maintenance updates occur.
|
513
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
514
|
+
- MONDAY: Monday
|
515
|
+
- TUESDAY: Tuesday
|
516
|
+
- WEDNESDAY: Wednesday
|
517
|
+
- THURSDAY: Thursday
|
518
|
+
- FRIDAY: Friday
|
519
|
+
- SATURDAY: Saturday
|
520
|
+
- SUNDAY: Sunday
|
521
|
+
Possible values are: `DAY_OF_WEEK_UNSPECIFIED`, `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
522
|
+
"""
|
523
|
+
return pulumi.get(self, "day")
|
524
|
+
|
525
|
+
@property
|
526
|
+
@pulumi.getter(name="startTime")
|
527
|
+
def start_time(self) -> 'outputs.InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime':
|
528
|
+
"""
|
529
|
+
Start time of the window in UTC time.
|
530
|
+
Structure is documented below.
|
531
|
+
"""
|
532
|
+
return pulumi.get(self, "start_time")
|
533
|
+
|
534
|
+
@property
|
535
|
+
@pulumi.getter
|
536
|
+
def duration(self) -> Optional[str]:
|
537
|
+
"""
|
538
|
+
(Output)
|
539
|
+
Duration of the maintenance window.
|
540
|
+
The current window is fixed at 1 hour.
|
541
|
+
A duration in seconds with up to nine fractional digits,
|
542
|
+
terminated by 's'. Example: "3.5s".
|
543
|
+
"""
|
544
|
+
return pulumi.get(self, "duration")
|
545
|
+
|
546
|
+
|
547
|
+
@pulumi.output_type
|
548
|
+
class InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime(dict):
|
549
|
+
def __init__(__self__, *,
|
550
|
+
hours: Optional[int] = None,
|
551
|
+
minutes: Optional[int] = None,
|
552
|
+
nanos: Optional[int] = None,
|
553
|
+
seconds: Optional[int] = None):
|
554
|
+
"""
|
555
|
+
:param int hours: Hours of day in 24 hour format. Should be from 0 to 23.
|
556
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
557
|
+
:param int minutes: Minutes of hour of day. Must be from 0 to 59.
|
558
|
+
:param int nanos: Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
559
|
+
:param int seconds: Seconds of minutes of the time. Must normally be from 0 to 59.
|
560
|
+
An API may allow the value 60 if it allows leap-seconds.
|
561
|
+
"""
|
562
|
+
if hours is not None:
|
563
|
+
pulumi.set(__self__, "hours", hours)
|
564
|
+
if minutes is not None:
|
565
|
+
pulumi.set(__self__, "minutes", minutes)
|
566
|
+
if nanos is not None:
|
567
|
+
pulumi.set(__self__, "nanos", nanos)
|
568
|
+
if seconds is not None:
|
569
|
+
pulumi.set(__self__, "seconds", seconds)
|
570
|
+
|
571
|
+
@property
|
572
|
+
@pulumi.getter
|
573
|
+
def hours(self) -> Optional[int]:
|
574
|
+
"""
|
575
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
576
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
577
|
+
"""
|
578
|
+
return pulumi.get(self, "hours")
|
579
|
+
|
580
|
+
@property
|
581
|
+
@pulumi.getter
|
582
|
+
def minutes(self) -> Optional[int]:
|
583
|
+
"""
|
584
|
+
Minutes of hour of day. Must be from 0 to 59.
|
585
|
+
"""
|
586
|
+
return pulumi.get(self, "minutes")
|
587
|
+
|
588
|
+
@property
|
589
|
+
@pulumi.getter
|
590
|
+
def nanos(self) -> Optional[int]:
|
591
|
+
"""
|
592
|
+
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
593
|
+
"""
|
594
|
+
return pulumi.get(self, "nanos")
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter
|
598
|
+
def seconds(self) -> Optional[int]:
|
599
|
+
"""
|
600
|
+
Seconds of minutes of the time. Must normally be from 0 to 59.
|
601
|
+
An API may allow the value 60 if it allows leap-seconds.
|
602
|
+
"""
|
603
|
+
return pulumi.get(self, "seconds")
|
604
|
+
|
605
|
+
|
606
|
+
@pulumi.output_type
|
607
|
+
class InstanceMaintenanceSchedule(dict):
|
608
|
+
@staticmethod
|
609
|
+
def __key_warning(key: str):
|
610
|
+
suggest = None
|
611
|
+
if key == "endTime":
|
612
|
+
suggest = "end_time"
|
613
|
+
elif key == "scheduleDeadlineTime":
|
614
|
+
suggest = "schedule_deadline_time"
|
615
|
+
elif key == "startTime":
|
616
|
+
suggest = "start_time"
|
617
|
+
|
618
|
+
if suggest:
|
619
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceMaintenanceSchedule. Access the value via the '{suggest}' property getter instead.")
|
620
|
+
|
621
|
+
def __getitem__(self, key: str) -> Any:
|
622
|
+
InstanceMaintenanceSchedule.__key_warning(key)
|
623
|
+
return super().__getitem__(key)
|
624
|
+
|
625
|
+
def get(self, key: str, default = None) -> Any:
|
626
|
+
InstanceMaintenanceSchedule.__key_warning(key)
|
627
|
+
return super().get(key, default)
|
628
|
+
|
629
|
+
def __init__(__self__, *,
|
630
|
+
end_time: Optional[str] = None,
|
631
|
+
schedule_deadline_time: Optional[str] = None,
|
632
|
+
start_time: Optional[str] = None):
|
633
|
+
"""
|
634
|
+
:param str end_time: (Output)
|
635
|
+
The end time of any upcoming scheduled maintenance for this cluster.
|
636
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
637
|
+
resolution and up to nine fractional digits.
|
638
|
+
:param str schedule_deadline_time: (Output)
|
639
|
+
The deadline that the maintenance schedule start time
|
640
|
+
can not go beyond, including reschedule.
|
641
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
642
|
+
resolution and up to nine fractional digits.
|
643
|
+
:param str start_time: (Output)
|
644
|
+
The start time of any upcoming scheduled maintenance for this cluster.
|
645
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
646
|
+
resolution and up to nine fractional digits.
|
647
|
+
"""
|
648
|
+
if end_time is not None:
|
649
|
+
pulumi.set(__self__, "end_time", end_time)
|
650
|
+
if schedule_deadline_time is not None:
|
651
|
+
pulumi.set(__self__, "schedule_deadline_time", schedule_deadline_time)
|
652
|
+
if start_time is not None:
|
653
|
+
pulumi.set(__self__, "start_time", start_time)
|
654
|
+
|
655
|
+
@property
|
656
|
+
@pulumi.getter(name="endTime")
|
657
|
+
def end_time(self) -> Optional[str]:
|
658
|
+
"""
|
659
|
+
(Output)
|
660
|
+
The end time of any upcoming scheduled maintenance for this cluster.
|
661
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
662
|
+
resolution and up to nine fractional digits.
|
663
|
+
"""
|
664
|
+
return pulumi.get(self, "end_time")
|
665
|
+
|
666
|
+
@property
|
667
|
+
@pulumi.getter(name="scheduleDeadlineTime")
|
668
|
+
def schedule_deadline_time(self) -> Optional[str]:
|
669
|
+
"""
|
670
|
+
(Output)
|
671
|
+
The deadline that the maintenance schedule start time
|
672
|
+
can not go beyond, including reschedule.
|
673
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
674
|
+
resolution and up to nine fractional digits.
|
675
|
+
"""
|
676
|
+
return pulumi.get(self, "schedule_deadline_time")
|
677
|
+
|
678
|
+
@property
|
679
|
+
@pulumi.getter(name="startTime")
|
680
|
+
def start_time(self) -> Optional[str]:
|
681
|
+
"""
|
682
|
+
(Output)
|
683
|
+
The start time of any upcoming scheduled maintenance for this cluster.
|
684
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
685
|
+
resolution and up to nine fractional digits.
|
686
|
+
"""
|
687
|
+
return pulumi.get(self, "start_time")
|
688
|
+
|
689
|
+
|
371
690
|
@pulumi.output_type
|
372
691
|
class InstanceNodeConfig(dict):
|
373
692
|
@staticmethod
|
@@ -1131,6 +1450,231 @@ class GetInstanceEndpointConnectionPscAutoConnectionResult(dict):
|
|
1131
1450
|
return pulumi.get(self, "service_attachment")
|
1132
1451
|
|
1133
1452
|
|
1453
|
+
@pulumi.output_type
|
1454
|
+
class GetInstanceMaintenancePolicyResult(dict):
|
1455
|
+
def __init__(__self__, *,
|
1456
|
+
create_time: str,
|
1457
|
+
update_time: str,
|
1458
|
+
weekly_maintenance_windows: Sequence['outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowResult']):
|
1459
|
+
"""
|
1460
|
+
:param str create_time: The time when the policy was created.
|
1461
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1462
|
+
resolution and up to nine fractional digits.
|
1463
|
+
:param str update_time: The time when the policy was last updated.
|
1464
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1465
|
+
resolution and up to nine fractional digits.
|
1466
|
+
:param Sequence['GetInstanceMaintenancePolicyWeeklyMaintenanceWindowArgs'] weekly_maintenance_windows: Optional. Maintenance window that is applied to resources covered by this policy.
|
1467
|
+
Minimum 1. For the current version, the maximum number
|
1468
|
+
of weekly_window is expected to be one.
|
1469
|
+
"""
|
1470
|
+
pulumi.set(__self__, "create_time", create_time)
|
1471
|
+
pulumi.set(__self__, "update_time", update_time)
|
1472
|
+
pulumi.set(__self__, "weekly_maintenance_windows", weekly_maintenance_windows)
|
1473
|
+
|
1474
|
+
@property
|
1475
|
+
@pulumi.getter(name="createTime")
|
1476
|
+
def create_time(self) -> str:
|
1477
|
+
"""
|
1478
|
+
The time when the policy was created.
|
1479
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1480
|
+
resolution and up to nine fractional digits.
|
1481
|
+
"""
|
1482
|
+
return pulumi.get(self, "create_time")
|
1483
|
+
|
1484
|
+
@property
|
1485
|
+
@pulumi.getter(name="updateTime")
|
1486
|
+
def update_time(self) -> str:
|
1487
|
+
"""
|
1488
|
+
The time when the policy was last updated.
|
1489
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1490
|
+
resolution and up to nine fractional digits.
|
1491
|
+
"""
|
1492
|
+
return pulumi.get(self, "update_time")
|
1493
|
+
|
1494
|
+
@property
|
1495
|
+
@pulumi.getter(name="weeklyMaintenanceWindows")
|
1496
|
+
def weekly_maintenance_windows(self) -> Sequence['outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowResult']:
|
1497
|
+
"""
|
1498
|
+
Optional. Maintenance window that is applied to resources covered by this policy.
|
1499
|
+
Minimum 1. For the current version, the maximum number
|
1500
|
+
of weekly_window is expected to be one.
|
1501
|
+
"""
|
1502
|
+
return pulumi.get(self, "weekly_maintenance_windows")
|
1503
|
+
|
1504
|
+
|
1505
|
+
@pulumi.output_type
|
1506
|
+
class GetInstanceMaintenancePolicyWeeklyMaintenanceWindowResult(dict):
|
1507
|
+
def __init__(__self__, *,
|
1508
|
+
day: str,
|
1509
|
+
duration: str,
|
1510
|
+
start_times: Sequence['outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeResult']):
|
1511
|
+
"""
|
1512
|
+
:param str day: The day of week that maintenance updates occur.
|
1513
|
+
|
1514
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
1515
|
+
- MONDAY: Monday
|
1516
|
+
- TUESDAY: Tuesday
|
1517
|
+
- WEDNESDAY: Wednesday
|
1518
|
+
- THURSDAY: Thursday
|
1519
|
+
- FRIDAY: Friday
|
1520
|
+
- SATURDAY: Saturday
|
1521
|
+
- SUNDAY: Sunday Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]
|
1522
|
+
:param str duration: Duration of the maintenance window.
|
1523
|
+
The current window is fixed at 1 hour.
|
1524
|
+
A duration in seconds with up to nine fractional digits,
|
1525
|
+
terminated by 's'. Example: "3.5s".
|
1526
|
+
:param Sequence['GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgs'] start_times: Start time of the window in UTC time.
|
1527
|
+
"""
|
1528
|
+
pulumi.set(__self__, "day", day)
|
1529
|
+
pulumi.set(__self__, "duration", duration)
|
1530
|
+
pulumi.set(__self__, "start_times", start_times)
|
1531
|
+
|
1532
|
+
@property
|
1533
|
+
@pulumi.getter
|
1534
|
+
def day(self) -> str:
|
1535
|
+
"""
|
1536
|
+
The day of week that maintenance updates occur.
|
1537
|
+
|
1538
|
+
- DAY_OF_WEEK_UNSPECIFIED: The day of the week is unspecified.
|
1539
|
+
- MONDAY: Monday
|
1540
|
+
- TUESDAY: Tuesday
|
1541
|
+
- WEDNESDAY: Wednesday
|
1542
|
+
- THURSDAY: Thursday
|
1543
|
+
- FRIDAY: Friday
|
1544
|
+
- SATURDAY: Saturday
|
1545
|
+
- SUNDAY: Sunday Possible values: ["DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]
|
1546
|
+
"""
|
1547
|
+
return pulumi.get(self, "day")
|
1548
|
+
|
1549
|
+
@property
|
1550
|
+
@pulumi.getter
|
1551
|
+
def duration(self) -> str:
|
1552
|
+
"""
|
1553
|
+
Duration of the maintenance window.
|
1554
|
+
The current window is fixed at 1 hour.
|
1555
|
+
A duration in seconds with up to nine fractional digits,
|
1556
|
+
terminated by 's'. Example: "3.5s".
|
1557
|
+
"""
|
1558
|
+
return pulumi.get(self, "duration")
|
1559
|
+
|
1560
|
+
@property
|
1561
|
+
@pulumi.getter(name="startTimes")
|
1562
|
+
def start_times(self) -> Sequence['outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeResult']:
|
1563
|
+
"""
|
1564
|
+
Start time of the window in UTC time.
|
1565
|
+
"""
|
1566
|
+
return pulumi.get(self, "start_times")
|
1567
|
+
|
1568
|
+
|
1569
|
+
@pulumi.output_type
|
1570
|
+
class GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeResult(dict):
|
1571
|
+
def __init__(__self__, *,
|
1572
|
+
hours: int,
|
1573
|
+
minutes: int,
|
1574
|
+
nanos: int,
|
1575
|
+
seconds: int):
|
1576
|
+
"""
|
1577
|
+
:param int hours: Hours of day in 24 hour format. Should be from 0 to 23.
|
1578
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
1579
|
+
:param int minutes: Minutes of hour of day. Must be from 0 to 59.
|
1580
|
+
:param int nanos: Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
1581
|
+
:param int seconds: Seconds of minutes of the time. Must normally be from 0 to 59.
|
1582
|
+
An API may allow the value 60 if it allows leap-seconds.
|
1583
|
+
"""
|
1584
|
+
pulumi.set(__self__, "hours", hours)
|
1585
|
+
pulumi.set(__self__, "minutes", minutes)
|
1586
|
+
pulumi.set(__self__, "nanos", nanos)
|
1587
|
+
pulumi.set(__self__, "seconds", seconds)
|
1588
|
+
|
1589
|
+
@property
|
1590
|
+
@pulumi.getter
|
1591
|
+
def hours(self) -> int:
|
1592
|
+
"""
|
1593
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
1594
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
1595
|
+
"""
|
1596
|
+
return pulumi.get(self, "hours")
|
1597
|
+
|
1598
|
+
@property
|
1599
|
+
@pulumi.getter
|
1600
|
+
def minutes(self) -> int:
|
1601
|
+
"""
|
1602
|
+
Minutes of hour of day. Must be from 0 to 59.
|
1603
|
+
"""
|
1604
|
+
return pulumi.get(self, "minutes")
|
1605
|
+
|
1606
|
+
@property
|
1607
|
+
@pulumi.getter
|
1608
|
+
def nanos(self) -> int:
|
1609
|
+
"""
|
1610
|
+
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
1611
|
+
"""
|
1612
|
+
return pulumi.get(self, "nanos")
|
1613
|
+
|
1614
|
+
@property
|
1615
|
+
@pulumi.getter
|
1616
|
+
def seconds(self) -> int:
|
1617
|
+
"""
|
1618
|
+
Seconds of minutes of the time. Must normally be from 0 to 59.
|
1619
|
+
An API may allow the value 60 if it allows leap-seconds.
|
1620
|
+
"""
|
1621
|
+
return pulumi.get(self, "seconds")
|
1622
|
+
|
1623
|
+
|
1624
|
+
@pulumi.output_type
|
1625
|
+
class GetInstanceMaintenanceScheduleResult(dict):
|
1626
|
+
def __init__(__self__, *,
|
1627
|
+
end_time: str,
|
1628
|
+
schedule_deadline_time: str,
|
1629
|
+
start_time: str):
|
1630
|
+
"""
|
1631
|
+
:param str end_time: The end time of any upcoming scheduled maintenance for this cluster.
|
1632
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1633
|
+
resolution and up to nine fractional digits.
|
1634
|
+
:param str schedule_deadline_time: The deadline that the maintenance schedule start time
|
1635
|
+
can not go beyond, including reschedule.
|
1636
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1637
|
+
resolution and up to nine fractional digits.
|
1638
|
+
:param str start_time: The start time of any upcoming scheduled maintenance for this cluster.
|
1639
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1640
|
+
resolution and up to nine fractional digits.
|
1641
|
+
"""
|
1642
|
+
pulumi.set(__self__, "end_time", end_time)
|
1643
|
+
pulumi.set(__self__, "schedule_deadline_time", schedule_deadline_time)
|
1644
|
+
pulumi.set(__self__, "start_time", start_time)
|
1645
|
+
|
1646
|
+
@property
|
1647
|
+
@pulumi.getter(name="endTime")
|
1648
|
+
def end_time(self) -> str:
|
1649
|
+
"""
|
1650
|
+
The end time of any upcoming scheduled maintenance for this cluster.
|
1651
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1652
|
+
resolution and up to nine fractional digits.
|
1653
|
+
"""
|
1654
|
+
return pulumi.get(self, "end_time")
|
1655
|
+
|
1656
|
+
@property
|
1657
|
+
@pulumi.getter(name="scheduleDeadlineTime")
|
1658
|
+
def schedule_deadline_time(self) -> str:
|
1659
|
+
"""
|
1660
|
+
The deadline that the maintenance schedule start time
|
1661
|
+
can not go beyond, including reschedule.
|
1662
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1663
|
+
resolution and up to nine fractional digits.
|
1664
|
+
"""
|
1665
|
+
return pulumi.get(self, "schedule_deadline_time")
|
1666
|
+
|
1667
|
+
@property
|
1668
|
+
@pulumi.getter(name="startTime")
|
1669
|
+
def start_time(self) -> str:
|
1670
|
+
"""
|
1671
|
+
The start time of any upcoming scheduled maintenance for this cluster.
|
1672
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
|
1673
|
+
resolution and up to nine fractional digits.
|
1674
|
+
"""
|
1675
|
+
return pulumi.get(self, "start_time")
|
1676
|
+
|
1677
|
+
|
1134
1678
|
@pulumi.output_type
|
1135
1679
|
class GetInstanceNodeConfigResult(dict):
|
1136
1680
|
def __init__(__self__, *,
|