pulumi-gcp 8.32.0a1747377897__py3-none-any.whl → 8.32.0a1747834582__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 (256) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +2 -2
  3. pulumi_gcp/apigateway/api_config_iam_binding.py +13 -0
  4. pulumi_gcp/apigateway/api_config_iam_member.py +13 -0
  5. pulumi_gcp/apigateway/api_config_iam_policy.py +13 -0
  6. pulumi_gcp/apigateway/api_iam_binding.py +13 -0
  7. pulumi_gcp/apigateway/api_iam_member.py +13 -0
  8. pulumi_gcp/apigateway/api_iam_policy.py +13 -0
  9. pulumi_gcp/apigateway/gateway_iam_binding.py +13 -0
  10. pulumi_gcp/apigateway/gateway_iam_member.py +13 -0
  11. pulumi_gcp/apigateway/gateway_iam_policy.py +13 -0
  12. pulumi_gcp/apigateway/get_api_config_iam_policy.py +2 -0
  13. pulumi_gcp/apigateway/get_api_iam_policy.py +2 -0
  14. pulumi_gcp/apigateway/get_gateway_iam_policy.py +2 -0
  15. pulumi_gcp/apigee/environment_iam_binding.py +27 -0
  16. pulumi_gcp/apigee/environment_iam_member.py +27 -0
  17. pulumi_gcp/apigee/environment_iam_policy.py +27 -0
  18. pulumi_gcp/apigee/get_environment_iam_policy.py +6 -0
  19. pulumi_gcp/beyondcorp/__init__.py +1 -0
  20. pulumi_gcp/beyondcorp/application.py +8 -4
  21. pulumi_gcp/beyondcorp/application_iam_binding.py +26 -0
  22. pulumi_gcp/beyondcorp/application_iam_member.py +26 -0
  23. pulumi_gcp/beyondcorp/application_iam_policy.py +26 -0
  24. pulumi_gcp/beyondcorp/get_application_iam_policy.py +4 -0
  25. pulumi_gcp/beyondcorp/get_security_gateway.py +222 -0
  26. pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +2 -0
  27. pulumi_gcp/beyondcorp/outputs.py +45 -0
  28. pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +13 -0
  29. pulumi_gcp/beyondcorp/security_gateway_iam_member.py +13 -0
  30. pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +13 -0
  31. pulumi_gcp/bigquery/__init__.py +1 -0
  32. pulumi_gcp/bigquery/connection_iam_binding.py +4 -11
  33. pulumi_gcp/bigquery/connection_iam_member.py +4 -11
  34. pulumi_gcp/bigquery/connection_iam_policy.py +4 -11
  35. pulumi_gcp/bigquery/data_transfer_config.py +2 -2
  36. pulumi_gcp/bigquery/get_connection_iam_policy.py +2 -4
  37. pulumi_gcp/bigquery/get_table_iam_policy.py +4 -0
  38. pulumi_gcp/bigquery/iam_binding.py +26 -0
  39. pulumi_gcp/bigquery/iam_member.py +26 -0
  40. pulumi_gcp/bigquery/iam_policy.py +26 -0
  41. pulumi_gcp/bigquery/row_access_policy.py +787 -0
  42. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +7 -7
  43. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +7 -7
  44. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +7 -7
  45. pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +2 -2
  46. pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +2 -2
  47. pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +7 -7
  48. pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +7 -7
  49. pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +7 -7
  50. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +6 -6
  51. pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +13 -0
  52. pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +13 -0
  53. pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +13 -0
  54. pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +2 -0
  55. pulumi_gcp/bigtable/logical_view.py +49 -0
  56. pulumi_gcp/cloudbuild/trigger.py +2 -2
  57. pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +6 -0
  58. pulumi_gcp/clouddeploy/get_target_iam_policy.py +6 -0
  59. pulumi_gcp/colab/schedule.py +2 -2
  60. pulumi_gcp/compute/_inputs.py +126 -0
  61. pulumi_gcp/compute/backend_service.py +259 -51
  62. pulumi_gcp/compute/get_backend_service.py +23 -1
  63. pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
  64. pulumi_gcp/compute/get_instance_template.py +12 -1
  65. pulumi_gcp/compute/get_network_endpoint_group.py +12 -1
  66. pulumi_gcp/compute/global_forwarding_rule.py +199 -0
  67. pulumi_gcp/compute/instance_template.py +28 -0
  68. pulumi_gcp/compute/network_endpoint_group.py +28 -0
  69. pulumi_gcp/compute/outputs.py +110 -0
  70. pulumi_gcp/compute/region_backend_service.py +58 -51
  71. pulumi_gcp/container/cluster.py +47 -0
  72. pulumi_gcp/container/get_cluster.py +12 -1
  73. pulumi_gcp/datacatalog/entry_group_iam_binding.py +34 -0
  74. pulumi_gcp/datacatalog/entry_group_iam_member.py +34 -0
  75. pulumi_gcp/datacatalog/entry_group_iam_policy.py +34 -0
  76. pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +8 -0
  77. pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +8 -0
  78. pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +8 -0
  79. pulumi_gcp/datacatalog/tag_template_iam_binding.py +34 -0
  80. pulumi_gcp/datacatalog/tag_template_iam_member.py +34 -0
  81. pulumi_gcp/datacatalog/tag_template_iam_policy.py +34 -0
  82. pulumi_gcp/datacatalog/taxonomy_iam_binding.py +34 -0
  83. pulumi_gcp/datacatalog/taxonomy_iam_member.py +34 -0
  84. pulumi_gcp/datacatalog/taxonomy_iam_policy.py +34 -0
  85. pulumi_gcp/dataplex/__init__.py +5 -0
  86. pulumi_gcp/dataplex/_inputs.py +98 -0
  87. pulumi_gcp/dataplex/aspect_type_iam_binding.py +13 -0
  88. pulumi_gcp/dataplex/aspect_type_iam_member.py +13 -0
  89. pulumi_gcp/dataplex/aspect_type_iam_policy.py +13 -0
  90. pulumi_gcp/dataplex/asset_iam_binding.py +53 -0
  91. pulumi_gcp/dataplex/asset_iam_member.py +53 -0
  92. pulumi_gcp/dataplex/asset_iam_policy.py +53 -0
  93. pulumi_gcp/dataplex/datascan_iam_binding.py +13 -0
  94. pulumi_gcp/dataplex/datascan_iam_member.py +13 -0
  95. pulumi_gcp/dataplex/datascan_iam_policy.py +13 -0
  96. pulumi_gcp/dataplex/entry_group_iam_binding.py +13 -0
  97. pulumi_gcp/dataplex/entry_group_iam_member.py +13 -0
  98. pulumi_gcp/dataplex/entry_group_iam_policy.py +13 -0
  99. pulumi_gcp/dataplex/entry_type_iam_binding.py +13 -0
  100. pulumi_gcp/dataplex/entry_type_iam_member.py +13 -0
  101. pulumi_gcp/dataplex/entry_type_iam_policy.py +13 -0
  102. pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +2 -0
  103. pulumi_gcp/dataplex/get_asset_iam_policy.py +10 -0
  104. pulumi_gcp/dataplex/get_datascan_iam_policy.py +2 -0
  105. pulumi_gcp/dataplex/get_entry_group_iam_policy.py +2 -0
  106. pulumi_gcp/dataplex/get_entry_type_iam_policy.py +2 -0
  107. pulumi_gcp/dataplex/get_glossary_iam_policy.py +185 -0
  108. pulumi_gcp/dataplex/get_lake_iam_policy.py +6 -0
  109. pulumi_gcp/dataplex/get_task_iam_policy.py +2 -0
  110. pulumi_gcp/dataplex/get_zone_iam_policy.py +8 -0
  111. pulumi_gcp/dataplex/glossary.py +772 -0
  112. pulumi_gcp/dataplex/glossary_iam_binding.py +837 -0
  113. pulumi_gcp/dataplex/glossary_iam_member.py +837 -0
  114. pulumi_gcp/dataplex/glossary_iam_policy.py +676 -0
  115. pulumi_gcp/dataplex/lake_iam_binding.py +27 -0
  116. pulumi_gcp/dataplex/lake_iam_member.py +27 -0
  117. pulumi_gcp/dataplex/lake_iam_policy.py +27 -0
  118. pulumi_gcp/dataplex/outputs.py +56 -0
  119. pulumi_gcp/dataplex/task_iam_binding.py +13 -0
  120. pulumi_gcp/dataplex/task_iam_member.py +13 -0
  121. pulumi_gcp/dataplex/task_iam_policy.py +13 -0
  122. pulumi_gcp/dataplex/zone_iam_binding.py +40 -0
  123. pulumi_gcp/dataplex/zone_iam_member.py +40 -0
  124. pulumi_gcp/dataplex/zone_iam_policy.py +40 -0
  125. pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +4 -25
  126. pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +4 -25
  127. pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +4 -25
  128. pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +2 -8
  129. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +8 -0
  130. pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +2 -0
  131. pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +2 -0
  132. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +10 -0
  133. pulumi_gcp/dataproc/metastore_database_iam_binding.py +40 -0
  134. pulumi_gcp/dataproc/metastore_database_iam_member.py +40 -0
  135. pulumi_gcp/dataproc/metastore_database_iam_policy.py +40 -0
  136. pulumi_gcp/dataproc/metastore_federation_iam_binding.py +13 -0
  137. pulumi_gcp/dataproc/metastore_federation_iam_member.py +13 -0
  138. pulumi_gcp/dataproc/metastore_federation_iam_policy.py +13 -0
  139. pulumi_gcp/dataproc/metastore_service_iam_binding.py +13 -0
  140. pulumi_gcp/dataproc/metastore_service_iam_member.py +13 -0
  141. pulumi_gcp/dataproc/metastore_service_iam_policy.py +13 -0
  142. pulumi_gcp/dataproc/metastore_table_iam_binding.py +53 -0
  143. pulumi_gcp/dataproc/metastore_table_iam_member.py +53 -0
  144. pulumi_gcp/dataproc/metastore_table_iam_policy.py +53 -0
  145. pulumi_gcp/diagflow/_inputs.py +56 -0
  146. pulumi_gcp/diagflow/cx_agent.py +60 -0
  147. pulumi_gcp/diagflow/cx_flow.py +2 -0
  148. pulumi_gcp/diagflow/entity_type.py +2 -2
  149. pulumi_gcp/diagflow/outputs.py +35 -0
  150. pulumi_gcp/edgecontainer/node_pool.py +2 -2
  151. pulumi_gcp/endpoints/consumers_iam_binding.py +26 -0
  152. pulumi_gcp/endpoints/consumers_iam_member.py +26 -0
  153. pulumi_gcp/endpoints/consumers_iam_policy.py +26 -0
  154. pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +8 -0
  155. pulumi_gcp/endpoints/get_service_iam_policy.py +6 -0
  156. pulumi_gcp/endpoints/service_iam_binding.py +13 -0
  157. pulumi_gcp/endpoints/service_iam_member.py +13 -0
  158. pulumi_gcp/endpoints/service_iam_policy.py +13 -0
  159. pulumi_gcp/firebase/__init__.py +3 -0
  160. pulumi_gcp/firebase/_inputs.py +1527 -0
  161. pulumi_gcp/firebase/app_hosting_backend.py +104 -0
  162. pulumi_gcp/firebase/app_hosting_default_domain.py +721 -0
  163. pulumi_gcp/firebase/app_hosting_domain.py +796 -0
  164. pulumi_gcp/firebase/app_hosting_traffic.py +914 -0
  165. pulumi_gcp/firebase/extensions_instance.py +4 -4
  166. pulumi_gcp/firebase/outputs.py +1075 -0
  167. pulumi_gcp/firestore/database.py +9 -0
  168. pulumi_gcp/gemini/get_repository_group_iam_policy.py +4 -0
  169. pulumi_gcp/gemini/repository_group_iam_binding.py +26 -0
  170. pulumi_gcp/gemini/repository_group_iam_member.py +26 -0
  171. pulumi_gcp/gemini/repository_group_iam_policy.py +26 -0
  172. pulumi_gcp/gkebackup/backup_channel.py +9 -9
  173. pulumi_gcp/gkebackup/restore_channel.py +9 -9
  174. pulumi_gcp/gkehub/get_membership_iam_policy.py +2 -0
  175. pulumi_gcp/gkehub/get_scope_iam_policy.py +2 -0
  176. pulumi_gcp/gkehub/membership_iam_binding.py +13 -0
  177. pulumi_gcp/gkehub/membership_iam_member.py +13 -0
  178. pulumi_gcp/gkehub/membership_iam_policy.py +13 -0
  179. pulumi_gcp/gkehub/scope_iam_binding.py +13 -0
  180. pulumi_gcp/gkehub/scope_iam_member.py +13 -0
  181. pulumi_gcp/gkehub/scope_iam_policy.py +13 -0
  182. pulumi_gcp/iam/__init__.py +4 -0
  183. pulumi_gcp/iam/_inputs.py +432 -0
  184. pulumi_gcp/iam/get_workload_identity_pool.py +35 -1
  185. pulumi_gcp/iam/get_workload_identity_pool_iam_policy.py +156 -0
  186. pulumi_gcp/iam/oauth_client_credential.py +6 -0
  187. pulumi_gcp/iam/outputs.py +510 -0
  188. pulumi_gcp/iam/workload_identity_pool.py +446 -24
  189. pulumi_gcp/iam/workload_identity_pool_iam_binding.py +539 -0
  190. pulumi_gcp/iam/workload_identity_pool_iam_member.py +539 -0
  191. pulumi_gcp/iam/workload_identity_pool_iam_policy.py +358 -0
  192. pulumi_gcp/iap/app_engine_service_iam_binding.py +14 -14
  193. pulumi_gcp/iap/app_engine_service_iam_member.py +14 -14
  194. pulumi_gcp/iap/app_engine_service_iam_policy.py +14 -14
  195. pulumi_gcp/iap/app_engine_version_iam_binding.py +14 -14
  196. pulumi_gcp/iap/app_engine_version_iam_member.py +14 -14
  197. pulumi_gcp/iap/app_engine_version_iam_policy.py +14 -14
  198. pulumi_gcp/iap/get_app_engine_service_iam_policy.py +4 -4
  199. pulumi_gcp/iap/get_app_engine_version_iam_policy.py +4 -4
  200. pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +2 -0
  201. pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +6 -0
  202. pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +6 -0
  203. pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +2 -2
  204. pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +13 -0
  205. pulumi_gcp/iap/tunnel_dest_group_iam_member.py +13 -0
  206. pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +13 -0
  207. pulumi_gcp/iap/tunnel_instance_iam_binding.py +27 -0
  208. pulumi_gcp/iap/tunnel_instance_iam_member.py +27 -0
  209. pulumi_gcp/iap/tunnel_instance_iam_policy.py +27 -0
  210. pulumi_gcp/iap/web_region_backend_service_iam_binding.py +27 -0
  211. pulumi_gcp/iap/web_region_backend_service_iam_member.py +27 -0
  212. pulumi_gcp/iap/web_region_backend_service_iam_policy.py +27 -0
  213. pulumi_gcp/iap/web_type_app_enging_iam_binding.py +7 -7
  214. pulumi_gcp/iap/web_type_app_enging_iam_member.py +7 -7
  215. pulumi_gcp/iap/web_type_app_enging_iam_policy.py +7 -7
  216. pulumi_gcp/lustre/__init__.py +1 -0
  217. pulumi_gcp/lustre/get_instance.py +280 -0
  218. pulumi_gcp/lustre/instance.py +12 -0
  219. pulumi_gcp/netapp/backup.py +2 -2
  220. pulumi_gcp/networksecurity/intercept_deployment.py +10 -0
  221. pulumi_gcp/networksecurity/intercept_deployment_group.py +8 -0
  222. pulumi_gcp/networksecurity/intercept_endpoint_group.py +12 -0
  223. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +16 -0
  224. pulumi_gcp/pulumi-plugin.json +1 -1
  225. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +2 -0
  226. pulumi_gcp/secretmanager/get_secret_iam_policy.py +2 -0
  227. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +13 -0
  228. pulumi_gcp/secretmanager/regional_secret_iam_member.py +13 -0
  229. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +13 -0
  230. pulumi_gcp/secretmanager/secret_iam_binding.py +13 -0
  231. pulumi_gcp/secretmanager/secret_iam_member.py +13 -0
  232. pulumi_gcp/secretmanager/secret_iam_policy.py +13 -0
  233. pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +2 -4
  234. pulumi_gcp/securesourcemanager/get_repository_iam_policy.py +2 -4
  235. pulumi_gcp/securesourcemanager/repository_iam_binding.py +4 -11
  236. pulumi_gcp/securesourcemanager/repository_iam_member.py +4 -11
  237. pulumi_gcp/securesourcemanager/repository_iam_policy.py +4 -11
  238. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +2 -2
  239. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +2 -2
  240. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +13 -0
  241. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +13 -0
  242. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +13 -0
  243. pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +2 -0
  244. pulumi_gcp/vmwareengine/external_address.py +4 -4
  245. pulumi_gcp/workstations/get_workstation_config_iam_policy.py +6 -0
  246. pulumi_gcp/workstations/get_workstation_iam_policy.py +10 -0
  247. pulumi_gcp/workstations/workstation_config_iam_binding.py +33 -0
  248. pulumi_gcp/workstations/workstation_config_iam_member.py +33 -0
  249. pulumi_gcp/workstations/workstation_config_iam_policy.py +33 -0
  250. pulumi_gcp/workstations/workstation_iam_binding.py +53 -0
  251. pulumi_gcp/workstations/workstation_iam_member.py +53 -0
  252. pulumi_gcp/workstations/workstation_iam_policy.py +53 -0
  253. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/METADATA +1 -1
  254. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/RECORD +256 -241
  255. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/WHEEL +1 -1
  256. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/top_level.txt +0 -0
@@ -32,6 +32,38 @@ __all__ = [
32
32
  'AppHostingBuildSourceCodebaseAuthorArgsDict',
33
33
  'AppHostingBuildSourceContainerArgs',
34
34
  'AppHostingBuildSourceContainerArgsDict',
35
+ 'AppHostingDomainCustomDomainStatusArgs',
36
+ 'AppHostingDomainCustomDomainStatusArgsDict',
37
+ 'AppHostingDomainCustomDomainStatusIssueArgs',
38
+ 'AppHostingDomainCustomDomainStatusIssueArgsDict',
39
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs',
40
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgsDict',
41
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs',
42
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgsDict',
43
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs',
44
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgsDict',
45
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs',
46
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgsDict',
47
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs',
48
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgsDict',
49
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs',
50
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgsDict',
51
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs',
52
+ 'AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgsDict',
53
+ 'AppHostingDomainServeArgs',
54
+ 'AppHostingDomainServeArgsDict',
55
+ 'AppHostingDomainServeRedirectArgs',
56
+ 'AppHostingDomainServeRedirectArgsDict',
57
+ 'AppHostingTrafficCurrentArgs',
58
+ 'AppHostingTrafficCurrentArgsDict',
59
+ 'AppHostingTrafficCurrentSplitArgs',
60
+ 'AppHostingTrafficCurrentSplitArgsDict',
61
+ 'AppHostingTrafficRolloutPolicyArgs',
62
+ 'AppHostingTrafficRolloutPolicyArgsDict',
63
+ 'AppHostingTrafficTargetArgs',
64
+ 'AppHostingTrafficTargetArgsDict',
65
+ 'AppHostingTrafficTargetSplitArgs',
66
+ 'AppHostingTrafficTargetSplitArgsDict',
35
67
  'ExtensionsInstanceConfigArgs',
36
68
  'ExtensionsInstanceConfigArgsDict',
37
69
  'ExtensionsInstanceErrorStatusArgs',
@@ -706,6 +738,1501 @@ class AppHostingBuildSourceContainerArgs:
706
738
  pulumi.set(self, "image", value)
707
739
 
708
740
 
741
+ if not MYPY:
742
+ class AppHostingDomainCustomDomainStatusArgsDict(TypedDict):
743
+ cert_state: NotRequired[pulumi.Input[builtins.str]]
744
+ """
745
+ (Output)
746
+ Possible values:
747
+ CERT_PREPARING
748
+ CERT_VALIDATING
749
+ CERT_PROPAGATING
750
+ CERT_ACTIVE
751
+ CERT_EXPIRING_SOON
752
+ CERT_EXPIRED
753
+ """
754
+ host_state: NotRequired[pulumi.Input[builtins.str]]
755
+ """
756
+ (Output)
757
+ Possible values:
758
+ HOST_UNHOSTED
759
+ HOST_UNREACHABLE
760
+ HOST_NON_FAH
761
+ HOST_CONFLICT
762
+ HOST_WRONG_SHARD
763
+ HOST_ACTIVE
764
+ """
765
+ issues: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusIssueArgsDict']]]]
766
+ """
767
+ (Output)
768
+ A list of issues with domain configuration. Allows users to self-correct
769
+ problems with DNS records.
770
+ Structure is documented below.
771
+ """
772
+ ownership_state: NotRequired[pulumi.Input[builtins.str]]
773
+ """
774
+ (Output)
775
+ Possible values:
776
+ OWNERSHIP_MISSING
777
+ OWNERSHIP_UNREACHABLE
778
+ OWNERSHIP_MISMATCH
779
+ OWNERSHIP_CONFLICT
780
+ OWNERSHIP_PENDING
781
+ OWNERSHIP_ACTIVE
782
+ """
783
+ required_dns_updates: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgsDict']]]]
784
+ """
785
+ (Output)
786
+ Lists the records that must added or removed to a custom domain's DNS
787
+ in order to finish setup and start serving content.
788
+ Field is present during onboarding. Also present after onboarding if one
789
+ or more of the above states is not *_ACTIVE, indicating the domain's DNS
790
+ records are in a bad state.
791
+ Structure is documented below.
792
+ """
793
+ elif False:
794
+ AppHostingDomainCustomDomainStatusArgsDict: TypeAlias = Mapping[str, Any]
795
+
796
+ @pulumi.input_type
797
+ class AppHostingDomainCustomDomainStatusArgs:
798
+ def __init__(__self__, *,
799
+ cert_state: Optional[pulumi.Input[builtins.str]] = None,
800
+ host_state: Optional[pulumi.Input[builtins.str]] = None,
801
+ issues: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusIssueArgs']]]] = None,
802
+ ownership_state: Optional[pulumi.Input[builtins.str]] = None,
803
+ required_dns_updates: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs']]]] = None):
804
+ """
805
+ :param pulumi.Input[builtins.str] cert_state: (Output)
806
+ Possible values:
807
+ CERT_PREPARING
808
+ CERT_VALIDATING
809
+ CERT_PROPAGATING
810
+ CERT_ACTIVE
811
+ CERT_EXPIRING_SOON
812
+ CERT_EXPIRED
813
+ :param pulumi.Input[builtins.str] host_state: (Output)
814
+ Possible values:
815
+ HOST_UNHOSTED
816
+ HOST_UNREACHABLE
817
+ HOST_NON_FAH
818
+ HOST_CONFLICT
819
+ HOST_WRONG_SHARD
820
+ HOST_ACTIVE
821
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusIssueArgs']]] issues: (Output)
822
+ A list of issues with domain configuration. Allows users to self-correct
823
+ problems with DNS records.
824
+ Structure is documented below.
825
+ :param pulumi.Input[builtins.str] ownership_state: (Output)
826
+ Possible values:
827
+ OWNERSHIP_MISSING
828
+ OWNERSHIP_UNREACHABLE
829
+ OWNERSHIP_MISMATCH
830
+ OWNERSHIP_CONFLICT
831
+ OWNERSHIP_PENDING
832
+ OWNERSHIP_ACTIVE
833
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs']]] required_dns_updates: (Output)
834
+ Lists the records that must added or removed to a custom domain's DNS
835
+ in order to finish setup and start serving content.
836
+ Field is present during onboarding. Also present after onboarding if one
837
+ or more of the above states is not *_ACTIVE, indicating the domain's DNS
838
+ records are in a bad state.
839
+ Structure is documented below.
840
+ """
841
+ if cert_state is not None:
842
+ pulumi.set(__self__, "cert_state", cert_state)
843
+ if host_state is not None:
844
+ pulumi.set(__self__, "host_state", host_state)
845
+ if issues is not None:
846
+ pulumi.set(__self__, "issues", issues)
847
+ if ownership_state is not None:
848
+ pulumi.set(__self__, "ownership_state", ownership_state)
849
+ if required_dns_updates is not None:
850
+ pulumi.set(__self__, "required_dns_updates", required_dns_updates)
851
+
852
+ @property
853
+ @pulumi.getter(name="certState")
854
+ def cert_state(self) -> Optional[pulumi.Input[builtins.str]]:
855
+ """
856
+ (Output)
857
+ Possible values:
858
+ CERT_PREPARING
859
+ CERT_VALIDATING
860
+ CERT_PROPAGATING
861
+ CERT_ACTIVE
862
+ CERT_EXPIRING_SOON
863
+ CERT_EXPIRED
864
+ """
865
+ return pulumi.get(self, "cert_state")
866
+
867
+ @cert_state.setter
868
+ def cert_state(self, value: Optional[pulumi.Input[builtins.str]]):
869
+ pulumi.set(self, "cert_state", value)
870
+
871
+ @property
872
+ @pulumi.getter(name="hostState")
873
+ def host_state(self) -> Optional[pulumi.Input[builtins.str]]:
874
+ """
875
+ (Output)
876
+ Possible values:
877
+ HOST_UNHOSTED
878
+ HOST_UNREACHABLE
879
+ HOST_NON_FAH
880
+ HOST_CONFLICT
881
+ HOST_WRONG_SHARD
882
+ HOST_ACTIVE
883
+ """
884
+ return pulumi.get(self, "host_state")
885
+
886
+ @host_state.setter
887
+ def host_state(self, value: Optional[pulumi.Input[builtins.str]]):
888
+ pulumi.set(self, "host_state", value)
889
+
890
+ @property
891
+ @pulumi.getter
892
+ def issues(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusIssueArgs']]]]:
893
+ """
894
+ (Output)
895
+ A list of issues with domain configuration. Allows users to self-correct
896
+ problems with DNS records.
897
+ Structure is documented below.
898
+ """
899
+ return pulumi.get(self, "issues")
900
+
901
+ @issues.setter
902
+ def issues(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusIssueArgs']]]]):
903
+ pulumi.set(self, "issues", value)
904
+
905
+ @property
906
+ @pulumi.getter(name="ownershipState")
907
+ def ownership_state(self) -> Optional[pulumi.Input[builtins.str]]:
908
+ """
909
+ (Output)
910
+ Possible values:
911
+ OWNERSHIP_MISSING
912
+ OWNERSHIP_UNREACHABLE
913
+ OWNERSHIP_MISMATCH
914
+ OWNERSHIP_CONFLICT
915
+ OWNERSHIP_PENDING
916
+ OWNERSHIP_ACTIVE
917
+ """
918
+ return pulumi.get(self, "ownership_state")
919
+
920
+ @ownership_state.setter
921
+ def ownership_state(self, value: Optional[pulumi.Input[builtins.str]]):
922
+ pulumi.set(self, "ownership_state", value)
923
+
924
+ @property
925
+ @pulumi.getter(name="requiredDnsUpdates")
926
+ def required_dns_updates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs']]]]:
927
+ """
928
+ (Output)
929
+ Lists the records that must added or removed to a custom domain's DNS
930
+ in order to finish setup and start serving content.
931
+ Field is present during onboarding. Also present after onboarding if one
932
+ or more of the above states is not *_ACTIVE, indicating the domain's DNS
933
+ records are in a bad state.
934
+ Structure is documented below.
935
+ """
936
+ return pulumi.get(self, "required_dns_updates")
937
+
938
+ @required_dns_updates.setter
939
+ def required_dns_updates(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs']]]]):
940
+ pulumi.set(self, "required_dns_updates", value)
941
+
942
+
943
+ if not MYPY:
944
+ class AppHostingDomainCustomDomainStatusIssueArgsDict(TypedDict):
945
+ code: NotRequired[pulumi.Input[builtins.int]]
946
+ """
947
+ (Output)
948
+ The status code, which should be an enum value of google.rpc.Code.
949
+ """
950
+ details: NotRequired[pulumi.Input[builtins.str]]
951
+ """
952
+ (Output)
953
+ A list of messages that carry the error details.
954
+ """
955
+ message: NotRequired[pulumi.Input[builtins.str]]
956
+ """
957
+ (Output)
958
+ A developer-facing error message, which should be in English. Any
959
+ user-facing error message should be localized and sent in the
960
+ google.rpc.Status.details field, or localized by the client.
961
+ """
962
+ elif False:
963
+ AppHostingDomainCustomDomainStatusIssueArgsDict: TypeAlias = Mapping[str, Any]
964
+
965
+ @pulumi.input_type
966
+ class AppHostingDomainCustomDomainStatusIssueArgs:
967
+ def __init__(__self__, *,
968
+ code: Optional[pulumi.Input[builtins.int]] = None,
969
+ details: Optional[pulumi.Input[builtins.str]] = None,
970
+ message: Optional[pulumi.Input[builtins.str]] = None):
971
+ """
972
+ :param pulumi.Input[builtins.int] code: (Output)
973
+ The status code, which should be an enum value of google.rpc.Code.
974
+ :param pulumi.Input[builtins.str] details: (Output)
975
+ A list of messages that carry the error details.
976
+ :param pulumi.Input[builtins.str] message: (Output)
977
+ A developer-facing error message, which should be in English. Any
978
+ user-facing error message should be localized and sent in the
979
+ google.rpc.Status.details field, or localized by the client.
980
+ """
981
+ if code is not None:
982
+ pulumi.set(__self__, "code", code)
983
+ if details is not None:
984
+ pulumi.set(__self__, "details", details)
985
+ if message is not None:
986
+ pulumi.set(__self__, "message", message)
987
+
988
+ @property
989
+ @pulumi.getter
990
+ def code(self) -> Optional[pulumi.Input[builtins.int]]:
991
+ """
992
+ (Output)
993
+ The status code, which should be an enum value of google.rpc.Code.
994
+ """
995
+ return pulumi.get(self, "code")
996
+
997
+ @code.setter
998
+ def code(self, value: Optional[pulumi.Input[builtins.int]]):
999
+ pulumi.set(self, "code", value)
1000
+
1001
+ @property
1002
+ @pulumi.getter
1003
+ def details(self) -> Optional[pulumi.Input[builtins.str]]:
1004
+ """
1005
+ (Output)
1006
+ A list of messages that carry the error details.
1007
+ """
1008
+ return pulumi.get(self, "details")
1009
+
1010
+ @details.setter
1011
+ def details(self, value: Optional[pulumi.Input[builtins.str]]):
1012
+ pulumi.set(self, "details", value)
1013
+
1014
+ @property
1015
+ @pulumi.getter
1016
+ def message(self) -> Optional[pulumi.Input[builtins.str]]:
1017
+ """
1018
+ (Output)
1019
+ A developer-facing error message, which should be in English. Any
1020
+ user-facing error message should be localized and sent in the
1021
+ google.rpc.Status.details field, or localized by the client.
1022
+ """
1023
+ return pulumi.get(self, "message")
1024
+
1025
+ @message.setter
1026
+ def message(self, value: Optional[pulumi.Input[builtins.str]]):
1027
+ pulumi.set(self, "message", value)
1028
+
1029
+
1030
+ if not MYPY:
1031
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgsDict(TypedDict):
1032
+ check_time: NotRequired[pulumi.Input[builtins.str]]
1033
+ """
1034
+ (Output)
1035
+ The last time App Hosting checked your custom domain's DNS records.
1036
+ """
1037
+ desireds: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgsDict']]]]
1038
+ """
1039
+ (Output)
1040
+ The set of DNS records App Hosting needs in order to be able to serve
1041
+ secure content on the domain.
1042
+ Structure is documented below.
1043
+ """
1044
+ discovereds: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgsDict']]]]
1045
+ """
1046
+ (Output)
1047
+ The set of DNS records App Hosting discovered when inspecting a domain.
1048
+ Structure is documented below.
1049
+ """
1050
+ domain_name: NotRequired[pulumi.Input[builtins.str]]
1051
+ """
1052
+ (Output)
1053
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1054
+ """
1055
+ elif False:
1056
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgsDict: TypeAlias = Mapping[str, Any]
1057
+
1058
+ @pulumi.input_type
1059
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateArgs:
1060
+ def __init__(__self__, *,
1061
+ check_time: Optional[pulumi.Input[builtins.str]] = None,
1062
+ desireds: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs']]]] = None,
1063
+ discovereds: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs']]]] = None,
1064
+ domain_name: Optional[pulumi.Input[builtins.str]] = None):
1065
+ """
1066
+ :param pulumi.Input[builtins.str] check_time: (Output)
1067
+ The last time App Hosting checked your custom domain's DNS records.
1068
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs']]] desireds: (Output)
1069
+ The set of DNS records App Hosting needs in order to be able to serve
1070
+ secure content on the domain.
1071
+ Structure is documented below.
1072
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs']]] discovereds: (Output)
1073
+ The set of DNS records App Hosting discovered when inspecting a domain.
1074
+ Structure is documented below.
1075
+ :param pulumi.Input[builtins.str] domain_name: (Output)
1076
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1077
+ """
1078
+ if check_time is not None:
1079
+ pulumi.set(__self__, "check_time", check_time)
1080
+ if desireds is not None:
1081
+ pulumi.set(__self__, "desireds", desireds)
1082
+ if discovereds is not None:
1083
+ pulumi.set(__self__, "discovereds", discovereds)
1084
+ if domain_name is not None:
1085
+ pulumi.set(__self__, "domain_name", domain_name)
1086
+
1087
+ @property
1088
+ @pulumi.getter(name="checkTime")
1089
+ def check_time(self) -> Optional[pulumi.Input[builtins.str]]:
1090
+ """
1091
+ (Output)
1092
+ The last time App Hosting checked your custom domain's DNS records.
1093
+ """
1094
+ return pulumi.get(self, "check_time")
1095
+
1096
+ @check_time.setter
1097
+ def check_time(self, value: Optional[pulumi.Input[builtins.str]]):
1098
+ pulumi.set(self, "check_time", value)
1099
+
1100
+ @property
1101
+ @pulumi.getter
1102
+ def desireds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs']]]]:
1103
+ """
1104
+ (Output)
1105
+ The set of DNS records App Hosting needs in order to be able to serve
1106
+ secure content on the domain.
1107
+ Structure is documented below.
1108
+ """
1109
+ return pulumi.get(self, "desireds")
1110
+
1111
+ @desireds.setter
1112
+ def desireds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs']]]]):
1113
+ pulumi.set(self, "desireds", value)
1114
+
1115
+ @property
1116
+ @pulumi.getter
1117
+ def discovereds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs']]]]:
1118
+ """
1119
+ (Output)
1120
+ The set of DNS records App Hosting discovered when inspecting a domain.
1121
+ Structure is documented below.
1122
+ """
1123
+ return pulumi.get(self, "discovereds")
1124
+
1125
+ @discovereds.setter
1126
+ def discovereds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs']]]]):
1127
+ pulumi.set(self, "discovereds", value)
1128
+
1129
+ @property
1130
+ @pulumi.getter(name="domainName")
1131
+ def domain_name(self) -> Optional[pulumi.Input[builtins.str]]:
1132
+ """
1133
+ (Output)
1134
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1135
+ """
1136
+ return pulumi.get(self, "domain_name")
1137
+
1138
+ @domain_name.setter
1139
+ def domain_name(self, value: Optional[pulumi.Input[builtins.str]]):
1140
+ pulumi.set(self, "domain_name", value)
1141
+
1142
+
1143
+ if not MYPY:
1144
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgsDict(TypedDict):
1145
+ check_errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgsDict']]]]
1146
+ """
1147
+ (Output)
1148
+ The `Status` type defines a logical error model that is suitable for
1149
+ different programming environments, including REST APIs and RPC APIs. It is
1150
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1151
+ three pieces of data: error code, error message, and error details.
1152
+ You can find out more about this error model and how to work with it in the
1153
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1154
+ Structure is documented below.
1155
+ """
1156
+ domain_name: NotRequired[pulumi.Input[builtins.str]]
1157
+ """
1158
+ (Output)
1159
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1160
+ """
1161
+ records: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgsDict']]]]
1162
+ """
1163
+ (Output)
1164
+ Records on the domain.
1165
+ Structure is documented below.
1166
+ """
1167
+ elif False:
1168
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgsDict: TypeAlias = Mapping[str, Any]
1169
+
1170
+ @pulumi.input_type
1171
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredArgs:
1172
+ def __init__(__self__, *,
1173
+ check_errors: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs']]]] = None,
1174
+ domain_name: Optional[pulumi.Input[builtins.str]] = None,
1175
+ records: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs']]]] = None):
1176
+ """
1177
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs']]] check_errors: (Output)
1178
+ The `Status` type defines a logical error model that is suitable for
1179
+ different programming environments, including REST APIs and RPC APIs. It is
1180
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1181
+ three pieces of data: error code, error message, and error details.
1182
+ You can find out more about this error model and how to work with it in the
1183
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1184
+ Structure is documented below.
1185
+ :param pulumi.Input[builtins.str] domain_name: (Output)
1186
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1187
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs']]] records: (Output)
1188
+ Records on the domain.
1189
+ Structure is documented below.
1190
+ """
1191
+ if check_errors is not None:
1192
+ pulumi.set(__self__, "check_errors", check_errors)
1193
+ if domain_name is not None:
1194
+ pulumi.set(__self__, "domain_name", domain_name)
1195
+ if records is not None:
1196
+ pulumi.set(__self__, "records", records)
1197
+
1198
+ @property
1199
+ @pulumi.getter(name="checkErrors")
1200
+ def check_errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs']]]]:
1201
+ """
1202
+ (Output)
1203
+ The `Status` type defines a logical error model that is suitable for
1204
+ different programming environments, including REST APIs and RPC APIs. It is
1205
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1206
+ three pieces of data: error code, error message, and error details.
1207
+ You can find out more about this error model and how to work with it in the
1208
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1209
+ Structure is documented below.
1210
+ """
1211
+ return pulumi.get(self, "check_errors")
1212
+
1213
+ @check_errors.setter
1214
+ def check_errors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs']]]]):
1215
+ pulumi.set(self, "check_errors", value)
1216
+
1217
+ @property
1218
+ @pulumi.getter(name="domainName")
1219
+ def domain_name(self) -> Optional[pulumi.Input[builtins.str]]:
1220
+ """
1221
+ (Output)
1222
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1223
+ """
1224
+ return pulumi.get(self, "domain_name")
1225
+
1226
+ @domain_name.setter
1227
+ def domain_name(self, value: Optional[pulumi.Input[builtins.str]]):
1228
+ pulumi.set(self, "domain_name", value)
1229
+
1230
+ @property
1231
+ @pulumi.getter
1232
+ def records(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs']]]]:
1233
+ """
1234
+ (Output)
1235
+ Records on the domain.
1236
+ Structure is documented below.
1237
+ """
1238
+ return pulumi.get(self, "records")
1239
+
1240
+ @records.setter
1241
+ def records(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs']]]]):
1242
+ pulumi.set(self, "records", value)
1243
+
1244
+
1245
+ if not MYPY:
1246
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgsDict(TypedDict):
1247
+ code: NotRequired[pulumi.Input[builtins.int]]
1248
+ """
1249
+ (Output)
1250
+ The status code, which should be an enum value of google.rpc.Code.
1251
+ """
1252
+ details: NotRequired[pulumi.Input[builtins.str]]
1253
+ """
1254
+ (Output)
1255
+ A list of messages that carry the error details.
1256
+ """
1257
+ message: NotRequired[pulumi.Input[builtins.str]]
1258
+ """
1259
+ (Output)
1260
+ A developer-facing error message, which should be in English. Any
1261
+ user-facing error message should be localized and sent in the
1262
+ google.rpc.Status.details field, or localized by the client.
1263
+ """
1264
+ elif False:
1265
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgsDict: TypeAlias = Mapping[str, Any]
1266
+
1267
+ @pulumi.input_type
1268
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredCheckErrorArgs:
1269
+ def __init__(__self__, *,
1270
+ code: Optional[pulumi.Input[builtins.int]] = None,
1271
+ details: Optional[pulumi.Input[builtins.str]] = None,
1272
+ message: Optional[pulumi.Input[builtins.str]] = None):
1273
+ """
1274
+ :param pulumi.Input[builtins.int] code: (Output)
1275
+ The status code, which should be an enum value of google.rpc.Code.
1276
+ :param pulumi.Input[builtins.str] details: (Output)
1277
+ A list of messages that carry the error details.
1278
+ :param pulumi.Input[builtins.str] message: (Output)
1279
+ A developer-facing error message, which should be in English. Any
1280
+ user-facing error message should be localized and sent in the
1281
+ google.rpc.Status.details field, or localized by the client.
1282
+ """
1283
+ if code is not None:
1284
+ pulumi.set(__self__, "code", code)
1285
+ if details is not None:
1286
+ pulumi.set(__self__, "details", details)
1287
+ if message is not None:
1288
+ pulumi.set(__self__, "message", message)
1289
+
1290
+ @property
1291
+ @pulumi.getter
1292
+ def code(self) -> Optional[pulumi.Input[builtins.int]]:
1293
+ """
1294
+ (Output)
1295
+ The status code, which should be an enum value of google.rpc.Code.
1296
+ """
1297
+ return pulumi.get(self, "code")
1298
+
1299
+ @code.setter
1300
+ def code(self, value: Optional[pulumi.Input[builtins.int]]):
1301
+ pulumi.set(self, "code", value)
1302
+
1303
+ @property
1304
+ @pulumi.getter
1305
+ def details(self) -> Optional[pulumi.Input[builtins.str]]:
1306
+ """
1307
+ (Output)
1308
+ A list of messages that carry the error details.
1309
+ """
1310
+ return pulumi.get(self, "details")
1311
+
1312
+ @details.setter
1313
+ def details(self, value: Optional[pulumi.Input[builtins.str]]):
1314
+ pulumi.set(self, "details", value)
1315
+
1316
+ @property
1317
+ @pulumi.getter
1318
+ def message(self) -> Optional[pulumi.Input[builtins.str]]:
1319
+ """
1320
+ (Output)
1321
+ A developer-facing error message, which should be in English. Any
1322
+ user-facing error message should be localized and sent in the
1323
+ google.rpc.Status.details field, or localized by the client.
1324
+ """
1325
+ return pulumi.get(self, "message")
1326
+
1327
+ @message.setter
1328
+ def message(self, value: Optional[pulumi.Input[builtins.str]]):
1329
+ pulumi.set(self, "message", value)
1330
+
1331
+
1332
+ if not MYPY:
1333
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgsDict(TypedDict):
1334
+ domain_name: NotRequired[pulumi.Input[builtins.str]]
1335
+ """
1336
+ (Output)
1337
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1338
+ """
1339
+ rdata: NotRequired[pulumi.Input[builtins.str]]
1340
+ """
1341
+ (Output)
1342
+ The data of the record. The meaning of the value depends on record type:
1343
+ - A and AAAA: IP addresses for the domain.
1344
+ - CNAME: Another domain to check for records.
1345
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1346
+ uses TXT records to determine which Firebase projects have
1347
+ permission to act on the domain's behalf.
1348
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1349
+ """
1350
+ relevant_states: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
1351
+ """
1352
+ (Output)
1353
+ An enum that indicates which state(s) this DNS record applies to. Populated
1354
+ for all records with an `ADD` or `REMOVE` required action.
1355
+ """
1356
+ required_action: NotRequired[pulumi.Input[builtins.str]]
1357
+ """
1358
+ (Output)
1359
+ An enum that indicates the a required action for this record. Populated
1360
+ when the record is part of a required change in a `DnsUpdates`
1361
+ `discovered` or `desired` record set.
1362
+ Possible values:
1363
+ NONE
1364
+ ADD
1365
+ REMOVE
1366
+ """
1367
+ type: NotRequired[pulumi.Input[builtins.str]]
1368
+ """
1369
+ (Output)
1370
+ The record's type, which determines what data the record contains.
1371
+ Possible values:
1372
+ A
1373
+ CNAME
1374
+ TXT
1375
+ AAAA
1376
+ CAA
1377
+ """
1378
+ elif False:
1379
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgsDict: TypeAlias = Mapping[str, Any]
1380
+
1381
+ @pulumi.input_type
1382
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDesiredRecordArgs:
1383
+ def __init__(__self__, *,
1384
+ domain_name: Optional[pulumi.Input[builtins.str]] = None,
1385
+ rdata: Optional[pulumi.Input[builtins.str]] = None,
1386
+ relevant_states: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1387
+ required_action: Optional[pulumi.Input[builtins.str]] = None,
1388
+ type: Optional[pulumi.Input[builtins.str]] = None):
1389
+ """
1390
+ :param pulumi.Input[builtins.str] domain_name: (Output)
1391
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1392
+ :param pulumi.Input[builtins.str] rdata: (Output)
1393
+ The data of the record. The meaning of the value depends on record type:
1394
+ - A and AAAA: IP addresses for the domain.
1395
+ - CNAME: Another domain to check for records.
1396
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1397
+ uses TXT records to determine which Firebase projects have
1398
+ permission to act on the domain's behalf.
1399
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1400
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] relevant_states: (Output)
1401
+ An enum that indicates which state(s) this DNS record applies to. Populated
1402
+ for all records with an `ADD` or `REMOVE` required action.
1403
+ :param pulumi.Input[builtins.str] required_action: (Output)
1404
+ An enum that indicates the a required action for this record. Populated
1405
+ when the record is part of a required change in a `DnsUpdates`
1406
+ `discovered` or `desired` record set.
1407
+ Possible values:
1408
+ NONE
1409
+ ADD
1410
+ REMOVE
1411
+ :param pulumi.Input[builtins.str] type: (Output)
1412
+ The record's type, which determines what data the record contains.
1413
+ Possible values:
1414
+ A
1415
+ CNAME
1416
+ TXT
1417
+ AAAA
1418
+ CAA
1419
+ """
1420
+ if domain_name is not None:
1421
+ pulumi.set(__self__, "domain_name", domain_name)
1422
+ if rdata is not None:
1423
+ pulumi.set(__self__, "rdata", rdata)
1424
+ if relevant_states is not None:
1425
+ pulumi.set(__self__, "relevant_states", relevant_states)
1426
+ if required_action is not None:
1427
+ pulumi.set(__self__, "required_action", required_action)
1428
+ if type is not None:
1429
+ pulumi.set(__self__, "type", type)
1430
+
1431
+ @property
1432
+ @pulumi.getter(name="domainName")
1433
+ def domain_name(self) -> Optional[pulumi.Input[builtins.str]]:
1434
+ """
1435
+ (Output)
1436
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1437
+ """
1438
+ return pulumi.get(self, "domain_name")
1439
+
1440
+ @domain_name.setter
1441
+ def domain_name(self, value: Optional[pulumi.Input[builtins.str]]):
1442
+ pulumi.set(self, "domain_name", value)
1443
+
1444
+ @property
1445
+ @pulumi.getter
1446
+ def rdata(self) -> Optional[pulumi.Input[builtins.str]]:
1447
+ """
1448
+ (Output)
1449
+ The data of the record. The meaning of the value depends on record type:
1450
+ - A and AAAA: IP addresses for the domain.
1451
+ - CNAME: Another domain to check for records.
1452
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1453
+ uses TXT records to determine which Firebase projects have
1454
+ permission to act on the domain's behalf.
1455
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1456
+ """
1457
+ return pulumi.get(self, "rdata")
1458
+
1459
+ @rdata.setter
1460
+ def rdata(self, value: Optional[pulumi.Input[builtins.str]]):
1461
+ pulumi.set(self, "rdata", value)
1462
+
1463
+ @property
1464
+ @pulumi.getter(name="relevantStates")
1465
+ def relevant_states(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
1466
+ """
1467
+ (Output)
1468
+ An enum that indicates which state(s) this DNS record applies to. Populated
1469
+ for all records with an `ADD` or `REMOVE` required action.
1470
+ """
1471
+ return pulumi.get(self, "relevant_states")
1472
+
1473
+ @relevant_states.setter
1474
+ def relevant_states(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
1475
+ pulumi.set(self, "relevant_states", value)
1476
+
1477
+ @property
1478
+ @pulumi.getter(name="requiredAction")
1479
+ def required_action(self) -> Optional[pulumi.Input[builtins.str]]:
1480
+ """
1481
+ (Output)
1482
+ An enum that indicates the a required action for this record. Populated
1483
+ when the record is part of a required change in a `DnsUpdates`
1484
+ `discovered` or `desired` record set.
1485
+ Possible values:
1486
+ NONE
1487
+ ADD
1488
+ REMOVE
1489
+ """
1490
+ return pulumi.get(self, "required_action")
1491
+
1492
+ @required_action.setter
1493
+ def required_action(self, value: Optional[pulumi.Input[builtins.str]]):
1494
+ pulumi.set(self, "required_action", value)
1495
+
1496
+ @property
1497
+ @pulumi.getter
1498
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
1499
+ """
1500
+ (Output)
1501
+ The record's type, which determines what data the record contains.
1502
+ Possible values:
1503
+ A
1504
+ CNAME
1505
+ TXT
1506
+ AAAA
1507
+ CAA
1508
+ """
1509
+ return pulumi.get(self, "type")
1510
+
1511
+ @type.setter
1512
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
1513
+ pulumi.set(self, "type", value)
1514
+
1515
+
1516
+ if not MYPY:
1517
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgsDict(TypedDict):
1518
+ check_errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgsDict']]]]
1519
+ """
1520
+ (Output)
1521
+ The `Status` type defines a logical error model that is suitable for
1522
+ different programming environments, including REST APIs and RPC APIs. It is
1523
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1524
+ three pieces of data: error code, error message, and error details.
1525
+ You can find out more about this error model and how to work with it in the
1526
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1527
+ Structure is documented below.
1528
+ """
1529
+ domain_name: NotRequired[pulumi.Input[builtins.str]]
1530
+ """
1531
+ (Output)
1532
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1533
+ """
1534
+ records: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgsDict']]]]
1535
+ """
1536
+ (Output)
1537
+ Records on the domain.
1538
+ Structure is documented below.
1539
+ """
1540
+ elif False:
1541
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgsDict: TypeAlias = Mapping[str, Any]
1542
+
1543
+ @pulumi.input_type
1544
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredArgs:
1545
+ def __init__(__self__, *,
1546
+ check_errors: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs']]]] = None,
1547
+ domain_name: Optional[pulumi.Input[builtins.str]] = None,
1548
+ records: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs']]]] = None):
1549
+ """
1550
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs']]] check_errors: (Output)
1551
+ The `Status` type defines a logical error model that is suitable for
1552
+ different programming environments, including REST APIs and RPC APIs. It is
1553
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1554
+ three pieces of data: error code, error message, and error details.
1555
+ You can find out more about this error model and how to work with it in the
1556
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1557
+ Structure is documented below.
1558
+ :param pulumi.Input[builtins.str] domain_name: (Output)
1559
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1560
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs']]] records: (Output)
1561
+ Records on the domain.
1562
+ Structure is documented below.
1563
+ """
1564
+ if check_errors is not None:
1565
+ pulumi.set(__self__, "check_errors", check_errors)
1566
+ if domain_name is not None:
1567
+ pulumi.set(__self__, "domain_name", domain_name)
1568
+ if records is not None:
1569
+ pulumi.set(__self__, "records", records)
1570
+
1571
+ @property
1572
+ @pulumi.getter(name="checkErrors")
1573
+ def check_errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs']]]]:
1574
+ """
1575
+ (Output)
1576
+ The `Status` type defines a logical error model that is suitable for
1577
+ different programming environments, including REST APIs and RPC APIs. It is
1578
+ used by [gRPC](https://github.com/grpc). Each `Status` message contains
1579
+ three pieces of data: error code, error message, and error details.
1580
+ You can find out more about this error model and how to work with it in the
1581
+ [API Design Guide](https://cloud.google.com/apis/design/errors).
1582
+ Structure is documented below.
1583
+ """
1584
+ return pulumi.get(self, "check_errors")
1585
+
1586
+ @check_errors.setter
1587
+ def check_errors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs']]]]):
1588
+ pulumi.set(self, "check_errors", value)
1589
+
1590
+ @property
1591
+ @pulumi.getter(name="domainName")
1592
+ def domain_name(self) -> Optional[pulumi.Input[builtins.str]]:
1593
+ """
1594
+ (Output)
1595
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1596
+ """
1597
+ return pulumi.get(self, "domain_name")
1598
+
1599
+ @domain_name.setter
1600
+ def domain_name(self, value: Optional[pulumi.Input[builtins.str]]):
1601
+ pulumi.set(self, "domain_name", value)
1602
+
1603
+ @property
1604
+ @pulumi.getter
1605
+ def records(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs']]]]:
1606
+ """
1607
+ (Output)
1608
+ Records on the domain.
1609
+ Structure is documented below.
1610
+ """
1611
+ return pulumi.get(self, "records")
1612
+
1613
+ @records.setter
1614
+ def records(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs']]]]):
1615
+ pulumi.set(self, "records", value)
1616
+
1617
+
1618
+ if not MYPY:
1619
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgsDict(TypedDict):
1620
+ code: NotRequired[pulumi.Input[builtins.int]]
1621
+ """
1622
+ (Output)
1623
+ The status code, which should be an enum value of google.rpc.Code.
1624
+ """
1625
+ details: NotRequired[pulumi.Input[builtins.str]]
1626
+ """
1627
+ (Output)
1628
+ A list of messages that carry the error details.
1629
+ """
1630
+ message: NotRequired[pulumi.Input[builtins.str]]
1631
+ """
1632
+ (Output)
1633
+ A developer-facing error message, which should be in English. Any
1634
+ user-facing error message should be localized and sent in the
1635
+ google.rpc.Status.details field, or localized by the client.
1636
+ """
1637
+ elif False:
1638
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgsDict: TypeAlias = Mapping[str, Any]
1639
+
1640
+ @pulumi.input_type
1641
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredCheckErrorArgs:
1642
+ def __init__(__self__, *,
1643
+ code: Optional[pulumi.Input[builtins.int]] = None,
1644
+ details: Optional[pulumi.Input[builtins.str]] = None,
1645
+ message: Optional[pulumi.Input[builtins.str]] = None):
1646
+ """
1647
+ :param pulumi.Input[builtins.int] code: (Output)
1648
+ The status code, which should be an enum value of google.rpc.Code.
1649
+ :param pulumi.Input[builtins.str] details: (Output)
1650
+ A list of messages that carry the error details.
1651
+ :param pulumi.Input[builtins.str] message: (Output)
1652
+ A developer-facing error message, which should be in English. Any
1653
+ user-facing error message should be localized and sent in the
1654
+ google.rpc.Status.details field, or localized by the client.
1655
+ """
1656
+ if code is not None:
1657
+ pulumi.set(__self__, "code", code)
1658
+ if details is not None:
1659
+ pulumi.set(__self__, "details", details)
1660
+ if message is not None:
1661
+ pulumi.set(__self__, "message", message)
1662
+
1663
+ @property
1664
+ @pulumi.getter
1665
+ def code(self) -> Optional[pulumi.Input[builtins.int]]:
1666
+ """
1667
+ (Output)
1668
+ The status code, which should be an enum value of google.rpc.Code.
1669
+ """
1670
+ return pulumi.get(self, "code")
1671
+
1672
+ @code.setter
1673
+ def code(self, value: Optional[pulumi.Input[builtins.int]]):
1674
+ pulumi.set(self, "code", value)
1675
+
1676
+ @property
1677
+ @pulumi.getter
1678
+ def details(self) -> Optional[pulumi.Input[builtins.str]]:
1679
+ """
1680
+ (Output)
1681
+ A list of messages that carry the error details.
1682
+ """
1683
+ return pulumi.get(self, "details")
1684
+
1685
+ @details.setter
1686
+ def details(self, value: Optional[pulumi.Input[builtins.str]]):
1687
+ pulumi.set(self, "details", value)
1688
+
1689
+ @property
1690
+ @pulumi.getter
1691
+ def message(self) -> Optional[pulumi.Input[builtins.str]]:
1692
+ """
1693
+ (Output)
1694
+ A developer-facing error message, which should be in English. Any
1695
+ user-facing error message should be localized and sent in the
1696
+ google.rpc.Status.details field, or localized by the client.
1697
+ """
1698
+ return pulumi.get(self, "message")
1699
+
1700
+ @message.setter
1701
+ def message(self, value: Optional[pulumi.Input[builtins.str]]):
1702
+ pulumi.set(self, "message", value)
1703
+
1704
+
1705
+ if not MYPY:
1706
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgsDict(TypedDict):
1707
+ domain_name: NotRequired[pulumi.Input[builtins.str]]
1708
+ """
1709
+ (Output)
1710
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1711
+ """
1712
+ rdata: NotRequired[pulumi.Input[builtins.str]]
1713
+ """
1714
+ (Output)
1715
+ The data of the record. The meaning of the value depends on record type:
1716
+ - A and AAAA: IP addresses for the domain.
1717
+ - CNAME: Another domain to check for records.
1718
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1719
+ uses TXT records to determine which Firebase projects have
1720
+ permission to act on the domain's behalf.
1721
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1722
+ """
1723
+ relevant_states: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
1724
+ """
1725
+ (Output)
1726
+ An enum that indicates which state(s) this DNS record applies to. Populated
1727
+ for all records with an `ADD` or `REMOVE` required action.
1728
+ """
1729
+ required_action: NotRequired[pulumi.Input[builtins.str]]
1730
+ """
1731
+ (Output)
1732
+ An enum that indicates the a required action for this record. Populated
1733
+ when the record is part of a required change in a `DnsUpdates`
1734
+ `discovered` or `desired` record set.
1735
+ Possible values:
1736
+ NONE
1737
+ ADD
1738
+ REMOVE
1739
+ """
1740
+ type: NotRequired[pulumi.Input[builtins.str]]
1741
+ """
1742
+ (Output)
1743
+ The record's type, which determines what data the record contains.
1744
+ Possible values:
1745
+ A
1746
+ CNAME
1747
+ TXT
1748
+ AAAA
1749
+ CAA
1750
+ """
1751
+ elif False:
1752
+ AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgsDict: TypeAlias = Mapping[str, Any]
1753
+
1754
+ @pulumi.input_type
1755
+ class AppHostingDomainCustomDomainStatusRequiredDnsUpdateDiscoveredRecordArgs:
1756
+ def __init__(__self__, *,
1757
+ domain_name: Optional[pulumi.Input[builtins.str]] = None,
1758
+ rdata: Optional[pulumi.Input[builtins.str]] = None,
1759
+ relevant_states: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1760
+ required_action: Optional[pulumi.Input[builtins.str]] = None,
1761
+ type: Optional[pulumi.Input[builtins.str]] = None):
1762
+ """
1763
+ :param pulumi.Input[builtins.str] domain_name: (Output)
1764
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1765
+ :param pulumi.Input[builtins.str] rdata: (Output)
1766
+ The data of the record. The meaning of the value depends on record type:
1767
+ - A and AAAA: IP addresses for the domain.
1768
+ - CNAME: Another domain to check for records.
1769
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1770
+ uses TXT records to determine which Firebase projects have
1771
+ permission to act on the domain's behalf.
1772
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1773
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] relevant_states: (Output)
1774
+ An enum that indicates which state(s) this DNS record applies to. Populated
1775
+ for all records with an `ADD` or `REMOVE` required action.
1776
+ :param pulumi.Input[builtins.str] required_action: (Output)
1777
+ An enum that indicates the a required action for this record. Populated
1778
+ when the record is part of a required change in a `DnsUpdates`
1779
+ `discovered` or `desired` record set.
1780
+ Possible values:
1781
+ NONE
1782
+ ADD
1783
+ REMOVE
1784
+ :param pulumi.Input[builtins.str] type: (Output)
1785
+ The record's type, which determines what data the record contains.
1786
+ Possible values:
1787
+ A
1788
+ CNAME
1789
+ TXT
1790
+ AAAA
1791
+ CAA
1792
+ """
1793
+ if domain_name is not None:
1794
+ pulumi.set(__self__, "domain_name", domain_name)
1795
+ if rdata is not None:
1796
+ pulumi.set(__self__, "rdata", rdata)
1797
+ if relevant_states is not None:
1798
+ pulumi.set(__self__, "relevant_states", relevant_states)
1799
+ if required_action is not None:
1800
+ pulumi.set(__self__, "required_action", required_action)
1801
+ if type is not None:
1802
+ pulumi.set(__self__, "type", type)
1803
+
1804
+ @property
1805
+ @pulumi.getter(name="domainName")
1806
+ def domain_name(self) -> Optional[pulumi.Input[builtins.str]]:
1807
+ """
1808
+ (Output)
1809
+ The domain the record pertains to, e.g. `foo.bar.com.`.
1810
+ """
1811
+ return pulumi.get(self, "domain_name")
1812
+
1813
+ @domain_name.setter
1814
+ def domain_name(self, value: Optional[pulumi.Input[builtins.str]]):
1815
+ pulumi.set(self, "domain_name", value)
1816
+
1817
+ @property
1818
+ @pulumi.getter
1819
+ def rdata(self) -> Optional[pulumi.Input[builtins.str]]:
1820
+ """
1821
+ (Output)
1822
+ The data of the record. The meaning of the value depends on record type:
1823
+ - A and AAAA: IP addresses for the domain.
1824
+ - CNAME: Another domain to check for records.
1825
+ - TXT: Arbitrary text strings associated with the domain. App Hosting
1826
+ uses TXT records to determine which Firebase projects have
1827
+ permission to act on the domain's behalf.
1828
+ - CAA: The record's flags, tag, and value, e.g. `0 issue "pki.goog"`.
1829
+ """
1830
+ return pulumi.get(self, "rdata")
1831
+
1832
+ @rdata.setter
1833
+ def rdata(self, value: Optional[pulumi.Input[builtins.str]]):
1834
+ pulumi.set(self, "rdata", value)
1835
+
1836
+ @property
1837
+ @pulumi.getter(name="relevantStates")
1838
+ def relevant_states(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
1839
+ """
1840
+ (Output)
1841
+ An enum that indicates which state(s) this DNS record applies to. Populated
1842
+ for all records with an `ADD` or `REMOVE` required action.
1843
+ """
1844
+ return pulumi.get(self, "relevant_states")
1845
+
1846
+ @relevant_states.setter
1847
+ def relevant_states(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
1848
+ pulumi.set(self, "relevant_states", value)
1849
+
1850
+ @property
1851
+ @pulumi.getter(name="requiredAction")
1852
+ def required_action(self) -> Optional[pulumi.Input[builtins.str]]:
1853
+ """
1854
+ (Output)
1855
+ An enum that indicates the a required action for this record. Populated
1856
+ when the record is part of a required change in a `DnsUpdates`
1857
+ `discovered` or `desired` record set.
1858
+ Possible values:
1859
+ NONE
1860
+ ADD
1861
+ REMOVE
1862
+ """
1863
+ return pulumi.get(self, "required_action")
1864
+
1865
+ @required_action.setter
1866
+ def required_action(self, value: Optional[pulumi.Input[builtins.str]]):
1867
+ pulumi.set(self, "required_action", value)
1868
+
1869
+ @property
1870
+ @pulumi.getter
1871
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
1872
+ """
1873
+ (Output)
1874
+ The record's type, which determines what data the record contains.
1875
+ Possible values:
1876
+ A
1877
+ CNAME
1878
+ TXT
1879
+ AAAA
1880
+ CAA
1881
+ """
1882
+ return pulumi.get(self, "type")
1883
+
1884
+ @type.setter
1885
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
1886
+ pulumi.set(self, "type", value)
1887
+
1888
+
1889
+ if not MYPY:
1890
+ class AppHostingDomainServeArgsDict(TypedDict):
1891
+ redirect: NotRequired[pulumi.Input['AppHostingDomainServeRedirectArgsDict']]
1892
+ """
1893
+ Specifies redirect behavior for a domain.
1894
+ Structure is documented below.
1895
+ """
1896
+ elif False:
1897
+ AppHostingDomainServeArgsDict: TypeAlias = Mapping[str, Any]
1898
+
1899
+ @pulumi.input_type
1900
+ class AppHostingDomainServeArgs:
1901
+ def __init__(__self__, *,
1902
+ redirect: Optional[pulumi.Input['AppHostingDomainServeRedirectArgs']] = None):
1903
+ """
1904
+ :param pulumi.Input['AppHostingDomainServeRedirectArgs'] redirect: Specifies redirect behavior for a domain.
1905
+ Structure is documented below.
1906
+ """
1907
+ if redirect is not None:
1908
+ pulumi.set(__self__, "redirect", redirect)
1909
+
1910
+ @property
1911
+ @pulumi.getter
1912
+ def redirect(self) -> Optional[pulumi.Input['AppHostingDomainServeRedirectArgs']]:
1913
+ """
1914
+ Specifies redirect behavior for a domain.
1915
+ Structure is documented below.
1916
+ """
1917
+ return pulumi.get(self, "redirect")
1918
+
1919
+ @redirect.setter
1920
+ def redirect(self, value: Optional[pulumi.Input['AppHostingDomainServeRedirectArgs']]):
1921
+ pulumi.set(self, "redirect", value)
1922
+
1923
+
1924
+ if not MYPY:
1925
+ class AppHostingDomainServeRedirectArgsDict(TypedDict):
1926
+ uri: pulumi.Input[builtins.str]
1927
+ """
1928
+ The URI of the redirect's intended destination. This URI will be
1929
+ prepended to the original request path. URI without a scheme are
1930
+ assumed to be HTTPS.
1931
+ """
1932
+ status: NotRequired[pulumi.Input[builtins.str]]
1933
+ """
1934
+ The status code to use in a redirect response. Must be a valid HTTP 3XX
1935
+ status code. Defaults to 302 if not present.
1936
+ """
1937
+ elif False:
1938
+ AppHostingDomainServeRedirectArgsDict: TypeAlias = Mapping[str, Any]
1939
+
1940
+ @pulumi.input_type
1941
+ class AppHostingDomainServeRedirectArgs:
1942
+ def __init__(__self__, *,
1943
+ uri: pulumi.Input[builtins.str],
1944
+ status: Optional[pulumi.Input[builtins.str]] = None):
1945
+ """
1946
+ :param pulumi.Input[builtins.str] uri: The URI of the redirect's intended destination. This URI will be
1947
+ prepended to the original request path. URI without a scheme are
1948
+ assumed to be HTTPS.
1949
+ :param pulumi.Input[builtins.str] status: The status code to use in a redirect response. Must be a valid HTTP 3XX
1950
+ status code. Defaults to 302 if not present.
1951
+ """
1952
+ pulumi.set(__self__, "uri", uri)
1953
+ if status is not None:
1954
+ pulumi.set(__self__, "status", status)
1955
+
1956
+ @property
1957
+ @pulumi.getter
1958
+ def uri(self) -> pulumi.Input[builtins.str]:
1959
+ """
1960
+ The URI of the redirect's intended destination. This URI will be
1961
+ prepended to the original request path. URI without a scheme are
1962
+ assumed to be HTTPS.
1963
+ """
1964
+ return pulumi.get(self, "uri")
1965
+
1966
+ @uri.setter
1967
+ def uri(self, value: pulumi.Input[builtins.str]):
1968
+ pulumi.set(self, "uri", value)
1969
+
1970
+ @property
1971
+ @pulumi.getter
1972
+ def status(self) -> Optional[pulumi.Input[builtins.str]]:
1973
+ """
1974
+ The status code to use in a redirect response. Must be a valid HTTP 3XX
1975
+ status code. Defaults to 302 if not present.
1976
+ """
1977
+ return pulumi.get(self, "status")
1978
+
1979
+ @status.setter
1980
+ def status(self, value: Optional[pulumi.Input[builtins.str]]):
1981
+ pulumi.set(self, "status", value)
1982
+
1983
+
1984
+ if not MYPY:
1985
+ class AppHostingTrafficCurrentArgsDict(TypedDict):
1986
+ splits: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficCurrentSplitArgsDict']]]]
1987
+ """
1988
+ (Output)
1989
+ A list of traffic splits that together represent where traffic is being routed.
1990
+ Structure is documented below.
1991
+ """
1992
+ elif False:
1993
+ AppHostingTrafficCurrentArgsDict: TypeAlias = Mapping[str, Any]
1994
+
1995
+ @pulumi.input_type
1996
+ class AppHostingTrafficCurrentArgs:
1997
+ def __init__(__self__, *,
1998
+ splits: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficCurrentSplitArgs']]]] = None):
1999
+ """
2000
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficCurrentSplitArgs']]] splits: (Output)
2001
+ A list of traffic splits that together represent where traffic is being routed.
2002
+ Structure is documented below.
2003
+ """
2004
+ if splits is not None:
2005
+ pulumi.set(__self__, "splits", splits)
2006
+
2007
+ @property
2008
+ @pulumi.getter
2009
+ def splits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficCurrentSplitArgs']]]]:
2010
+ """
2011
+ (Output)
2012
+ A list of traffic splits that together represent where traffic is being routed.
2013
+ Structure is documented below.
2014
+ """
2015
+ return pulumi.get(self, "splits")
2016
+
2017
+ @splits.setter
2018
+ def splits(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficCurrentSplitArgs']]]]):
2019
+ pulumi.set(self, "splits", value)
2020
+
2021
+
2022
+ if not MYPY:
2023
+ class AppHostingTrafficCurrentSplitArgsDict(TypedDict):
2024
+ build: NotRequired[pulumi.Input[builtins.str]]
2025
+ """
2026
+ The build that traffic is being routed to.
2027
+ """
2028
+ percent: NotRequired[pulumi.Input[builtins.int]]
2029
+ """
2030
+ The percentage of traffic to send to the build. Currently must be 100 or 0.
2031
+ """
2032
+ elif False:
2033
+ AppHostingTrafficCurrentSplitArgsDict: TypeAlias = Mapping[str, Any]
2034
+
2035
+ @pulumi.input_type
2036
+ class AppHostingTrafficCurrentSplitArgs:
2037
+ def __init__(__self__, *,
2038
+ build: Optional[pulumi.Input[builtins.str]] = None,
2039
+ percent: Optional[pulumi.Input[builtins.int]] = None):
2040
+ """
2041
+ :param pulumi.Input[builtins.str] build: The build that traffic is being routed to.
2042
+ :param pulumi.Input[builtins.int] percent: The percentage of traffic to send to the build. Currently must be 100 or 0.
2043
+ """
2044
+ if build is not None:
2045
+ pulumi.set(__self__, "build", build)
2046
+ if percent is not None:
2047
+ pulumi.set(__self__, "percent", percent)
2048
+
2049
+ @property
2050
+ @pulumi.getter
2051
+ def build(self) -> Optional[pulumi.Input[builtins.str]]:
2052
+ """
2053
+ The build that traffic is being routed to.
2054
+ """
2055
+ return pulumi.get(self, "build")
2056
+
2057
+ @build.setter
2058
+ def build(self, value: Optional[pulumi.Input[builtins.str]]):
2059
+ pulumi.set(self, "build", value)
2060
+
2061
+ @property
2062
+ @pulumi.getter
2063
+ def percent(self) -> Optional[pulumi.Input[builtins.int]]:
2064
+ """
2065
+ The percentage of traffic to send to the build. Currently must be 100 or 0.
2066
+ """
2067
+ return pulumi.get(self, "percent")
2068
+
2069
+ @percent.setter
2070
+ def percent(self, value: Optional[pulumi.Input[builtins.int]]):
2071
+ pulumi.set(self, "percent", value)
2072
+
2073
+
2074
+ if not MYPY:
2075
+ class AppHostingTrafficRolloutPolicyArgsDict(TypedDict):
2076
+ codebase_branch: NotRequired[pulumi.Input[builtins.str]]
2077
+ """
2078
+ Specifies a branch that triggers a new build to be started with this
2079
+ policy. If not set, no automatic rollouts will happen.
2080
+ """
2081
+ disabled: NotRequired[pulumi.Input[builtins.bool]]
2082
+ """
2083
+ A flag that, if true, prevents rollouts from being created via this RolloutPolicy.
2084
+ """
2085
+ disabled_time: NotRequired[pulumi.Input[builtins.str]]
2086
+ """
2087
+ (Output)
2088
+ If disabled is set, the time at which the rollouts were disabled.
2089
+ """
2090
+ elif False:
2091
+ AppHostingTrafficRolloutPolicyArgsDict: TypeAlias = Mapping[str, Any]
2092
+
2093
+ @pulumi.input_type
2094
+ class AppHostingTrafficRolloutPolicyArgs:
2095
+ def __init__(__self__, *,
2096
+ codebase_branch: Optional[pulumi.Input[builtins.str]] = None,
2097
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
2098
+ disabled_time: Optional[pulumi.Input[builtins.str]] = None):
2099
+ """
2100
+ :param pulumi.Input[builtins.str] codebase_branch: Specifies a branch that triggers a new build to be started with this
2101
+ policy. If not set, no automatic rollouts will happen.
2102
+ :param pulumi.Input[builtins.bool] disabled: A flag that, if true, prevents rollouts from being created via this RolloutPolicy.
2103
+ :param pulumi.Input[builtins.str] disabled_time: (Output)
2104
+ If disabled is set, the time at which the rollouts were disabled.
2105
+ """
2106
+ if codebase_branch is not None:
2107
+ pulumi.set(__self__, "codebase_branch", codebase_branch)
2108
+ if disabled is not None:
2109
+ pulumi.set(__self__, "disabled", disabled)
2110
+ if disabled_time is not None:
2111
+ pulumi.set(__self__, "disabled_time", disabled_time)
2112
+
2113
+ @property
2114
+ @pulumi.getter(name="codebaseBranch")
2115
+ def codebase_branch(self) -> Optional[pulumi.Input[builtins.str]]:
2116
+ """
2117
+ Specifies a branch that triggers a new build to be started with this
2118
+ policy. If not set, no automatic rollouts will happen.
2119
+ """
2120
+ return pulumi.get(self, "codebase_branch")
2121
+
2122
+ @codebase_branch.setter
2123
+ def codebase_branch(self, value: Optional[pulumi.Input[builtins.str]]):
2124
+ pulumi.set(self, "codebase_branch", value)
2125
+
2126
+ @property
2127
+ @pulumi.getter
2128
+ def disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
2129
+ """
2130
+ A flag that, if true, prevents rollouts from being created via this RolloutPolicy.
2131
+ """
2132
+ return pulumi.get(self, "disabled")
2133
+
2134
+ @disabled.setter
2135
+ def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
2136
+ pulumi.set(self, "disabled", value)
2137
+
2138
+ @property
2139
+ @pulumi.getter(name="disabledTime")
2140
+ def disabled_time(self) -> Optional[pulumi.Input[builtins.str]]:
2141
+ """
2142
+ (Output)
2143
+ If disabled is set, the time at which the rollouts were disabled.
2144
+ """
2145
+ return pulumi.get(self, "disabled_time")
2146
+
2147
+ @disabled_time.setter
2148
+ def disabled_time(self, value: Optional[pulumi.Input[builtins.str]]):
2149
+ pulumi.set(self, "disabled_time", value)
2150
+
2151
+
2152
+ if not MYPY:
2153
+ class AppHostingTrafficTargetArgsDict(TypedDict):
2154
+ splits: pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficTargetSplitArgsDict']]]
2155
+ """
2156
+ A list of traffic splits that together represent where traffic is being routed.
2157
+ Structure is documented below.
2158
+ """
2159
+ elif False:
2160
+ AppHostingTrafficTargetArgsDict: TypeAlias = Mapping[str, Any]
2161
+
2162
+ @pulumi.input_type
2163
+ class AppHostingTrafficTargetArgs:
2164
+ def __init__(__self__, *,
2165
+ splits: pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficTargetSplitArgs']]]):
2166
+ """
2167
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficTargetSplitArgs']]] splits: A list of traffic splits that together represent where traffic is being routed.
2168
+ Structure is documented below.
2169
+ """
2170
+ pulumi.set(__self__, "splits", splits)
2171
+
2172
+ @property
2173
+ @pulumi.getter
2174
+ def splits(self) -> pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficTargetSplitArgs']]]:
2175
+ """
2176
+ A list of traffic splits that together represent where traffic is being routed.
2177
+ Structure is documented below.
2178
+ """
2179
+ return pulumi.get(self, "splits")
2180
+
2181
+ @splits.setter
2182
+ def splits(self, value: pulumi.Input[Sequence[pulumi.Input['AppHostingTrafficTargetSplitArgs']]]):
2183
+ pulumi.set(self, "splits", value)
2184
+
2185
+
2186
+ if not MYPY:
2187
+ class AppHostingTrafficTargetSplitArgsDict(TypedDict):
2188
+ build: pulumi.Input[builtins.str]
2189
+ """
2190
+ The build that traffic is being routed to.
2191
+ """
2192
+ percent: pulumi.Input[builtins.int]
2193
+ """
2194
+ The percentage of traffic to send to the build. Currently must be 100 or 0.
2195
+ """
2196
+ elif False:
2197
+ AppHostingTrafficTargetSplitArgsDict: TypeAlias = Mapping[str, Any]
2198
+
2199
+ @pulumi.input_type
2200
+ class AppHostingTrafficTargetSplitArgs:
2201
+ def __init__(__self__, *,
2202
+ build: pulumi.Input[builtins.str],
2203
+ percent: pulumi.Input[builtins.int]):
2204
+ """
2205
+ :param pulumi.Input[builtins.str] build: The build that traffic is being routed to.
2206
+ :param pulumi.Input[builtins.int] percent: The percentage of traffic to send to the build. Currently must be 100 or 0.
2207
+ """
2208
+ pulumi.set(__self__, "build", build)
2209
+ pulumi.set(__self__, "percent", percent)
2210
+
2211
+ @property
2212
+ @pulumi.getter
2213
+ def build(self) -> pulumi.Input[builtins.str]:
2214
+ """
2215
+ The build that traffic is being routed to.
2216
+ """
2217
+ return pulumi.get(self, "build")
2218
+
2219
+ @build.setter
2220
+ def build(self, value: pulumi.Input[builtins.str]):
2221
+ pulumi.set(self, "build", value)
2222
+
2223
+ @property
2224
+ @pulumi.getter
2225
+ def percent(self) -> pulumi.Input[builtins.int]:
2226
+ """
2227
+ The percentage of traffic to send to the build. Currently must be 100 or 0.
2228
+ """
2229
+ return pulumi.get(self, "percent")
2230
+
2231
+ @percent.setter
2232
+ def percent(self, value: pulumi.Input[builtins.int]):
2233
+ pulumi.set(self, "percent", value)
2234
+
2235
+
709
2236
  if not MYPY:
710
2237
  class ExtensionsInstanceConfigArgsDict(TypedDict):
711
2238
  extension_ref: pulumi.Input[builtins.str]