pulumi-gcp 8.26.0a1744267117__py3-none-any.whl → 8.27.0a1744386150__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 (57) hide show
  1. pulumi_gcp/__init__.py +48 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +117 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +81 -26
  4. pulumi_gcp/accesscontextmanager/outputs.py +95 -0
  5. pulumi_gcp/apigee/__init__.py +1 -0
  6. pulumi_gcp/apigee/control_plane_access.py +419 -0
  7. pulumi_gcp/clouddeploy/__init__.py +1 -0
  8. pulumi_gcp/clouddeploy/_inputs.py +2876 -1314
  9. pulumi_gcp/clouddeploy/automation.py +64 -2
  10. pulumi_gcp/clouddeploy/deploy_policy.py +1179 -0
  11. pulumi_gcp/clouddeploy/outputs.py +1130 -5
  12. pulumi_gcp/cloudrunv2/service.py +2 -2
  13. pulumi_gcp/compute/_inputs.py +20 -0
  14. pulumi_gcp/compute/outputs.py +25 -0
  15. pulumi_gcp/compute/resource_policy.py +30 -0
  16. pulumi_gcp/datastream/_inputs.py +506 -0
  17. pulumi_gcp/datastream/outputs.py +376 -0
  18. pulumi_gcp/datastream/stream.py +0 -2
  19. pulumi_gcp/firebase/hosting_version.py +34 -14
  20. pulumi_gcp/folder/__init__.py +1 -0
  21. pulumi_gcp/folder/service_identity.py +340 -0
  22. pulumi_gcp/gemini/__init__.py +2 -0
  23. pulumi_gcp/gemini/_inputs.py +176 -0
  24. pulumi_gcp/gemini/code_tools_setting.py +601 -0
  25. pulumi_gcp/gemini/code_tools_setting_binding.py +753 -0
  26. pulumi_gcp/gemini/outputs.py +124 -0
  27. pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
  28. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +28 -0
  29. pulumi_gcp/memorystore/_inputs.py +136 -0
  30. pulumi_gcp/memorystore/get_instance.py +12 -1
  31. pulumi_gcp/memorystore/instance.py +54 -0
  32. pulumi_gcp/memorystore/outputs.py +190 -0
  33. pulumi_gcp/netapp/_inputs.py +89 -3
  34. pulumi_gcp/netapp/outputs.py +75 -2
  35. pulumi_gcp/netapp/volume_replication.py +12 -2
  36. pulumi_gcp/networkconnectivity/service_connection_policy.py +4 -2
  37. pulumi_gcp/osconfig/__init__.py +1 -0
  38. pulumi_gcp/osconfig/_inputs.py +5439 -0
  39. pulumi_gcp/osconfig/outputs.py +3978 -0
  40. pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +1047 -0
  41. pulumi_gcp/parametermanager/get_regional_parameter.py +12 -1
  42. pulumi_gcp/parametermanager/get_regional_parameter_version.py +15 -1
  43. pulumi_gcp/parametermanager/outputs.py +11 -0
  44. pulumi_gcp/parametermanager/regional_parameter.py +78 -0
  45. pulumi_gcp/parametermanager/regional_parameter_version.py +66 -0
  46. pulumi_gcp/pulumi-plugin.json +1 -1
  47. pulumi_gcp/spanner/database.py +0 -34
  48. pulumi_gcp/storage/bucket_object.py +28 -0
  49. pulumi_gcp/storage/get_bucket_object.py +12 -1
  50. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  51. pulumi_gcp/workbench/_inputs.py +60 -0
  52. pulumi_gcp/workbench/instance.py +48 -0
  53. pulumi_gcp/workbench/outputs.py +55 -0
  54. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0a1744386150.dist-info}/METADATA +1 -1
  55. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0a1744386150.dist-info}/RECORD +57 -51
  56. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0a1744386150.dist-info}/WHEEL +0 -0
  57. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0a1744386150.dist-info}/top_level.txt +0 -0
@@ -659,10 +659,41 @@ class Automation(pulumi.CustomResource):
659
659
  {
660
660
  "advance_rollout_rule": {
661
661
  "id": "advance-rollout",
662
- "source_phases": ["deploy"],
662
+ "source_phases": ["canary"],
663
663
  "wait": "200s",
664
664
  },
665
665
  },
666
+ {
667
+ "repair_rollout_rule": {
668
+ "id": "repair-rollout",
669
+ "phases": ["stable"],
670
+ "jobs": ["deploy"],
671
+ "repair_phases": [
672
+ {
673
+ "retry": {
674
+ "attempts": "1",
675
+ "wait": "200s",
676
+ "backoff_mode": "BACKOFF_MODE_LINEAR",
677
+ },
678
+ },
679
+ {
680
+ "rollback": {
681
+ "destination_phase": "stable",
682
+ "disable_rollback_if_rollout_pending": True,
683
+ },
684
+ },
685
+ ],
686
+ },
687
+ },
688
+ {
689
+ "timed_promote_release_rule": {
690
+ "id": "timed-promote-release",
691
+ "destination_target_id": "@next",
692
+ "schedule": "0 9 * * 1",
693
+ "time_zone": "America/New_York",
694
+ "destination_phase": "stable",
695
+ },
696
+ },
666
697
  ])
667
698
  ```
668
699
 
@@ -819,10 +850,41 @@ class Automation(pulumi.CustomResource):
819
850
  {
820
851
  "advance_rollout_rule": {
821
852
  "id": "advance-rollout",
822
- "source_phases": ["deploy"],
853
+ "source_phases": ["canary"],
823
854
  "wait": "200s",
824
855
  },
825
856
  },
857
+ {
858
+ "repair_rollout_rule": {
859
+ "id": "repair-rollout",
860
+ "phases": ["stable"],
861
+ "jobs": ["deploy"],
862
+ "repair_phases": [
863
+ {
864
+ "retry": {
865
+ "attempts": "1",
866
+ "wait": "200s",
867
+ "backoff_mode": "BACKOFF_MODE_LINEAR",
868
+ },
869
+ },
870
+ {
871
+ "rollback": {
872
+ "destination_phase": "stable",
873
+ "disable_rollback_if_rollout_pending": True,
874
+ },
875
+ },
876
+ ],
877
+ },
878
+ },
879
+ {
880
+ "timed_promote_release_rule": {
881
+ "id": "timed-promote-release",
882
+ "destination_target_id": "@next",
883
+ "schedule": "0 9 * * 1",
884
+ "time_zone": "America/New_York",
885
+ "destination_phase": "stable",
886
+ },
887
+ },
826
888
  ])
827
889
  ```
828
890