pulumi-gcp 8.10.2a1733856242__py3-none-any.whl → 8.11.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.
Files changed (142) hide show
  1. pulumi_gcp/__init__.py +91 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
  3. pulumi_gcp/accesscontextmanager/outputs.py +18 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
  8. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
  9. pulumi_gcp/apigee/app_group.py +7 -7
  10. pulumi_gcp/applicationintegration/client.py +8 -6
  11. pulumi_gcp/artifactregistry/_inputs.py +24 -15
  12. pulumi_gcp/artifactregistry/outputs.py +32 -20
  13. pulumi_gcp/artifactregistry/repository.py +128 -0
  14. pulumi_gcp/assuredworkloads/workload.py +7 -7
  15. pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
  16. pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
  17. pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
  18. pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
  19. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
  20. pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
  21. pulumi_gcp/bigquery/app_profile.py +75 -0
  22. pulumi_gcp/billing/_inputs.py +6 -6
  23. pulumi_gcp/billing/outputs.py +4 -4
  24. pulumi_gcp/certificateauthority/_inputs.py +9 -9
  25. pulumi_gcp/certificateauthority/outputs.py +8 -8
  26. pulumi_gcp/cloudbuild/_inputs.py +53 -0
  27. pulumi_gcp/cloudbuild/outputs.py +50 -0
  28. pulumi_gcp/cloudbuild/worker_pool.py +47 -0
  29. pulumi_gcp/clouddeploy/_inputs.py +254 -0
  30. pulumi_gcp/clouddeploy/outputs.py +211 -0
  31. pulumi_gcp/clouddeploy/target.py +47 -0
  32. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
  33. pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
  34. pulumi_gcp/cloudrunv2/job.py +4 -4
  35. pulumi_gcp/cloudrunv2/service.py +4 -4
  36. pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
  37. pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
  38. pulumi_gcp/composer/user_workloads_config_map.py +14 -0
  39. pulumi_gcp/composer/user_workloads_secret.py +6 -0
  40. pulumi_gcp/compute/_inputs.py +566 -25
  41. pulumi_gcp/compute/disk.py +21 -7
  42. pulumi_gcp/compute/firewall_policy_rule.py +12 -0
  43. pulumi_gcp/compute/get_forwarding_rules.py +2 -2
  44. pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
  45. pulumi_gcp/compute/get_instance_group_manager.py +12 -1
  46. pulumi_gcp/compute/get_network.py +35 -1
  47. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  48. pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
  49. pulumi_gcp/compute/global_forwarding_rule.py +28 -0
  50. pulumi_gcp/compute/instance_group_manager.py +28 -0
  51. pulumi_gcp/compute/network.py +75 -0
  52. pulumi_gcp/compute/outputs.py +655 -26
  53. pulumi_gcp/compute/region_health_check.py +28 -0
  54. pulumi_gcp/compute/region_instance_group_manager.py +28 -0
  55. pulumi_gcp/compute/region_network_endpoint.py +28 -0
  56. pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
  57. pulumi_gcp/compute/subnetwork.py +30 -2
  58. pulumi_gcp/compute/url_map.py +7 -7
  59. pulumi_gcp/config/__init__.pyi +4 -0
  60. pulumi_gcp/config/vars.py +8 -0
  61. pulumi_gcp/container/_inputs.py +201 -3
  62. pulumi_gcp/container/cluster.py +68 -14
  63. pulumi_gcp/container/get_cluster.py +12 -1
  64. pulumi_gcp/container/outputs.py +249 -3
  65. pulumi_gcp/dataproc/_inputs.py +209 -1
  66. pulumi_gcp/dataproc/batch.py +76 -0
  67. pulumi_gcp/dataproc/outputs.py +169 -3
  68. pulumi_gcp/diagflow/_inputs.py +3 -3
  69. pulumi_gcp/diagflow/outputs.py +2 -2
  70. pulumi_gcp/discoveryengine/search_engine.py +7 -7
  71. pulumi_gcp/firebaserules/release.py +76 -0
  72. pulumi_gcp/firestore/field.py +4 -4
  73. pulumi_gcp/gemini/__init__.py +15 -0
  74. pulumi_gcp/gemini/_inputs.py +183 -0
  75. pulumi_gcp/gemini/code_repository_index.py +659 -0
  76. pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
  77. pulumi_gcp/gemini/outputs.py +130 -0
  78. pulumi_gcp/gemini/repository_group.py +586 -0
  79. pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
  80. pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
  81. pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
  82. pulumi_gcp/gkehub/_inputs.py +30 -10
  83. pulumi_gcp/gkehub/membership_binding.py +6 -6
  84. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  85. pulumi_gcp/gkehub/namespace.py +4 -4
  86. pulumi_gcp/gkehub/outputs.py +21 -7
  87. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  88. pulumi_gcp/iam/__init__.py +1 -0
  89. pulumi_gcp/iam/_inputs.py +137 -0
  90. pulumi_gcp/iam/folders_policy_binding.py +16 -0
  91. pulumi_gcp/iam/organizations_policy_binding.py +16 -0
  92. pulumi_gcp/iam/outputs.py +99 -0
  93. pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
  94. pulumi_gcp/iam/projects_policy_binding.py +917 -0
  95. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  96. pulumi_gcp/integrationconnectors/_inputs.py +15 -15
  97. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  98. pulumi_gcp/integrationconnectors/outputs.py +10 -10
  99. pulumi_gcp/monitoring/_inputs.py +13 -6
  100. pulumi_gcp/monitoring/outputs.py +10 -4
  101. pulumi_gcp/netapp/_inputs.py +3 -3
  102. pulumi_gcp/netapp/active_directory.py +7 -7
  103. pulumi_gcp/netapp/outputs.py +2 -2
  104. pulumi_gcp/netapp/volume.py +11 -11
  105. pulumi_gcp/networkconnectivity/spoke.py +10 -10
  106. pulumi_gcp/networksecurity/__init__.py +4 -0
  107. pulumi_gcp/networksecurity/_inputs.py +115 -0
  108. pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
  109. pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
  110. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
  111. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
  112. pulumi_gcp/networksecurity/outputs.py +70 -0
  113. pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
  114. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
  115. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
  116. pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
  117. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
  118. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
  119. pulumi_gcp/oracledatabase/outputs.py +21 -0
  120. pulumi_gcp/orgpolicy/policy.py +2 -2
  121. pulumi_gcp/parallelstore/instance.py +4 -0
  122. pulumi_gcp/provider.py +20 -0
  123. pulumi_gcp/pubsub/subscription.py +6 -6
  124. pulumi_gcp/pulumi-plugin.json +1 -1
  125. pulumi_gcp/redis/_inputs.py +435 -3
  126. pulumi_gcp/redis/cluster.py +287 -16
  127. pulumi_gcp/redis/outputs.py +304 -2
  128. pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
  129. pulumi_gcp/serviceaccount/get_account_key.py +2 -2
  130. pulumi_gcp/storage/get_bucket.py +2 -2
  131. pulumi_gcp/storage/get_bucket_object_content.py +2 -2
  132. pulumi_gcp/tpu/__init__.py +1 -0
  133. pulumi_gcp/tpu/_inputs.py +188 -6
  134. pulumi_gcp/tpu/outputs.py +164 -4
  135. pulumi_gcp/tpu/v2_queued_resource.py +434 -0
  136. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  137. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  138. pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
  139. {pulumi_gcp-8.10.2a1733856242.dist-info → pulumi_gcp-8.11.0.dist-info}/METADATA +3 -3
  140. {pulumi_gcp-8.10.2a1733856242.dist-info → pulumi_gcp-8.11.0.dist-info}/RECORD +142 -125
  141. {pulumi_gcp-8.10.2a1733856242.dist-info → pulumi_gcp-8.11.0.dist-info}/WHEEL +0 -0
  142. {pulumi_gcp-8.10.2a1733856242.dist-info → pulumi_gcp-8.11.0.dist-info}/top_level.txt +0 -0
@@ -880,7 +880,10 @@ if not MYPY:
880
880
  class RepositoryRemoteRepositoryConfigCommonRepositoryArgsDict(TypedDict):
881
881
  uri: pulumi.Input[str]
882
882
  """
883
- Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
883
+ One of:
884
+ a. Artifact Registry Repository resource, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
885
+ b. URI to the registry, e.g. `"https://registry-1.docker.io"`
886
+ c. URI to Artifact Registry Repository, e.g. `"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"`
884
887
  """
885
888
  elif False:
886
889
  RepositoryRemoteRepositoryConfigCommonRepositoryArgsDict: TypeAlias = Mapping[str, Any]
@@ -890,7 +893,10 @@ class RepositoryRemoteRepositoryConfigCommonRepositoryArgs:
890
893
  def __init__(__self__, *,
891
894
  uri: pulumi.Input[str]):
892
895
  """
893
- :param pulumi.Input[str] uri: Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
896
+ :param pulumi.Input[str] uri: One of:
897
+ a. Artifact Registry Repository resource, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
898
+ b. URI to the registry, e.g. `"https://registry-1.docker.io"`
899
+ c. URI to Artifact Registry Repository, e.g. `"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"`
894
900
  """
895
901
  pulumi.set(__self__, "uri", uri)
896
902
 
@@ -898,7 +904,10 @@ class RepositoryRemoteRepositoryConfigCommonRepositoryArgs:
898
904
  @pulumi.getter
899
905
  def uri(self) -> pulumi.Input[str]:
900
906
  """
901
- Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
907
+ One of:
908
+ a. Artifact Registry Repository resource, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
909
+ b. URI to the registry, e.g. `"https://registry-1.docker.io"`
910
+ c. URI to Artifact Registry Repository, e.g. `"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"`
902
911
  """
903
912
  return pulumi.get(self, "uri")
904
913
 
@@ -911,7 +920,7 @@ if not MYPY:
911
920
  class RepositoryRemoteRepositoryConfigDockerRepositoryArgsDict(TypedDict):
912
921
  custom_repository: NotRequired[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgsDict']]
913
922
  """
914
- Settings for a remote repository with a custom uri.
923
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
915
924
  Structure is documented below.
916
925
  """
917
926
  public_repository: NotRequired[pulumi.Input[str]]
@@ -929,7 +938,7 @@ class RepositoryRemoteRepositoryConfigDockerRepositoryArgs:
929
938
  custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs']] = None,
930
939
  public_repository: Optional[pulumi.Input[str]] = None):
931
940
  """
932
- :param pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
941
+ :param pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
933
942
  Structure is documented below.
934
943
  :param pulumi.Input[str] public_repository: Address of the remote repository.
935
944
  Default value is `DOCKER_HUB`.
@@ -944,7 +953,7 @@ class RepositoryRemoteRepositoryConfigDockerRepositoryArgs:
944
953
  @pulumi.getter(name="customRepository")
945
954
  def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs']]:
946
955
  """
947
- Settings for a remote repository with a custom uri.
956
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
948
957
  Structure is documented below.
949
958
  """
950
959
  return pulumi.get(self, "custom_repository")
@@ -1004,7 +1013,7 @@ if not MYPY:
1004
1013
  class RepositoryRemoteRepositoryConfigMavenRepositoryArgsDict(TypedDict):
1005
1014
  custom_repository: NotRequired[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgsDict']]
1006
1015
  """
1007
- Settings for a remote repository with a custom uri.
1016
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1008
1017
  Structure is documented below.
1009
1018
  """
1010
1019
  public_repository: NotRequired[pulumi.Input[str]]
@@ -1022,7 +1031,7 @@ class RepositoryRemoteRepositoryConfigMavenRepositoryArgs:
1022
1031
  custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs']] = None,
1023
1032
  public_repository: Optional[pulumi.Input[str]] = None):
1024
1033
  """
1025
- :param pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
1034
+ :param pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1026
1035
  Structure is documented below.
1027
1036
  :param pulumi.Input[str] public_repository: Address of the remote repository.
1028
1037
  Default value is `MAVEN_CENTRAL`.
@@ -1037,7 +1046,7 @@ class RepositoryRemoteRepositoryConfigMavenRepositoryArgs:
1037
1046
  @pulumi.getter(name="customRepository")
1038
1047
  def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs']]:
1039
1048
  """
1040
- Settings for a remote repository with a custom uri.
1049
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1041
1050
  Structure is documented below.
1042
1051
  """
1043
1052
  return pulumi.get(self, "custom_repository")
@@ -1097,7 +1106,7 @@ if not MYPY:
1097
1106
  class RepositoryRemoteRepositoryConfigNpmRepositoryArgsDict(TypedDict):
1098
1107
  custom_repository: NotRequired[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgsDict']]
1099
1108
  """
1100
- Settings for a remote repository with a custom uri.
1109
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1101
1110
  Structure is documented below.
1102
1111
  """
1103
1112
  public_repository: NotRequired[pulumi.Input[str]]
@@ -1115,7 +1124,7 @@ class RepositoryRemoteRepositoryConfigNpmRepositoryArgs:
1115
1124
  custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs']] = None,
1116
1125
  public_repository: Optional[pulumi.Input[str]] = None):
1117
1126
  """
1118
- :param pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
1127
+ :param pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1119
1128
  Structure is documented below.
1120
1129
  :param pulumi.Input[str] public_repository: Address of the remote repository.
1121
1130
  Default value is `NPMJS`.
@@ -1130,7 +1139,7 @@ class RepositoryRemoteRepositoryConfigNpmRepositoryArgs:
1130
1139
  @pulumi.getter(name="customRepository")
1131
1140
  def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs']]:
1132
1141
  """
1133
- Settings for a remote repository with a custom uri.
1142
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1134
1143
  Structure is documented below.
1135
1144
  """
1136
1145
  return pulumi.get(self, "custom_repository")
@@ -1190,7 +1199,7 @@ if not MYPY:
1190
1199
  class RepositoryRemoteRepositoryConfigPythonRepositoryArgsDict(TypedDict):
1191
1200
  custom_repository: NotRequired[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgsDict']]
1192
1201
  """
1193
- Settings for a remote repository with a custom uri.
1202
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1194
1203
  Structure is documented below.
1195
1204
  """
1196
1205
  public_repository: NotRequired[pulumi.Input[str]]
@@ -1208,7 +1217,7 @@ class RepositoryRemoteRepositoryConfigPythonRepositoryArgs:
1208
1217
  custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs']] = None,
1209
1218
  public_repository: Optional[pulumi.Input[str]] = None):
1210
1219
  """
1211
- :param pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
1220
+ :param pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1212
1221
  Structure is documented below.
1213
1222
  :param pulumi.Input[str] public_repository: Address of the remote repository.
1214
1223
  Default value is `PYPI`.
@@ -1223,7 +1232,7 @@ class RepositoryRemoteRepositoryConfigPythonRepositoryArgs:
1223
1232
  @pulumi.getter(name="customRepository")
1224
1233
  def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs']]:
1225
1234
  """
1226
- Settings for a remote repository with a custom uri.
1235
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1227
1236
  Structure is documented below.
1228
1237
  """
1229
1238
  return pulumi.get(self, "custom_repository")
@@ -722,7 +722,10 @@ class RepositoryRemoteRepositoryConfigCommonRepository(dict):
722
722
  def __init__(__self__, *,
723
723
  uri: str):
724
724
  """
725
- :param str uri: Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
725
+ :param str uri: One of:
726
+ a. Artifact Registry Repository resource, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
727
+ b. URI to the registry, e.g. `"https://registry-1.docker.io"`
728
+ c. URI to Artifact Registry Repository, e.g. `"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"`
726
729
  """
727
730
  pulumi.set(__self__, "uri", uri)
728
731
 
@@ -730,7 +733,10 @@ class RepositoryRemoteRepositoryConfigCommonRepository(dict):
730
733
  @pulumi.getter
731
734
  def uri(self) -> str:
732
735
  """
733
- Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
736
+ One of:
737
+ a. Artifact Registry Repository resource, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
738
+ b. URI to the registry, e.g. `"https://registry-1.docker.io"`
739
+ c. URI to Artifact Registry Repository, e.g. `"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"`
734
740
  """
735
741
  return pulumi.get(self, "uri")
736
742
 
@@ -760,7 +766,7 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
760
766
  custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository'] = None,
761
767
  public_repository: Optional[str] = None):
762
768
  """
763
- :param 'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
769
+ :param 'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
764
770
  Structure is documented below.
765
771
  :param str public_repository: Address of the remote repository.
766
772
  Default value is `DOCKER_HUB`.
@@ -775,7 +781,7 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
775
781
  @pulumi.getter(name="customRepository")
776
782
  def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository']:
777
783
  """
778
- Settings for a remote repository with a custom uri.
784
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
779
785
  Structure is documented below.
780
786
  """
781
787
  return pulumi.get(self, "custom_repository")
@@ -835,7 +841,7 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
835
841
  custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository'] = None,
836
842
  public_repository: Optional[str] = None):
837
843
  """
838
- :param 'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
844
+ :param 'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
839
845
  Structure is documented below.
840
846
  :param str public_repository: Address of the remote repository.
841
847
  Default value is `MAVEN_CENTRAL`.
@@ -850,7 +856,7 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
850
856
  @pulumi.getter(name="customRepository")
851
857
  def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository']:
852
858
  """
853
- Settings for a remote repository with a custom uri.
859
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
854
860
  Structure is documented below.
855
861
  """
856
862
  return pulumi.get(self, "custom_repository")
@@ -910,7 +916,7 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
910
916
  custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository'] = None,
911
917
  public_repository: Optional[str] = None):
912
918
  """
913
- :param 'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
919
+ :param 'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
914
920
  Structure is documented below.
915
921
  :param str public_repository: Address of the remote repository.
916
922
  Default value is `NPMJS`.
@@ -925,7 +931,7 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
925
931
  @pulumi.getter(name="customRepository")
926
932
  def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository']:
927
933
  """
928
- Settings for a remote repository with a custom uri.
934
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
929
935
  Structure is documented below.
930
936
  """
931
937
  return pulumi.get(self, "custom_repository")
@@ -985,7 +991,7 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
985
991
  custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository'] = None,
986
992
  public_repository: Optional[str] = None):
987
993
  """
988
- :param 'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
994
+ :param 'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
989
995
  Structure is documented below.
990
996
  :param str public_repository: Address of the remote repository.
991
997
  Default value is `PYPI`.
@@ -1000,7 +1006,7 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
1000
1006
  @pulumi.getter(name="customRepository")
1001
1007
  def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository']:
1002
1008
  """
1003
- Settings for a remote repository with a custom uri.
1009
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1004
1010
  Structure is documented below.
1005
1011
  """
1006
1012
  return pulumi.get(self, "custom_repository")
@@ -1669,7 +1675,10 @@ class GetRepositoryRemoteRepositoryConfigCommonRepositoryResult(dict):
1669
1675
  def __init__(__self__, *,
1670
1676
  uri: str):
1671
1677
  """
1672
- :param str uri: Specific uri to the Artifact Registory repository, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1678
+ :param str uri: One of:
1679
+ a. Artifact Registry Repository resource, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1680
+ b. URI to the registry, e.g. '"https://registry-1.docker.io"'
1681
+ c. URI to Artifact Registry Repository, e.g. '"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"'
1673
1682
  """
1674
1683
  pulumi.set(__self__, "uri", uri)
1675
1684
 
@@ -1677,7 +1686,10 @@ class GetRepositoryRemoteRepositoryConfigCommonRepositoryResult(dict):
1677
1686
  @pulumi.getter
1678
1687
  def uri(self) -> str:
1679
1688
  """
1680
- Specific uri to the Artifact Registory repository, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1689
+ One of:
1690
+ a. Artifact Registry Repository resource, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1691
+ b. URI to the registry, e.g. '"https://registry-1.docker.io"'
1692
+ c. URI to Artifact Registry Repository, e.g. '"https://REGION-docker.pkg.dev/UPSTREAM_PROJECT_ID/UPSTREAM_REPOSITORY"'
1681
1693
  """
1682
1694
  return pulumi.get(self, "uri")
1683
1695
 
@@ -1688,7 +1700,7 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
1688
1700
  custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult'],
1689
1701
  public_repository: str):
1690
1702
  """
1691
- :param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
1703
+ :param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1692
1704
  :param str public_repository: Address of the remote repository. Default value: "DOCKER_HUB" Possible values: ["DOCKER_HUB"]
1693
1705
  """
1694
1706
  pulumi.set(__self__, "custom_repositories", custom_repositories)
@@ -1698,7 +1710,7 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
1698
1710
  @pulumi.getter(name="customRepositories")
1699
1711
  def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult']:
1700
1712
  """
1701
- Settings for a remote repository with a custom uri.
1713
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1702
1714
  """
1703
1715
  return pulumi.get(self, "custom_repositories")
1704
1716
 
@@ -1735,7 +1747,7 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
1735
1747
  custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult'],
1736
1748
  public_repository: str):
1737
1749
  """
1738
- :param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
1750
+ :param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1739
1751
  :param str public_repository: Address of the remote repository. Default value: "MAVEN_CENTRAL" Possible values: ["MAVEN_CENTRAL"]
1740
1752
  """
1741
1753
  pulumi.set(__self__, "custom_repositories", custom_repositories)
@@ -1745,7 +1757,7 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
1745
1757
  @pulumi.getter(name="customRepositories")
1746
1758
  def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult']:
1747
1759
  """
1748
- Settings for a remote repository with a custom uri.
1760
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1749
1761
  """
1750
1762
  return pulumi.get(self, "custom_repositories")
1751
1763
 
@@ -1782,7 +1794,7 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
1782
1794
  custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult'],
1783
1795
  public_repository: str):
1784
1796
  """
1785
- :param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
1797
+ :param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1786
1798
  :param str public_repository: Address of the remote repository. Default value: "NPMJS" Possible values: ["NPMJS"]
1787
1799
  """
1788
1800
  pulumi.set(__self__, "custom_repositories", custom_repositories)
@@ -1792,7 +1804,7 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
1792
1804
  @pulumi.getter(name="customRepositories")
1793
1805
  def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult']:
1794
1806
  """
1795
- Settings for a remote repository with a custom uri.
1807
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1796
1808
  """
1797
1809
  return pulumi.get(self, "custom_repositories")
1798
1810
 
@@ -1829,7 +1841,7 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
1829
1841
  custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult'],
1830
1842
  public_repository: str):
1831
1843
  """
1832
- :param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
1844
+ :param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1833
1845
  :param str public_repository: Address of the remote repository. Default value: "PYPI" Possible values: ["PYPI"]
1834
1846
  """
1835
1847
  pulumi.set(__self__, "custom_repositories", custom_repositories)
@@ -1839,7 +1851,7 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
1839
1851
  @pulumi.getter(name="customRepositories")
1840
1852
  def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult']:
1841
1853
  """
1842
- Settings for a remote repository with a custom uri.
1854
+ [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
1843
1855
  """
1844
1856
  return pulumi.get(self, "custom_repositories")
1845
1857
 
@@ -1143,6 +1143,70 @@ class Repository(pulumi.CustomResource):
1143
1143
  },
1144
1144
  })
1145
1145
  ```
1146
+ ### Artifact Registry Repository Remote Common Repository With Artifact Registry Uri
1147
+
1148
+ ```python
1149
+ import pulumi
1150
+ import pulumi_gcp as gcp
1151
+
1152
+ project = gcp.organizations.get_project()
1153
+ upstream_repo = gcp.artifactregistry.Repository("upstream_repo",
1154
+ location="us-central1",
1155
+ repository_id="example-upstream-repo",
1156
+ description="example upstream repository",
1157
+ format="DOCKER")
1158
+ my_repo = gcp.artifactregistry.Repository("my-repo",
1159
+ location="us-central1",
1160
+ repository_id="example-common-remote",
1161
+ description="example remote common repository with docker upstream",
1162
+ format="DOCKER",
1163
+ mode="REMOTE_REPOSITORY",
1164
+ remote_repository_config={
1165
+ "description": "pull-through cache of another Artifact Registry repository by URL",
1166
+ "common_repository": {
1167
+ "uri": "https://us-central1-docker.pkg.dev//example-upstream-repo",
1168
+ },
1169
+ })
1170
+ ```
1171
+ ### Artifact Registry Repository Remote Common Repository With Custom Upstream
1172
+
1173
+ ```python
1174
+ import pulumi
1175
+ import pulumi_gcp as gcp
1176
+
1177
+ project = gcp.organizations.get_project()
1178
+ example_remote_secret = gcp.secretmanager.Secret("example-remote-secret",
1179
+ secret_id="example-secret",
1180
+ replication={
1181
+ "auto": {},
1182
+ })
1183
+ example_remote_secret_version = gcp.secretmanager.SecretVersion("example-remote-secret_version",
1184
+ secret=example_remote_secret.id,
1185
+ secret_data="remote-password")
1186
+ secret_access = gcp.secretmanager.SecretIamMember("secret-access",
1187
+ secret_id=example_remote_secret.id,
1188
+ role="roles/secretmanager.secretAccessor",
1189
+ member=f"serviceAccount:service-{project.number}@gcp-sa-artifactregistry.iam.gserviceaccount.com")
1190
+ my_repo = gcp.artifactregistry.Repository("my-repo",
1191
+ location="us-central1",
1192
+ repository_id="example-docker-custom-remote",
1193
+ description="example remote custom docker repository with credentials",
1194
+ format="DOCKER",
1195
+ mode="REMOTE_REPOSITORY",
1196
+ remote_repository_config={
1197
+ "description": "custom common docker remote with credentials",
1198
+ "disable_upstream_validation": True,
1199
+ "common_repository": {
1200
+ "uri": "https://registry-1.docker.io",
1201
+ },
1202
+ "upstream_credentials": {
1203
+ "username_password_credentials": {
1204
+ "username": "remote-username",
1205
+ "password_secret_version": example_remote_secret_version.name,
1206
+ },
1207
+ },
1208
+ })
1209
+ ```
1146
1210
 
1147
1211
  ## Import
1148
1212
 
@@ -1663,6 +1727,70 @@ class Repository(pulumi.CustomResource):
1663
1727
  },
1664
1728
  })
1665
1729
  ```
1730
+ ### Artifact Registry Repository Remote Common Repository With Artifact Registry Uri
1731
+
1732
+ ```python
1733
+ import pulumi
1734
+ import pulumi_gcp as gcp
1735
+
1736
+ project = gcp.organizations.get_project()
1737
+ upstream_repo = gcp.artifactregistry.Repository("upstream_repo",
1738
+ location="us-central1",
1739
+ repository_id="example-upstream-repo",
1740
+ description="example upstream repository",
1741
+ format="DOCKER")
1742
+ my_repo = gcp.artifactregistry.Repository("my-repo",
1743
+ location="us-central1",
1744
+ repository_id="example-common-remote",
1745
+ description="example remote common repository with docker upstream",
1746
+ format="DOCKER",
1747
+ mode="REMOTE_REPOSITORY",
1748
+ remote_repository_config={
1749
+ "description": "pull-through cache of another Artifact Registry repository by URL",
1750
+ "common_repository": {
1751
+ "uri": "https://us-central1-docker.pkg.dev//example-upstream-repo",
1752
+ },
1753
+ })
1754
+ ```
1755
+ ### Artifact Registry Repository Remote Common Repository With Custom Upstream
1756
+
1757
+ ```python
1758
+ import pulumi
1759
+ import pulumi_gcp as gcp
1760
+
1761
+ project = gcp.organizations.get_project()
1762
+ example_remote_secret = gcp.secretmanager.Secret("example-remote-secret",
1763
+ secret_id="example-secret",
1764
+ replication={
1765
+ "auto": {},
1766
+ })
1767
+ example_remote_secret_version = gcp.secretmanager.SecretVersion("example-remote-secret_version",
1768
+ secret=example_remote_secret.id,
1769
+ secret_data="remote-password")
1770
+ secret_access = gcp.secretmanager.SecretIamMember("secret-access",
1771
+ secret_id=example_remote_secret.id,
1772
+ role="roles/secretmanager.secretAccessor",
1773
+ member=f"serviceAccount:service-{project.number}@gcp-sa-artifactregistry.iam.gserviceaccount.com")
1774
+ my_repo = gcp.artifactregistry.Repository("my-repo",
1775
+ location="us-central1",
1776
+ repository_id="example-docker-custom-remote",
1777
+ description="example remote custom docker repository with credentials",
1778
+ format="DOCKER",
1779
+ mode="REMOTE_REPOSITORY",
1780
+ remote_repository_config={
1781
+ "description": "custom common docker remote with credentials",
1782
+ "disable_upstream_validation": True,
1783
+ "common_repository": {
1784
+ "uri": "https://registry-1.docker.io",
1785
+ },
1786
+ "upstream_credentials": {
1787
+ "username_password_credentials": {
1788
+ "username": "remote-username",
1789
+ "password_secret_version": example_remote_secret_version.name,
1790
+ },
1791
+ },
1792
+ })
1793
+ ```
1666
1794
 
1667
1795
  ## Import
1668
1796
 
@@ -38,7 +38,7 @@ class WorkloadArgs:
38
38
  workload_options: Optional[pulumi.Input['WorkloadWorkloadOptionsArgs']] = None):
39
39
  """
40
40
  The set of arguments for constructing a Workload resource.
41
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
41
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
42
42
  :param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
43
43
  :param pulumi.Input[str] location: The location for the resource
44
44
  :param pulumi.Input[str] organization: The organization for the resource
@@ -92,7 +92,7 @@ class WorkloadArgs:
92
92
  @pulumi.getter(name="complianceRegime")
93
93
  def compliance_regime(self) -> pulumi.Input[str]:
94
94
  """
95
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
95
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
96
96
  """
97
97
  return pulumi.get(self, "compliance_regime")
98
98
 
@@ -307,7 +307,7 @@ class _WorkloadState:
307
307
  """
308
308
  Input properties used for looking up and filtering Workload resources.
309
309
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
310
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
310
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
311
311
  :param pulumi.Input[Sequence[pulumi.Input['WorkloadComplianceStatusArgs']]] compliance_statuses: Output only. Count of active Violations in the Workload.
312
312
  :param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
313
313
  :param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
@@ -406,7 +406,7 @@ class _WorkloadState:
406
406
  @pulumi.getter(name="complianceRegime")
407
407
  def compliance_regime(self) -> Optional[pulumi.Input[str]]:
408
408
  """
409
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
409
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
410
410
  """
411
411
  return pulumi.get(self, "compliance_regime")
412
412
 
@@ -853,7 +853,7 @@ class Workload(pulumi.CustomResource):
853
853
  :param str resource_name: The name of the resource.
854
854
  :param pulumi.ResourceOptions opts: Options for the resource.
855
855
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
856
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
856
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
857
857
  :param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
858
858
  :param pulumi.Input[bool] enable_sovereign_controls: Optional. Indicates the sovereignty status of the given workload. Currently meant to be used by Europe/Canada customers.
859
859
  :param pulumi.Input[Union['WorkloadKmsSettingsArgs', 'WorkloadKmsSettingsArgsDict']] kms_settings: **DEPRECATED** Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.
@@ -1129,7 +1129,7 @@ class Workload(pulumi.CustomResource):
1129
1129
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1130
1130
  :param pulumi.ResourceOptions opts: Options for the resource.
1131
1131
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
1132
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
1132
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
1133
1133
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkloadComplianceStatusArgs', 'WorkloadComplianceStatusArgsDict']]]] compliance_statuses: Output only. Count of active Violations in the Workload.
1134
1134
  :param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
1135
1135
  :param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
@@ -1204,7 +1204,7 @@ class Workload(pulumi.CustomResource):
1204
1204
  @pulumi.getter(name="complianceRegime")
1205
1205
  def compliance_regime(self) -> pulumi.Output[str]:
1206
1206
  """
1207
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
1207
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
1208
1208
  """
1209
1209
  return pulumi.get(self, "compliance_regime")
1210
1210
 
@@ -8,8 +8,10 @@ import typing
8
8
  from .backup_plan import *
9
9
  from .backup_plan_association import *
10
10
  from .backup_vault import *
11
+ from .get_backup import *
11
12
  from .get_backup_plan import *
12
13
  from .get_backup_plan_association import *
14
+ from .get_backup_vault import *
13
15
  from .get_data_source import *
14
16
  from .get_management_server import *
15
17
  from .management_server import *
@@ -337,7 +337,7 @@ class BackupPlan(pulumi.CustomResource):
337
337
 
338
338
  my_backup_vault = gcp.backupdisasterrecovery.BackupVault("my_backup_vault",
339
339
  location="us-central1",
340
- backup_vault_id="bv-bp-test",
340
+ backup_vault_id="backup-vault-simple-test",
341
341
  backup_minimum_enforced_retention_duration="100000s")
342
342
  my_backup_plan_1 = gcp.backupdisasterrecovery.BackupPlan("my-backup-plan-1",
343
343
  location="us-central1",
@@ -410,7 +410,7 @@ class BackupPlan(pulumi.CustomResource):
410
410
 
411
411
  my_backup_vault = gcp.backupdisasterrecovery.BackupVault("my_backup_vault",
412
412
  location="us-central1",
413
- backup_vault_id="bv-bp-test",
413
+ backup_vault_id="backup-vault-simple-test",
414
414
  backup_minimum_enforced_retention_duration="100000s")
415
415
  my_backup_plan_1 = gcp.backupdisasterrecovery.BackupPlan("my-backup-plan-1",
416
416
  location="us-central1",
@@ -808,6 +808,8 @@ class BackupVault(pulumi.CustomResource):
808
808
  project: Optional[pulumi.Input[str]] = None,
809
809
  __props__=None):
810
810
  """
811
+ Container to store and organize immutable and indelible backups.
812
+
811
813
  ## Example Usage
812
814
 
813
815
  ### Backup Dr Backup Vault Full
@@ -821,14 +823,14 @@ class BackupVault(pulumi.CustomResource):
821
823
  backup_vault_id="backup-vault-test",
822
824
  description="This is a second backup vault built by Terraform.",
823
825
  backup_minimum_enforced_retention_duration="100000s",
824
- labels={
825
- "foo": "bar1",
826
- "bar": "baz1",
827
- },
828
826
  annotations={
829
827
  "annotations1": "bar1",
830
828
  "annotations2": "baz1",
831
829
  },
830
+ labels={
831
+ "foo": "bar1",
832
+ "bar": "baz1",
833
+ },
832
834
  force_update=True,
833
835
  access_restriction="WITHIN_ORGANIZATION",
834
836
  ignore_inactive_datasources=True,
@@ -905,6 +907,8 @@ class BackupVault(pulumi.CustomResource):
905
907
  args: BackupVaultArgs,
906
908
  opts: Optional[pulumi.ResourceOptions] = None):
907
909
  """
910
+ Container to store and organize immutable and indelible backups.
911
+
908
912
  ## Example Usage
909
913
 
910
914
  ### Backup Dr Backup Vault Full
@@ -918,14 +922,14 @@ class BackupVault(pulumi.CustomResource):
918
922
  backup_vault_id="backup-vault-test",
919
923
  description="This is a second backup vault built by Terraform.",
920
924
  backup_minimum_enforced_retention_duration="100000s",
921
- labels={
922
- "foo": "bar1",
923
- "bar": "baz1",
924
- },
925
925
  annotations={
926
926
  "annotations1": "bar1",
927
927
  "annotations2": "baz1",
928
928
  },
929
+ labels={
930
+ "foo": "bar1",
931
+ "bar": "baz1",
932
+ },
929
933
  force_update=True,
930
934
  access_restriction="WITHIN_ORGANIZATION",
931
935
  ignore_inactive_datasources=True,