pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.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 (128) hide show
  1. pulumi_gcp/__init__.py +62 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/__init__.py +1 -0
  9. pulumi_gcp/bigquery/_inputs.py +33 -0
  10. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  11. pulumi_gcp/bigquery/get_tables.py +143 -0
  12. pulumi_gcp/bigquery/outputs.py +66 -0
  13. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  14. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  15. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  16. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  17. pulumi_gcp/bigtable/_inputs.py +21 -1
  18. pulumi_gcp/bigtable/outputs.py +13 -1
  19. pulumi_gcp/bigtable/table.py +34 -0
  20. pulumi_gcp/certificateauthority/authority.py +14 -7
  21. pulumi_gcp/certificatemanager/__init__.py +1 -0
  22. pulumi_gcp/certificatemanager/certificate.py +28 -0
  23. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  24. pulumi_gcp/certificatemanager/outputs.py +322 -0
  25. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  26. pulumi_gcp/cloudbuild/outputs.py +4 -4
  27. pulumi_gcp/cloudrun/_inputs.py +6 -12
  28. pulumi_gcp/cloudrun/outputs.py +8 -16
  29. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  30. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  31. pulumi_gcp/cloudrunv2/service.py +50 -4
  32. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  33. pulumi_gcp/cloudtasks/outputs.py +479 -0
  34. pulumi_gcp/cloudtasks/queue.py +238 -0
  35. pulumi_gcp/compute/__init__.py +1 -0
  36. pulumi_gcp/compute/_inputs.py +2300 -257
  37. pulumi_gcp/compute/get_instance.py +4 -1
  38. pulumi_gcp/compute/health_check.py +114 -0
  39. pulumi_gcp/compute/instance.py +86 -4
  40. pulumi_gcp/compute/instance_template.py +66 -0
  41. pulumi_gcp/compute/interconnect.py +28 -21
  42. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  43. pulumi_gcp/compute/node_template.py +93 -0
  44. pulumi_gcp/compute/outputs.py +1491 -6
  45. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  46. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  47. pulumi_gcp/compute/service_attachment.py +75 -0
  48. pulumi_gcp/compute/target_http_proxy.py +49 -28
  49. pulumi_gcp/compute/target_https_proxy.py +77 -28
  50. pulumi_gcp/config/__init__.pyi +4 -0
  51. pulumi_gcp/config/vars.py +8 -0
  52. pulumi_gcp/container/_inputs.py +236 -3
  53. pulumi_gcp/container/attached_cluster.py +61 -8
  54. pulumi_gcp/container/outputs.py +276 -2
  55. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  56. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  57. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  58. pulumi_gcp/dataloss/_inputs.py +353 -1
  59. pulumi_gcp/dataloss/outputs.py +274 -3
  60. pulumi_gcp/dataproc/_inputs.py +27 -27
  61. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  62. pulumi_gcp/dataproc/metastore_service.py +2 -0
  63. pulumi_gcp/dataproc/outputs.py +18 -18
  64. pulumi_gcp/datastream/_inputs.py +69 -1
  65. pulumi_gcp/datastream/outputs.py +44 -2
  66. pulumi_gcp/datastream/stream.py +201 -7
  67. pulumi_gcp/developerconnect/__init__.py +11 -0
  68. pulumi_gcp/developerconnect/_inputs.py +301 -0
  69. pulumi_gcp/developerconnect/connection.py +1034 -0
  70. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  71. pulumi_gcp/developerconnect/outputs.py +247 -0
  72. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  73. pulumi_gcp/discoveryengine/data_store.py +14 -14
  74. pulumi_gcp/discoveryengine/outputs.py +153 -1
  75. pulumi_gcp/firebase/database_instance.py +7 -7
  76. pulumi_gcp/gkehub/_inputs.py +25 -1
  77. pulumi_gcp/gkehub/feature_membership.py +12 -6
  78. pulumi_gcp/gkehub/outputs.py +17 -1
  79. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  80. pulumi_gcp/gkeonprem/outputs.py +2 -2
  81. pulumi_gcp/iam/_inputs.py +196 -0
  82. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  83. pulumi_gcp/iam/outputs.py +295 -0
  84. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  85. pulumi_gcp/kms/__init__.py +2 -0
  86. pulumi_gcp/kms/autokey_config.py +10 -2
  87. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  88. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  89. pulumi_gcp/kms/outputs.py +164 -0
  90. pulumi_gcp/memorystore/__init__.py +10 -0
  91. pulumi_gcp/memorystore/_inputs.py +731 -0
  92. pulumi_gcp/memorystore/instance.py +1663 -0
  93. pulumi_gcp/memorystore/outputs.py +598 -0
  94. pulumi_gcp/netapp/active_directory.py +6 -6
  95. pulumi_gcp/netapp/backup.py +6 -6
  96. pulumi_gcp/netapp/backup_policy.py +6 -6
  97. pulumi_gcp/netapp/backup_vault.py +6 -6
  98. pulumi_gcp/netapp/storage_pool.py +4 -4
  99. pulumi_gcp/netapp/volume.py +108 -0
  100. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  101. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  102. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  103. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  104. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  105. pulumi_gcp/organizations/folder.py +52 -33
  106. pulumi_gcp/organizations/get_project.py +13 -3
  107. pulumi_gcp/organizations/project.py +88 -3
  108. pulumi_gcp/parallelstore/instance.py +121 -121
  109. pulumi_gcp/projects/iam_member_remove.py +26 -0
  110. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  111. pulumi_gcp/provider.py +40 -0
  112. pulumi_gcp/pubsub/_inputs.py +40 -0
  113. pulumi_gcp/pubsub/outputs.py +51 -1
  114. pulumi_gcp/pubsub/subscription.py +6 -0
  115. pulumi_gcp/pulumi-plugin.json +1 -1
  116. pulumi_gcp/redis/_inputs.py +419 -0
  117. pulumi_gcp/redis/cluster.py +123 -0
  118. pulumi_gcp/redis/outputs.py +315 -0
  119. pulumi_gcp/securitycenter/__init__.py +2 -0
  120. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  121. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  122. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  123. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  124. pulumi_gcp/vpcaccess/connector.py +21 -28
  125. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
  127. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,10 @@ __all__ = [
31
31
  'TrustConfigTrustStoreTrustAnchor',
32
32
  'GetCertificateMapGclbTargetResult',
33
33
  'GetCertificateMapGclbTargetIpConfigResult',
34
+ 'GetCertificatesCertificateResult',
35
+ 'GetCertificatesCertificateManagedResult',
36
+ 'GetCertificatesCertificateManagedAuthorizationAttemptInfoResult',
37
+ 'GetCertificatesCertificateManagedProvisioningIssueResult',
34
38
  ]
35
39
 
36
40
  @pulumi.output_type
@@ -892,3 +896,321 @@ class GetCertificateMapGclbTargetIpConfigResult(dict):
892
896
  return pulumi.get(self, "ports")
893
897
 
894
898
 
899
+ @pulumi.output_type
900
+ class GetCertificatesCertificateResult(dict):
901
+ def __init__(__self__, *,
902
+ description: str,
903
+ effective_labels: Mapping[str, str],
904
+ labels: Mapping[str, str],
905
+ location: str,
906
+ manageds: Sequence['outputs.GetCertificatesCertificateManagedResult'],
907
+ name: str,
908
+ project: str,
909
+ pulumi_labels: Mapping[str, str],
910
+ san_dnsnames: Sequence[str],
911
+ scope: str):
912
+ """
913
+ :param str description: A human-readable description of the resource.
914
+ :param Mapping[str, str] labels: Set of label tags associated with the Certificate resource.
915
+
916
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
917
+ Please refer to the field 'effective_labels' for all of the labels present on the resource.
918
+ :param str location: The Certificate Manager location. If not specified, "global" is used.
919
+ :param Sequence['GetCertificatesCertificateManagedArgs'] manageds: Configuration and state of a Managed Certificate.
920
+ Certificate Manager provisions and renews Managed Certificates
921
+ automatically, for as long as it's authorized to do so.
922
+ :param str name: A user-defined name of the certificate. Certificate names must be unique
923
+ The name must be 1-64 characters long, and match the regular expression [a-zA-Z][a-zA-Z0-9_-]* which means the first character must be a letter,
924
+ and all following characters must be a dash, underscore, letter or digit.
925
+ :param str project: The ID of the project in which the resource belongs. If it
926
+ is not provided, the provider project is used.
927
+ :param Mapping[str, str] pulumi_labels: The combination of labels configured directly on the resource
928
+ and default labels configured on the provider.
929
+ :param Sequence[str] san_dnsnames: The list of Subject Alternative Names of dnsName type defined in the certificate (see RFC 5280 4.2.1.6)
930
+ :param str scope: The scope of the certificate.
931
+
932
+ DEFAULT: Certificates with default scope are served from core Google data centers.
933
+ If unsure, choose this option.
934
+
935
+ EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
936
+ See https://cloud.google.com/vpc/docs/edge-locations.
937
+
938
+ ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
939
+ See https://cloud.google.com/compute/docs/regions-zones
940
+ """
941
+ pulumi.set(__self__, "description", description)
942
+ pulumi.set(__self__, "effective_labels", effective_labels)
943
+ pulumi.set(__self__, "labels", labels)
944
+ pulumi.set(__self__, "location", location)
945
+ pulumi.set(__self__, "manageds", manageds)
946
+ pulumi.set(__self__, "name", name)
947
+ pulumi.set(__self__, "project", project)
948
+ pulumi.set(__self__, "pulumi_labels", pulumi_labels)
949
+ pulumi.set(__self__, "san_dnsnames", san_dnsnames)
950
+ pulumi.set(__self__, "scope", scope)
951
+
952
+ @property
953
+ @pulumi.getter
954
+ def description(self) -> str:
955
+ """
956
+ A human-readable description of the resource.
957
+ """
958
+ return pulumi.get(self, "description")
959
+
960
+ @property
961
+ @pulumi.getter(name="effectiveLabels")
962
+ def effective_labels(self) -> Mapping[str, str]:
963
+ return pulumi.get(self, "effective_labels")
964
+
965
+ @property
966
+ @pulumi.getter
967
+ def labels(self) -> Mapping[str, str]:
968
+ """
969
+ Set of label tags associated with the Certificate resource.
970
+
971
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
972
+ Please refer to the field 'effective_labels' for all of the labels present on the resource.
973
+ """
974
+ return pulumi.get(self, "labels")
975
+
976
+ @property
977
+ @pulumi.getter
978
+ def location(self) -> str:
979
+ """
980
+ The Certificate Manager location. If not specified, "global" is used.
981
+ """
982
+ return pulumi.get(self, "location")
983
+
984
+ @property
985
+ @pulumi.getter
986
+ def manageds(self) -> Sequence['outputs.GetCertificatesCertificateManagedResult']:
987
+ """
988
+ Configuration and state of a Managed Certificate.
989
+ Certificate Manager provisions and renews Managed Certificates
990
+ automatically, for as long as it's authorized to do so.
991
+ """
992
+ return pulumi.get(self, "manageds")
993
+
994
+ @property
995
+ @pulumi.getter
996
+ def name(self) -> str:
997
+ """
998
+ A user-defined name of the certificate. Certificate names must be unique
999
+ The name must be 1-64 characters long, and match the regular expression [a-zA-Z][a-zA-Z0-9_-]* which means the first character must be a letter,
1000
+ and all following characters must be a dash, underscore, letter or digit.
1001
+ """
1002
+ return pulumi.get(self, "name")
1003
+
1004
+ @property
1005
+ @pulumi.getter
1006
+ def project(self) -> str:
1007
+ """
1008
+ The ID of the project in which the resource belongs. If it
1009
+ is not provided, the provider project is used.
1010
+ """
1011
+ return pulumi.get(self, "project")
1012
+
1013
+ @property
1014
+ @pulumi.getter(name="pulumiLabels")
1015
+ def pulumi_labels(self) -> Mapping[str, str]:
1016
+ """
1017
+ The combination of labels configured directly on the resource
1018
+ and default labels configured on the provider.
1019
+ """
1020
+ return pulumi.get(self, "pulumi_labels")
1021
+
1022
+ @property
1023
+ @pulumi.getter(name="sanDnsnames")
1024
+ def san_dnsnames(self) -> Sequence[str]:
1025
+ """
1026
+ The list of Subject Alternative Names of dnsName type defined in the certificate (see RFC 5280 4.2.1.6)
1027
+ """
1028
+ return pulumi.get(self, "san_dnsnames")
1029
+
1030
+ @property
1031
+ @pulumi.getter
1032
+ def scope(self) -> str:
1033
+ """
1034
+ The scope of the certificate.
1035
+
1036
+ DEFAULT: Certificates with default scope are served from core Google data centers.
1037
+ If unsure, choose this option.
1038
+
1039
+ EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
1040
+ See https://cloud.google.com/vpc/docs/edge-locations.
1041
+
1042
+ ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
1043
+ See https://cloud.google.com/compute/docs/regions-zones
1044
+ """
1045
+ return pulumi.get(self, "scope")
1046
+
1047
+
1048
+ @pulumi.output_type
1049
+ class GetCertificatesCertificateManagedResult(dict):
1050
+ def __init__(__self__, *,
1051
+ authorization_attempt_infos: Sequence['outputs.GetCertificatesCertificateManagedAuthorizationAttemptInfoResult'],
1052
+ dns_authorizations: Sequence[str],
1053
+ domains: Sequence[str],
1054
+ issuance_config: str,
1055
+ provisioning_issues: Sequence['outputs.GetCertificatesCertificateManagedProvisioningIssueResult'],
1056
+ state: str):
1057
+ """
1058
+ :param Sequence['GetCertificatesCertificateManagedAuthorizationAttemptInfoArgs'] authorization_attempt_infos: Detailed state of the latest authorization attempt for each domain
1059
+ specified for this Managed Certificate.
1060
+ :param Sequence[str] dns_authorizations: Authorizations that will be used for performing domain authorization. Either issuanceConfig or dnsAuthorizations should be specificed, but not both.
1061
+ :param Sequence[str] domains: The domains for which a managed SSL certificate will be generated.
1062
+ Wildcard domains are only supported with DNS challenge resolution
1063
+ :param str issuance_config: The resource name for a CertificateIssuanceConfig used to configure private PKI certificates in the format projects/*/locations/*/certificateIssuanceConfigs/*.
1064
+ If this field is not set, the certificates will instead be publicly signed as documented at https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#caa.
1065
+ Either issuanceConfig or dnsAuthorizations should be specificed, but not both.
1066
+ :param Sequence['GetCertificatesCertificateManagedProvisioningIssueArgs'] provisioning_issues: Information about issues with provisioning this Managed Certificate.
1067
+ :param str state: A state of this Managed Certificate.
1068
+ """
1069
+ pulumi.set(__self__, "authorization_attempt_infos", authorization_attempt_infos)
1070
+ pulumi.set(__self__, "dns_authorizations", dns_authorizations)
1071
+ pulumi.set(__self__, "domains", domains)
1072
+ pulumi.set(__self__, "issuance_config", issuance_config)
1073
+ pulumi.set(__self__, "provisioning_issues", provisioning_issues)
1074
+ pulumi.set(__self__, "state", state)
1075
+
1076
+ @property
1077
+ @pulumi.getter(name="authorizationAttemptInfos")
1078
+ def authorization_attempt_infos(self) -> Sequence['outputs.GetCertificatesCertificateManagedAuthorizationAttemptInfoResult']:
1079
+ """
1080
+ Detailed state of the latest authorization attempt for each domain
1081
+ specified for this Managed Certificate.
1082
+ """
1083
+ return pulumi.get(self, "authorization_attempt_infos")
1084
+
1085
+ @property
1086
+ @pulumi.getter(name="dnsAuthorizations")
1087
+ def dns_authorizations(self) -> Sequence[str]:
1088
+ """
1089
+ Authorizations that will be used for performing domain authorization. Either issuanceConfig or dnsAuthorizations should be specificed, but not both.
1090
+ """
1091
+ return pulumi.get(self, "dns_authorizations")
1092
+
1093
+ @property
1094
+ @pulumi.getter
1095
+ def domains(self) -> Sequence[str]:
1096
+ """
1097
+ The domains for which a managed SSL certificate will be generated.
1098
+ Wildcard domains are only supported with DNS challenge resolution
1099
+ """
1100
+ return pulumi.get(self, "domains")
1101
+
1102
+ @property
1103
+ @pulumi.getter(name="issuanceConfig")
1104
+ def issuance_config(self) -> str:
1105
+ """
1106
+ The resource name for a CertificateIssuanceConfig used to configure private PKI certificates in the format projects/*/locations/*/certificateIssuanceConfigs/*.
1107
+ If this field is not set, the certificates will instead be publicly signed as documented at https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#caa.
1108
+ Either issuanceConfig or dnsAuthorizations should be specificed, but not both.
1109
+ """
1110
+ return pulumi.get(self, "issuance_config")
1111
+
1112
+ @property
1113
+ @pulumi.getter(name="provisioningIssues")
1114
+ def provisioning_issues(self) -> Sequence['outputs.GetCertificatesCertificateManagedProvisioningIssueResult']:
1115
+ """
1116
+ Information about issues with provisioning this Managed Certificate.
1117
+ """
1118
+ return pulumi.get(self, "provisioning_issues")
1119
+
1120
+ @property
1121
+ @pulumi.getter
1122
+ def state(self) -> str:
1123
+ """
1124
+ A state of this Managed Certificate.
1125
+ """
1126
+ return pulumi.get(self, "state")
1127
+
1128
+
1129
+ @pulumi.output_type
1130
+ class GetCertificatesCertificateManagedAuthorizationAttemptInfoResult(dict):
1131
+ def __init__(__self__, *,
1132
+ details: str,
1133
+ domain: str,
1134
+ failure_reason: str,
1135
+ state: str):
1136
+ """
1137
+ :param str details: Human readable explanation for reaching the state. Provided to help
1138
+ address the configuration issues.
1139
+ Not guaranteed to be stable. For programmatic access use 'failure_reason' field.
1140
+ :param str domain: Domain name of the authorization attempt.
1141
+ :param str failure_reason: Reason for failure of the authorization attempt for the domain.
1142
+ :param str state: State of the domain for managed certificate issuance.
1143
+ """
1144
+ pulumi.set(__self__, "details", details)
1145
+ pulumi.set(__self__, "domain", domain)
1146
+ pulumi.set(__self__, "failure_reason", failure_reason)
1147
+ pulumi.set(__self__, "state", state)
1148
+
1149
+ @property
1150
+ @pulumi.getter
1151
+ def details(self) -> str:
1152
+ """
1153
+ Human readable explanation for reaching the state. Provided to help
1154
+ address the configuration issues.
1155
+ Not guaranteed to be stable. For programmatic access use 'failure_reason' field.
1156
+ """
1157
+ return pulumi.get(self, "details")
1158
+
1159
+ @property
1160
+ @pulumi.getter
1161
+ def domain(self) -> str:
1162
+ """
1163
+ Domain name of the authorization attempt.
1164
+ """
1165
+ return pulumi.get(self, "domain")
1166
+
1167
+ @property
1168
+ @pulumi.getter(name="failureReason")
1169
+ def failure_reason(self) -> str:
1170
+ """
1171
+ Reason for failure of the authorization attempt for the domain.
1172
+ """
1173
+ return pulumi.get(self, "failure_reason")
1174
+
1175
+ @property
1176
+ @pulumi.getter
1177
+ def state(self) -> str:
1178
+ """
1179
+ State of the domain for managed certificate issuance.
1180
+ """
1181
+ return pulumi.get(self, "state")
1182
+
1183
+
1184
+ @pulumi.output_type
1185
+ class GetCertificatesCertificateManagedProvisioningIssueResult(dict):
1186
+ def __init__(__self__, *,
1187
+ details: str,
1188
+ reason: str):
1189
+ """
1190
+ :param str details: Human readable explanation about the issue. Provided to help address
1191
+ the configuration issues.
1192
+ Not guaranteed to be stable. For programmatic access use 'reason' field.
1193
+ :param str reason: Reason for provisioning failures.
1194
+ """
1195
+ pulumi.set(__self__, "details", details)
1196
+ pulumi.set(__self__, "reason", reason)
1197
+
1198
+ @property
1199
+ @pulumi.getter
1200
+ def details(self) -> str:
1201
+ """
1202
+ Human readable explanation about the issue. Provided to help address
1203
+ the configuration issues.
1204
+ Not guaranteed to be stable. For programmatic access use 'reason' field.
1205
+ """
1206
+ return pulumi.get(self, "details")
1207
+
1208
+ @property
1209
+ @pulumi.getter
1210
+ def reason(self) -> str:
1211
+ """
1212
+ Reason for provisioning failures.
1213
+ """
1214
+ return pulumi.get(self, "reason")
1215
+
1216
+
@@ -3961,11 +3961,11 @@ if not MYPY:
3961
3961
  class WorkerPoolWorkerConfigArgsDict(TypedDict):
3962
3962
  disk_size_gb: NotRequired[pulumi.Input[int]]
3963
3963
  """
3964
- Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3964
+ Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3965
3965
  """
3966
3966
  machine_type: NotRequired[pulumi.Input[str]]
3967
3967
  """
3968
- Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
3968
+ Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
3969
3969
  """
3970
3970
  no_external_ip: NotRequired[pulumi.Input[bool]]
3971
3971
  """
@@ -3981,8 +3981,8 @@ class WorkerPoolWorkerConfigArgs:
3981
3981
  machine_type: Optional[pulumi.Input[str]] = None,
3982
3982
  no_external_ip: Optional[pulumi.Input[bool]] = None):
3983
3983
  """
3984
- :param pulumi.Input[int] disk_size_gb: Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3985
- :param pulumi.Input[str] machine_type: Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
3984
+ :param pulumi.Input[int] disk_size_gb: Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3985
+ :param pulumi.Input[str] machine_type: Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
3986
3986
  :param pulumi.Input[bool] no_external_ip: If true, workers are created without any public address, which prevents network egress to public IPs.
3987
3987
  """
3988
3988
  if disk_size_gb is not None:
@@ -3996,7 +3996,7 @@ class WorkerPoolWorkerConfigArgs:
3996
3996
  @pulumi.getter(name="diskSizeGb")
3997
3997
  def disk_size_gb(self) -> Optional[pulumi.Input[int]]:
3998
3998
  """
3999
- Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3999
+ Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
4000
4000
  """
4001
4001
  return pulumi.get(self, "disk_size_gb")
4002
4002
 
@@ -4008,7 +4008,7 @@ class WorkerPoolWorkerConfigArgs:
4008
4008
  @pulumi.getter(name="machineType")
4009
4009
  def machine_type(self) -> Optional[pulumi.Input[str]]:
4010
4010
  """
4011
- Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
4011
+ Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
4012
4012
  """
4013
4013
  return pulumi.get(self, "machine_type")
4014
4014
 
@@ -3036,8 +3036,8 @@ class WorkerPoolWorkerConfig(dict):
3036
3036
  machine_type: Optional[str] = None,
3037
3037
  no_external_ip: Optional[bool] = None):
3038
3038
  """
3039
- :param int disk_size_gb: Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3040
- :param str machine_type: Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
3039
+ :param int disk_size_gb: Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3040
+ :param str machine_type: Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
3041
3041
  :param bool no_external_ip: If true, workers are created without any public address, which prevents network egress to public IPs.
3042
3042
  """
3043
3043
  if disk_size_gb is not None:
@@ -3051,7 +3051,7 @@ class WorkerPoolWorkerConfig(dict):
3051
3051
  @pulumi.getter(name="diskSizeGb")
3052
3052
  def disk_size_gb(self) -> Optional[int]:
3053
3053
  """
3054
- Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3054
+ Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
3055
3055
  """
3056
3056
  return pulumi.get(self, "disk_size_gb")
3057
3057
 
@@ -3059,7 +3059,7 @@ class WorkerPoolWorkerConfig(dict):
3059
3059
  @pulumi.getter(name="machineType")
3060
3060
  def machine_type(self) -> Optional[str]:
3061
3061
  """
3062
- Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
3062
+ Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
3063
3063
  """
3064
3064
  return pulumi.get(self, "machine_type")
3065
3065
 
@@ -3870,8 +3870,7 @@ if not MYPY:
3870
3870
  nfs: NotRequired[pulumi.Input['ServiceTemplateSpecVolumeNfsArgsDict']]
3871
3871
  """
3872
3872
  A filesystem backed by a Network File System share. This filesystem requires the
3873
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
3874
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
3873
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
3875
3874
  Structure is documented below.
3876
3875
  """
3877
3876
  secret: NotRequired[pulumi.Input['ServiceTemplateSpecVolumeSecretArgsDict']]
@@ -3899,8 +3898,7 @@ class ServiceTemplateSpecVolumeArgs:
3899
3898
  :param pulumi.Input['ServiceTemplateSpecVolumeEmptyDirArgs'] empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
3900
3899
  Structure is documented below.
3901
3900
  :param pulumi.Input['ServiceTemplateSpecVolumeNfsArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
3902
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
3903
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
3901
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
3904
3902
  Structure is documented below.
3905
3903
  :param pulumi.Input['ServiceTemplateSpecVolumeSecretArgs'] secret: The secret's value will be presented as the content of a file whose
3906
3904
  name is defined in the item path. If no items are defined, the name of
@@ -3960,8 +3958,7 @@ class ServiceTemplateSpecVolumeArgs:
3960
3958
  def nfs(self) -> Optional[pulumi.Input['ServiceTemplateSpecVolumeNfsArgs']]:
3961
3959
  """
3962
3960
  A filesystem backed by a Network File System share. This filesystem requires the
3963
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
3964
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
3961
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
3965
3962
  Structure is documented below.
3966
3963
  """
3967
3964
  return pulumi.get(self, "nfs")
@@ -3992,8 +3989,7 @@ if not MYPY:
3992
3989
  """
3993
3990
  Unique name representing the type of file system to be created. Cloud Run supports the following values:
3994
3991
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
3995
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
3996
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
3992
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
3997
3993
  """
3998
3994
  read_only: NotRequired[pulumi.Input[bool]]
3999
3995
  """
@@ -4017,8 +4013,7 @@ class ServiceTemplateSpecVolumeCsiArgs:
4017
4013
  """
4018
4014
  :param pulumi.Input[str] driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
4019
4015
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
4020
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4021
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4016
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4022
4017
  :param pulumi.Input[bool] read_only: If true, all mounts created from this volume will be read-only.
4023
4018
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
4024
4019
  * gcsfuse.run.googleapis.com
@@ -4036,8 +4031,7 @@ class ServiceTemplateSpecVolumeCsiArgs:
4036
4031
  """
4037
4032
  Unique name representing the type of file system to be created. Cloud Run supports the following values:
4038
4033
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
4039
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4040
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4034
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4041
4035
  """
4042
4036
  return pulumi.get(self, "driver")
4043
4037
 
@@ -2813,8 +2813,7 @@ class ServiceTemplateSpecVolume(dict):
2813
2813
  :param 'ServiceTemplateSpecVolumeEmptyDirArgs' empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
2814
2814
  Structure is documented below.
2815
2815
  :param 'ServiceTemplateSpecVolumeNfsArgs' nfs: A filesystem backed by a Network File System share. This filesystem requires the
2816
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
2817
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
2816
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
2818
2817
  Structure is documented below.
2819
2818
  :param 'ServiceTemplateSpecVolumeSecretArgs' secret: The secret's value will be presented as the content of a file whose
2820
2819
  name is defined in the item path. If no items are defined, the name of
@@ -2862,8 +2861,7 @@ class ServiceTemplateSpecVolume(dict):
2862
2861
  def nfs(self) -> Optional['outputs.ServiceTemplateSpecVolumeNfs']:
2863
2862
  """
2864
2863
  A filesystem backed by a Network File System share. This filesystem requires the
2865
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
2866
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
2864
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
2867
2865
  Structure is documented below.
2868
2866
  """
2869
2867
  return pulumi.get(self, "nfs")
@@ -2908,8 +2906,7 @@ class ServiceTemplateSpecVolumeCsi(dict):
2908
2906
  """
2909
2907
  :param str driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
2910
2908
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
2911
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
2912
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
2909
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
2913
2910
  :param bool read_only: If true, all mounts created from this volume will be read-only.
2914
2911
  :param Mapping[str, str] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
2915
2912
  * gcsfuse.run.googleapis.com
@@ -2927,8 +2924,7 @@ class ServiceTemplateSpecVolumeCsi(dict):
2927
2924
  """
2928
2925
  Unique name representing the type of file system to be created. Cloud Run supports the following values:
2929
2926
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
2930
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
2931
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
2927
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
2932
2928
  """
2933
2929
  return pulumi.get(self, "driver")
2934
2930
 
@@ -4812,8 +4808,7 @@ class GetServiceTemplateSpecVolumeResult(dict):
4812
4808
  :param Sequence['GetServiceTemplateSpecVolumeEmptyDirArgs'] empty_dirs: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
4813
4809
  :param str name: The name of the Cloud Run Service.
4814
4810
  :param Sequence['GetServiceTemplateSpecVolumeNfArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
4815
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4816
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4811
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4817
4812
  :param Sequence['GetServiceTemplateSpecVolumeSecretArgs'] secrets: The secret's value will be presented as the content of a file whose
4818
4813
  name is defined in the item path. If no items are defined, the name of
4819
4814
  the file is the secret_name.
@@ -4853,8 +4848,7 @@ class GetServiceTemplateSpecVolumeResult(dict):
4853
4848
  def nfs(self) -> Sequence['outputs.GetServiceTemplateSpecVolumeNfResult']:
4854
4849
  """
4855
4850
  A filesystem backed by a Network File System share. This filesystem requires the
4856
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4857
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4851
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4858
4852
  """
4859
4853
  return pulumi.get(self, "nfs")
4860
4854
 
@@ -4878,8 +4872,7 @@ class GetServiceTemplateSpecVolumeCsiResult(dict):
4878
4872
  """
4879
4873
  :param str driver: Unique name representing the type of file system to be created. Cloud Run supports the following values:
4880
4874
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
4881
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4882
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4875
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4883
4876
  :param bool read_only: If true, all mounts created from this volume will be read-only.
4884
4877
  :param Mapping[str, str] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
4885
4878
  * gcsfuse.run.googleapis.com
@@ -4895,8 +4888,7 @@ class GetServiceTemplateSpecVolumeCsiResult(dict):
4895
4888
  """
4896
4889
  Unique name representing the type of file system to be created. Cloud Run supports the following values:
4897
4890
  * gcsfuse.run.googleapis.com: Mount a Google Cloud Storage bucket using GCSFuse. This driver requires the
4898
- run.googleapis.com/execution-environment annotation to be set to "gen2" and
4899
- run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
4891
+ run.googleapis.com/execution-environment annotation to be unset or set to "gen2"
4900
4892
  """
4901
4893
  return pulumi.get(self, "driver")
4902
4894