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
@@ -221,6 +221,10 @@ __all__ = [
221
221
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubCondition',
222
222
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressions',
223
223
  'PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition',
224
+ 'PreventionDiscoveryConfigActionTagResources',
225
+ 'PreventionDiscoveryConfigActionTagResourcesTagCondition',
226
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScore',
227
+ 'PreventionDiscoveryConfigActionTagResourcesTagConditionTag',
224
228
  'PreventionDiscoveryConfigError',
225
229
  'PreventionDiscoveryConfigErrorDetails',
226
230
  'PreventionDiscoveryConfigOrgConfig',
@@ -228,6 +232,7 @@ __all__ = [
228
232
  'PreventionDiscoveryConfigTarget',
229
233
  'PreventionDiscoveryConfigTargetBigQueryTarget',
230
234
  'PreventionDiscoveryConfigTargetBigQueryTargetCadence',
235
+ 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence',
231
236
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence',
232
237
  'PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadence',
233
238
  'PreventionDiscoveryConfigTargetBigQueryTargetConditions',
@@ -250,6 +255,7 @@ __all__ = [
250
255
  'PreventionDiscoveryConfigTargetCloudSqlTargetFilterDatabaseResourceReference',
251
256
  'PreventionDiscoveryConfigTargetCloudSqlTargetFilterOthers',
252
257
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadence',
258
+ 'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadence',
253
259
  'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadence',
254
260
  'PreventionDiscoveryConfigTargetCloudStorageTarget',
255
261
  'PreventionDiscoveryConfigTargetCloudStorageTargetConditions',
@@ -11231,6 +11237,8 @@ class PreventionDiscoveryConfigAction(dict):
11231
11237
  suggest = "export_data"
11232
11238
  elif key == "pubSubNotification":
11233
11239
  suggest = "pub_sub_notification"
11240
+ elif key == "tagResources":
11241
+ suggest = "tag_resources"
11234
11242
 
11235
11243
  if suggest:
11236
11244
  pulumi.log.warn(f"Key '{key}' not found in PreventionDiscoveryConfigAction. Access the value via the '{suggest}' property getter instead.")
@@ -11245,17 +11253,22 @@ class PreventionDiscoveryConfigAction(dict):
11245
11253
 
11246
11254
  def __init__(__self__, *,
11247
11255
  export_data: Optional['outputs.PreventionDiscoveryConfigActionExportData'] = None,
11248
- pub_sub_notification: Optional['outputs.PreventionDiscoveryConfigActionPubSubNotification'] = None):
11256
+ pub_sub_notification: Optional['outputs.PreventionDiscoveryConfigActionPubSubNotification'] = None,
11257
+ tag_resources: Optional['outputs.PreventionDiscoveryConfigActionTagResources'] = None):
11249
11258
  """
11250
11259
  :param 'PreventionDiscoveryConfigActionExportDataArgs' export_data: Export data profiles into a provided location
11251
11260
  Structure is documented below.
11252
11261
  :param 'PreventionDiscoveryConfigActionPubSubNotificationArgs' pub_sub_notification: Publish a message into the Pub/Sub topic.
11253
11262
  Structure is documented below.
11263
+ :param 'PreventionDiscoveryConfigActionTagResourcesArgs' tag_resources: Publish a message into the Pub/Sub topic.
11264
+ Structure is documented below.
11254
11265
  """
11255
11266
  if export_data is not None:
11256
11267
  pulumi.set(__self__, "export_data", export_data)
11257
11268
  if pub_sub_notification is not None:
11258
11269
  pulumi.set(__self__, "pub_sub_notification", pub_sub_notification)
11270
+ if tag_resources is not None:
11271
+ pulumi.set(__self__, "tag_resources", tag_resources)
11259
11272
 
11260
11273
  @property
11261
11274
  @pulumi.getter(name="exportData")
@@ -11275,6 +11288,15 @@ class PreventionDiscoveryConfigAction(dict):
11275
11288
  """
11276
11289
  return pulumi.get(self, "pub_sub_notification")
11277
11290
 
11291
+ @property
11292
+ @pulumi.getter(name="tagResources")
11293
+ def tag_resources(self) -> Optional['outputs.PreventionDiscoveryConfigActionTagResources']:
11294
+ """
11295
+ Publish a message into the Pub/Sub topic.
11296
+ Structure is documented below.
11297
+ """
11298
+ return pulumi.get(self, "tag_resources")
11299
+
11278
11300
 
11279
11301
  @pulumi.output_type
11280
11302
  class PreventionDiscoveryConfigActionExportData(dict):
@@ -11585,6 +11607,182 @@ class PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpression
11585
11607
  return pulumi.get(self, "minimum_sensitivity_score")
11586
11608
 
11587
11609
 
11610
+ @pulumi.output_type
11611
+ class PreventionDiscoveryConfigActionTagResources(dict):
11612
+ @staticmethod
11613
+ def __key_warning(key: str):
11614
+ suggest = None
11615
+ if key == "lowerDataRiskToLow":
11616
+ suggest = "lower_data_risk_to_low"
11617
+ elif key == "profileGenerationsToTags":
11618
+ suggest = "profile_generations_to_tags"
11619
+ elif key == "tagConditions":
11620
+ suggest = "tag_conditions"
11621
+
11622
+ if suggest:
11623
+ pulumi.log.warn(f"Key '{key}' not found in PreventionDiscoveryConfigActionTagResources. Access the value via the '{suggest}' property getter instead.")
11624
+
11625
+ def __getitem__(self, key: str) -> Any:
11626
+ PreventionDiscoveryConfigActionTagResources.__key_warning(key)
11627
+ return super().__getitem__(key)
11628
+
11629
+ def get(self, key: str, default = None) -> Any:
11630
+ PreventionDiscoveryConfigActionTagResources.__key_warning(key)
11631
+ return super().get(key, default)
11632
+
11633
+ def __init__(__self__, *,
11634
+ lower_data_risk_to_low: Optional[bool] = None,
11635
+ profile_generations_to_tags: Optional[Sequence[str]] = None,
11636
+ tag_conditions: Optional[Sequence['outputs.PreventionDiscoveryConfigActionTagResourcesTagCondition']] = None):
11637
+ """
11638
+ :param bool lower_data_risk_to_low: Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles.
11639
+ :param Sequence[str] profile_generations_to_tags: The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`.
11640
+ Each value may be one of: `PROFILE_GENERATION_NEW`, `PROFILE_GENERATION_UPDATE`.
11641
+ :param Sequence['PreventionDiscoveryConfigActionTagResourcesTagConditionArgs'] tag_conditions: The tags to associate with different conditions.
11642
+ Structure is documented below.
11643
+ """
11644
+ if lower_data_risk_to_low is not None:
11645
+ pulumi.set(__self__, "lower_data_risk_to_low", lower_data_risk_to_low)
11646
+ if profile_generations_to_tags is not None:
11647
+ pulumi.set(__self__, "profile_generations_to_tags", profile_generations_to_tags)
11648
+ if tag_conditions is not None:
11649
+ pulumi.set(__self__, "tag_conditions", tag_conditions)
11650
+
11651
+ @property
11652
+ @pulumi.getter(name="lowerDataRiskToLow")
11653
+ def lower_data_risk_to_low(self) -> Optional[bool]:
11654
+ """
11655
+ Whether applying a tag to a resource should lower the risk of the profile for that resource. For example, in conjunction with an [IAM deny policy](https://cloud.google.com/iam/docs/deny-overview), you can deny all principals a permission if a tag value is present, mitigating the risk of the resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles.
11656
+ """
11657
+ return pulumi.get(self, "lower_data_risk_to_low")
11658
+
11659
+ @property
11660
+ @pulumi.getter(name="profileGenerationsToTags")
11661
+ def profile_generations_to_tags(self) -> Optional[Sequence[str]]:
11662
+ """
11663
+ The profile generations for which the tag should be attached to resources. If you attach a tag to only new profiles, then if the sensitivity score of a profile subsequently changes, its tag doesn't change. By default, this field includes only new profiles. To include both new and updated profiles for tagging, this field should explicitly include both `PROFILE_GENERATION_NEW` and `PROFILE_GENERATION_UPDATE`.
11664
+ Each value may be one of: `PROFILE_GENERATION_NEW`, `PROFILE_GENERATION_UPDATE`.
11665
+ """
11666
+ return pulumi.get(self, "profile_generations_to_tags")
11667
+
11668
+ @property
11669
+ @pulumi.getter(name="tagConditions")
11670
+ def tag_conditions(self) -> Optional[Sequence['outputs.PreventionDiscoveryConfigActionTagResourcesTagCondition']]:
11671
+ """
11672
+ The tags to associate with different conditions.
11673
+ Structure is documented below.
11674
+ """
11675
+ return pulumi.get(self, "tag_conditions")
11676
+
11677
+
11678
+ @pulumi.output_type
11679
+ class PreventionDiscoveryConfigActionTagResourcesTagCondition(dict):
11680
+ @staticmethod
11681
+ def __key_warning(key: str):
11682
+ suggest = None
11683
+ if key == "sensitivityScore":
11684
+ suggest = "sensitivity_score"
11685
+
11686
+ if suggest:
11687
+ pulumi.log.warn(f"Key '{key}' not found in PreventionDiscoveryConfigActionTagResourcesTagCondition. Access the value via the '{suggest}' property getter instead.")
11688
+
11689
+ def __getitem__(self, key: str) -> Any:
11690
+ PreventionDiscoveryConfigActionTagResourcesTagCondition.__key_warning(key)
11691
+ return super().__getitem__(key)
11692
+
11693
+ def get(self, key: str, default = None) -> Any:
11694
+ PreventionDiscoveryConfigActionTagResourcesTagCondition.__key_warning(key)
11695
+ return super().get(key, default)
11696
+
11697
+ def __init__(__self__, *,
11698
+ sensitivity_score: Optional['outputs.PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScore'] = None,
11699
+ tag: Optional['outputs.PreventionDiscoveryConfigActionTagResourcesTagConditionTag'] = None):
11700
+ """
11701
+ :param 'PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScoreArgs' sensitivity_score: Conditions attaching the tag to a resource on its profile having this sensitivity score.
11702
+ Structure is documented below.
11703
+ :param 'PreventionDiscoveryConfigActionTagResourcesTagConditionTagArgs' tag: The tag value to attach to resources.
11704
+ Structure is documented below.
11705
+ """
11706
+ if sensitivity_score is not None:
11707
+ pulumi.set(__self__, "sensitivity_score", sensitivity_score)
11708
+ if tag is not None:
11709
+ pulumi.set(__self__, "tag", tag)
11710
+
11711
+ @property
11712
+ @pulumi.getter(name="sensitivityScore")
11713
+ def sensitivity_score(self) -> Optional['outputs.PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScore']:
11714
+ """
11715
+ Conditions attaching the tag to a resource on its profile having this sensitivity score.
11716
+ Structure is documented below.
11717
+ """
11718
+ return pulumi.get(self, "sensitivity_score")
11719
+
11720
+ @property
11721
+ @pulumi.getter
11722
+ def tag(self) -> Optional['outputs.PreventionDiscoveryConfigActionTagResourcesTagConditionTag']:
11723
+ """
11724
+ The tag value to attach to resources.
11725
+ Structure is documented below.
11726
+ """
11727
+ return pulumi.get(self, "tag")
11728
+
11729
+
11730
+ @pulumi.output_type
11731
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionSensitivityScore(dict):
11732
+ def __init__(__self__, *,
11733
+ score: str):
11734
+ """
11735
+ :param str score: The sensitivity score applied to the resource.
11736
+ Possible values are: `SENSITIVITY_LOW`, `SENSITIVITY_MODERATE`, `SENSITIVITY_HIGH`.
11737
+ """
11738
+ pulumi.set(__self__, "score", score)
11739
+
11740
+ @property
11741
+ @pulumi.getter
11742
+ def score(self) -> str:
11743
+ """
11744
+ The sensitivity score applied to the resource.
11745
+ Possible values are: `SENSITIVITY_LOW`, `SENSITIVITY_MODERATE`, `SENSITIVITY_HIGH`.
11746
+ """
11747
+ return pulumi.get(self, "score")
11748
+
11749
+
11750
+ @pulumi.output_type
11751
+ class PreventionDiscoveryConfigActionTagResourcesTagConditionTag(dict):
11752
+ @staticmethod
11753
+ def __key_warning(key: str):
11754
+ suggest = None
11755
+ if key == "namespacedValue":
11756
+ suggest = "namespaced_value"
11757
+
11758
+ if suggest:
11759
+ pulumi.log.warn(f"Key '{key}' not found in PreventionDiscoveryConfigActionTagResourcesTagConditionTag. Access the value via the '{suggest}' property getter instead.")
11760
+
11761
+ def __getitem__(self, key: str) -> Any:
11762
+ PreventionDiscoveryConfigActionTagResourcesTagConditionTag.__key_warning(key)
11763
+ return super().__getitem__(key)
11764
+
11765
+ def get(self, key: str, default = None) -> Any:
11766
+ PreventionDiscoveryConfigActionTagResourcesTagConditionTag.__key_warning(key)
11767
+ return super().get(key, default)
11768
+
11769
+ def __init__(__self__, *,
11770
+ namespaced_value: Optional[str] = None):
11771
+ """
11772
+ :param str namespaced_value: The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod".
11773
+ """
11774
+ if namespaced_value is not None:
11775
+ pulumi.set(__self__, "namespaced_value", namespaced_value)
11776
+
11777
+ @property
11778
+ @pulumi.getter(name="namespacedValue")
11779
+ def namespaced_value(self) -> Optional[str]:
11780
+ """
11781
+ The namespaced name for the tag value to attach to resources. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod".
11782
+ """
11783
+ return pulumi.get(self, "namespaced_value")
11784
+
11785
+
11588
11786
  @pulumi.output_type
11589
11787
  class PreventionDiscoveryConfigError(dict):
11590
11788
  def __init__(__self__, *,
@@ -11909,7 +12107,9 @@ class PreventionDiscoveryConfigTargetBigQueryTargetCadence(dict):
11909
12107
  @staticmethod
11910
12108
  def __key_warning(key: str):
11911
12109
  suggest = None
11912
- if key == "schemaModifiedCadence":
12110
+ if key == "inspectTemplateModifiedCadence":
12111
+ suggest = "inspect_template_modified_cadence"
12112
+ elif key == "schemaModifiedCadence":
11913
12113
  suggest = "schema_modified_cadence"
11914
12114
  elif key == "tableModifiedCadence":
11915
12115
  suggest = "table_modified_cadence"
@@ -11926,19 +12126,33 @@ class PreventionDiscoveryConfigTargetBigQueryTargetCadence(dict):
11926
12126
  return super().get(key, default)
11927
12127
 
11928
12128
  def __init__(__self__, *,
12129
+ inspect_template_modified_cadence: Optional['outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence'] = None,
11929
12130
  schema_modified_cadence: Optional['outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence'] = None,
11930
12131
  table_modified_cadence: Optional['outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadence'] = None):
11931
12132
  """
12133
+ :param 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadenceArgs' inspect_template_modified_cadence: Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
12134
+ Structure is documented below.
11932
12135
  :param 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadenceArgs' schema_modified_cadence: Governs when to update data profiles when a schema is modified
11933
12136
  Structure is documented below.
11934
12137
  :param 'PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadenceArgs' table_modified_cadence: Governs when to update profile when a table is modified.
11935
12138
  Structure is documented below.
11936
12139
  """
12140
+ if inspect_template_modified_cadence is not None:
12141
+ pulumi.set(__self__, "inspect_template_modified_cadence", inspect_template_modified_cadence)
11937
12142
  if schema_modified_cadence is not None:
11938
12143
  pulumi.set(__self__, "schema_modified_cadence", schema_modified_cadence)
11939
12144
  if table_modified_cadence is not None:
11940
12145
  pulumi.set(__self__, "table_modified_cadence", table_modified_cadence)
11941
12146
 
12147
+ @property
12148
+ @pulumi.getter(name="inspectTemplateModifiedCadence")
12149
+ def inspect_template_modified_cadence(self) -> Optional['outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence']:
12150
+ """
12151
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
12152
+ Structure is documented below.
12153
+ """
12154
+ return pulumi.get(self, "inspect_template_modified_cadence")
12155
+
11942
12156
  @property
11943
12157
  @pulumi.getter(name="schemaModifiedCadence")
11944
12158
  def schema_modified_cadence(self) -> Optional['outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence']:
@@ -11958,6 +12172,27 @@ class PreventionDiscoveryConfigTargetBigQueryTargetCadence(dict):
11958
12172
  return pulumi.get(self, "table_modified_cadence")
11959
12173
 
11960
12174
 
12175
+ @pulumi.output_type
12176
+ class PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence(dict):
12177
+ def __init__(__self__, *,
12178
+ frequency: Optional[str] = None):
12179
+ """
12180
+ :param str frequency: How frequently data profiles can be updated when the template is modified. Defaults to never.
12181
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
12182
+ """
12183
+ if frequency is not None:
12184
+ pulumi.set(__self__, "frequency", frequency)
12185
+
12186
+ @property
12187
+ @pulumi.getter
12188
+ def frequency(self) -> Optional[str]:
12189
+ """
12190
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
12191
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
12192
+ """
12193
+ return pulumi.get(self, "frequency")
12194
+
12195
+
11961
12196
  @pulumi.output_type
11962
12197
  class PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence(dict):
11963
12198
  def __init__(__self__, *,
@@ -12847,7 +13082,9 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadence(dict):
12847
13082
  @staticmethod
12848
13083
  def __key_warning(key: str):
12849
13084
  suggest = None
12850
- if key == "refreshFrequency":
13085
+ if key == "inspectTemplateModifiedCadence":
13086
+ suggest = "inspect_template_modified_cadence"
13087
+ elif key == "refreshFrequency":
12851
13088
  suggest = "refresh_frequency"
12852
13089
  elif key == "schemaModifiedCadence":
12853
13090
  suggest = "schema_modified_cadence"
@@ -12864,19 +13101,33 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadence(dict):
12864
13101
  return super().get(key, default)
12865
13102
 
12866
13103
  def __init__(__self__, *,
13104
+ inspect_template_modified_cadence: Optional['outputs.PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadence'] = None,
12867
13105
  refresh_frequency: Optional[str] = None,
12868
13106
  schema_modified_cadence: Optional['outputs.PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadence'] = None):
12869
13107
  """
13108
+ :param 'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadenceArgs' inspect_template_modified_cadence: Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
13109
+ Structure is documented below.
12870
13110
  :param str refresh_frequency: Data changes in Cloud Storage can't trigger reprofiling. If you set this field, profiles are refreshed at this frequency regardless of whether the underlying buckets have changes. Defaults to never.
12871
13111
  Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
12872
13112
  :param 'PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadenceArgs' schema_modified_cadence: Governs when to update data profiles when a schema is modified
12873
13113
  Structure is documented below.
12874
13114
  """
13115
+ if inspect_template_modified_cadence is not None:
13116
+ pulumi.set(__self__, "inspect_template_modified_cadence", inspect_template_modified_cadence)
12875
13117
  if refresh_frequency is not None:
12876
13118
  pulumi.set(__self__, "refresh_frequency", refresh_frequency)
12877
13119
  if schema_modified_cadence is not None:
12878
13120
  pulumi.set(__self__, "schema_modified_cadence", schema_modified_cadence)
12879
13121
 
13122
+ @property
13123
+ @pulumi.getter(name="inspectTemplateModifiedCadence")
13124
+ def inspect_template_modified_cadence(self) -> Optional['outputs.PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadence']:
13125
+ """
13126
+ Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
13127
+ Structure is documented below.
13128
+ """
13129
+ return pulumi.get(self, "inspect_template_modified_cadence")
13130
+
12880
13131
  @property
12881
13132
  @pulumi.getter(name="refreshFrequency")
12882
13133
  def refresh_frequency(self) -> Optional[str]:
@@ -12896,6 +13147,26 @@ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadence(dict):
12896
13147
  return pulumi.get(self, "schema_modified_cadence")
12897
13148
 
12898
13149
 
13150
+ @pulumi.output_type
13151
+ class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceInspectTemplateModifiedCadence(dict):
13152
+ def __init__(__self__, *,
13153
+ frequency: str):
13154
+ """
13155
+ :param str frequency: How frequently data profiles can be updated when the template is modified. Defaults to never.
13156
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
13157
+ """
13158
+ pulumi.set(__self__, "frequency", frequency)
13159
+
13160
+ @property
13161
+ @pulumi.getter
13162
+ def frequency(self) -> str:
13163
+ """
13164
+ How frequently data profiles can be updated when the template is modified. Defaults to never.
13165
+ Possible values are: `UPDATE_FREQUENCY_NEVER`, `UPDATE_FREQUENCY_DAILY`, `UPDATE_FREQUENCY_MONTHLY`.
13166
+ """
13167
+ return pulumi.get(self, "frequency")
13168
+
13169
+
12899
13170
  @pulumi.output_type
12900
13171
  class PreventionDiscoveryConfigTargetCloudSqlTargetGenerationCadenceSchemaModifiedCadence(dict):
12901
13172
  def __init__(__self__, *,
@@ -10288,7 +10288,7 @@ if not MYPY:
10288
10288
  """
10289
10289
  staging_bucket: NotRequired[pulumi.Input[str]]
10290
10290
  """
10291
- A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10291
+ A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see [Dataproc staging and temp buckets](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10292
10292
  """
10293
10293
  temp_bucket: NotRequired[pulumi.Input[str]]
10294
10294
  """
@@ -10334,7 +10334,7 @@ class WorkflowTemplatePlacementManagedClusterConfigArgs:
10334
10334
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgs'] secondary_worker_config: The Compute Engine config settings for additional worker instances in a cluster.
10335
10335
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgs'] security_config: Security settings for the cluster.
10336
10336
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgs'] software_config: The config settings for software inside the cluster.
10337
- :param pulumi.Input[str] staging_bucket: A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10337
+ :param pulumi.Input[str] staging_bucket: A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see [Dataproc staging and temp buckets](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10338
10338
  :param pulumi.Input[str] temp_bucket: A Cloud Storage bucket used to store ephemeral cluster and jobs data, such as Spark and MapReduce history files. If you do not specify a temp bucket, Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's temp bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket. The default bucket has a TTL of 90 days, but you can use any TTL (or none) if you specify a bucket.
10339
10339
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgs'] worker_config: The Compute Engine config settings for additional worker instances in a cluster.
10340
10340
 
@@ -10519,7 +10519,7 @@ class WorkflowTemplatePlacementManagedClusterConfigArgs:
10519
10519
  @pulumi.getter(name="stagingBucket")
10520
10520
  def staging_bucket(self) -> Optional[pulumi.Input[str]]:
10521
10521
  """
10522
- A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10522
+ A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see [Dataproc staging and temp buckets](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
10523
10523
  """
10524
10524
  return pulumi.get(self, "staging_bucket")
10525
10525
 
@@ -10678,7 +10678,7 @@ if not MYPY:
10678
10678
  """
10679
10679
  metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
10680
10680
  """
10681
- The Compute Engine metadata entries to add to all instances (see (https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
10681
+ The Compute Engine metadata entries to add to all instances (see [About VM metadata](https://cloud.google.com/compute/docs/metadata/overview)).
10682
10682
  """
10683
10683
  network: NotRequired[pulumi.Input[str]]
10684
10684
  """
@@ -10714,7 +10714,7 @@ if not MYPY:
10714
10714
  """
10715
10715
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
10716
10716
  """
10717
- The Compute Engine tags to add to all instances (see (https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
10717
+ The Compute Engine tags to add to all instances (see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)).
10718
10718
  """
10719
10719
  zone: NotRequired[pulumi.Input[str]]
10720
10720
  """
@@ -10740,7 +10740,7 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
10740
10740
  zone: Optional[pulumi.Input[str]] = None):
10741
10741
  """
10742
10742
  :param pulumi.Input[bool] internal_ip_only: If true, all instances in the cluster will only have internal IP addresses. By default, clusters are not restricted to internal IP addresses, and will have ephemeral external IP addresses assigned to each instance. This `internal_ip_only` restriction can only be enabled for subnetwork enabled networks, and all off-cluster dependencies must be configured to be accessible without external IP addresses.
10743
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: The Compute Engine metadata entries to add to all instances (see (https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
10743
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: The Compute Engine metadata entries to add to all instances (see [About VM metadata](https://cloud.google.com/compute/docs/metadata/overview)).
10744
10744
  :param pulumi.Input[str] network: The Compute Engine network to be used for machine communications. Cannot be specified with subnetwork_uri. If neither `network_uri` nor `subnetwork_uri` is specified, the "default" network of the project is used, if it exists. Cannot be a "Custom Subnet Network" (see /regions/global/default` * `default`
10745
10745
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgs'] node_group_affinity: Node Group Affinity for sole-tenant clusters.
10746
10746
  :param pulumi.Input[str] private_ipv6_google_access: The type of IPv6 access for a cluster. Possible values: PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED, INHERIT_FROM_SUBNETWORK, OUTBOUND, BIDIRECTIONAL
@@ -10749,7 +10749,7 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
10749
10749
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_account_scopes: The URIs of service account scopes to be included in Compute Engine instances. The following base set of scopes is always included: * https://www.googleapis.com/auth/cloud.useraccounts.readonly * https://www.googleapis.com/auth/devstorage.read_write * https://www.googleapis.com/auth/logging.write If no scopes are specified, the following defaults are also provided: * https://www.googleapis.com/auth/bigquery * https://www.googleapis.com/auth/bigtable.admin.table * https://www.googleapis.com/auth/bigtable.data * https://www.googleapis.com/auth/devstorage.full_control
10750
10750
  :param pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgs'] shielded_instance_config: Shielded Instance Config for clusters using [Compute Engine Shielded VMs](https://cloud.google.com/security/shielded-cloud/shielded-vm). Structure defined below.
10751
10751
  :param pulumi.Input[str] subnetwork: The Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects//regions/us-east1/subnetworks/sub0` * `sub0`
10752
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The Compute Engine tags to add to all instances (see (https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
10752
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The Compute Engine tags to add to all instances (see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)).
10753
10753
  :param pulumi.Input[str] zone: The zone where the Compute Engine cluster will be located. On a create request, it is required in the "global" region. If omitted in a non-global Dataproc region, the service will pick a zone in the corresponding Compute Engine region. On a get request, zone will always be present. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/` * `us-central1-f`
10754
10754
  """
10755
10755
  if internal_ip_only is not None:
@@ -10793,7 +10793,7 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
10793
10793
  @pulumi.getter
10794
10794
  def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
10795
10795
  """
10796
- The Compute Engine metadata entries to add to all instances (see (https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
10796
+ The Compute Engine metadata entries to add to all instances (see [About VM metadata](https://cloud.google.com/compute/docs/metadata/overview)).
10797
10797
  """
10798
10798
  return pulumi.get(self, "metadata")
10799
10799
 
@@ -10901,7 +10901,7 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
10901
10901
  @pulumi.getter
10902
10902
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
10903
10903
  """
10904
- The Compute Engine tags to add to all instances (see (https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
10904
+ The Compute Engine tags to add to all instances (see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)).
10905
10905
  """
10906
10906
  return pulumi.get(self, "tags")
10907
10907
 
@@ -11189,7 +11189,7 @@ if not MYPY:
11189
11189
  """
11190
11190
  execution_timeout: NotRequired[pulumi.Input[str]]
11191
11191
  """
11192
- Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11192
+ Amount of time executable has to complete. Default is 10 minutes (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11193
11193
  """
11194
11194
  elif False:
11195
11195
  WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgsDict: TypeAlias = Mapping[str, Any]
@@ -11201,7 +11201,7 @@ class WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgs:
11201
11201
  execution_timeout: Optional[pulumi.Input[str]] = None):
11202
11202
  """
11203
11203
  :param pulumi.Input[str] executable_file: Required. Cloud Storage URI of executable file.
11204
- :param pulumi.Input[str] execution_timeout: Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11204
+ :param pulumi.Input[str] execution_timeout: Amount of time executable has to complete. Default is 10 minutes (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11205
11205
  """
11206
11206
  if executable_file is not None:
11207
11207
  pulumi.set(__self__, "executable_file", executable_file)
@@ -11224,7 +11224,7 @@ class WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgs:
11224
11224
  @pulumi.getter(name="executionTimeout")
11225
11225
  def execution_timeout(self) -> Optional[pulumi.Input[str]]:
11226
11226
  """
11227
- Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11227
+ Amount of time executable has to complete. Default is 10 minutes (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
11228
11228
  """
11229
11229
  return pulumi.get(self, "execution_timeout")
11230
11230
 
@@ -11237,19 +11237,19 @@ if not MYPY:
11237
11237
  class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict(TypedDict):
11238
11238
  auto_delete_time: NotRequired[pulumi.Input[str]]
11239
11239
  """
11240
- The time when cluster will be auto-deleted (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11240
+ The time when cluster will be auto-deleted (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11241
11241
  """
11242
11242
  auto_delete_ttl: NotRequired[pulumi.Input[str]]
11243
11243
  """
11244
- The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11244
+ The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11245
11245
  """
11246
11246
  idle_delete_ttl: NotRequired[pulumi.Input[str]]
11247
11247
  """
11248
- The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json).
11248
+ The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json).
11249
11249
  """
11250
11250
  idle_start_time: NotRequired[pulumi.Input[str]]
11251
11251
  """
11252
- Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11252
+ Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11253
11253
  """
11254
11254
  elif False:
11255
11255
  WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -11262,10 +11262,10 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
11262
11262
  idle_delete_ttl: Optional[pulumi.Input[str]] = None,
11263
11263
  idle_start_time: Optional[pulumi.Input[str]] = None):
11264
11264
  """
11265
- :param pulumi.Input[str] auto_delete_time: The time when cluster will be auto-deleted (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11266
- :param pulumi.Input[str] auto_delete_ttl: The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11267
- :param pulumi.Input[str] idle_delete_ttl: The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json).
11268
- :param pulumi.Input[str] idle_start_time: Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11265
+ :param pulumi.Input[str] auto_delete_time: The time when cluster will be auto-deleted (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11266
+ :param pulumi.Input[str] auto_delete_ttl: The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11267
+ :param pulumi.Input[str] idle_delete_ttl: The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json).
11268
+ :param pulumi.Input[str] idle_start_time: Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11269
11269
  """
11270
11270
  if auto_delete_time is not None:
11271
11271
  pulumi.set(__self__, "auto_delete_time", auto_delete_time)
@@ -11280,7 +11280,7 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
11280
11280
  @pulumi.getter(name="autoDeleteTime")
11281
11281
  def auto_delete_time(self) -> Optional[pulumi.Input[str]]:
11282
11282
  """
11283
- The time when cluster will be auto-deleted (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11283
+ The time when cluster will be auto-deleted (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11284
11284
  """
11285
11285
  return pulumi.get(self, "auto_delete_time")
11286
11286
 
@@ -11292,7 +11292,7 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
11292
11292
  @pulumi.getter(name="autoDeleteTtl")
11293
11293
  def auto_delete_ttl(self) -> Optional[pulumi.Input[str]]:
11294
11294
  """
11295
- The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11295
+ The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11296
11296
  """
11297
11297
  return pulumi.get(self, "auto_delete_ttl")
11298
11298
 
@@ -11304,7 +11304,7 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
11304
11304
  @pulumi.getter(name="idleDeleteTtl")
11305
11305
  def idle_delete_ttl(self) -> Optional[pulumi.Input[str]]:
11306
11306
  """
11307
- The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json).
11307
+ The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json).
11308
11308
  """
11309
11309
  return pulumi.get(self, "idle_delete_ttl")
11310
11310
 
@@ -11316,7 +11316,7 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
11316
11316
  @pulumi.getter(name="idleStartTime")
11317
11317
  def idle_start_time(self) -> Optional[pulumi.Input[str]]:
11318
11318
  """
11319
- Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
11319
+ Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)).
11320
11320
  """
11321
11321
  return pulumi.get(self, "idle_start_time")
11322
11322
 
@@ -11357,7 +11357,7 @@ if not MYPY:
11357
11357
  """
11358
11358
  min_cpu_platform: NotRequired[pulumi.Input[str]]
11359
11359
  """
11360
- Specifies the minimum cpu platform for the Instance Group. See (https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11360
+ Specifies the minimum cpu platform for the Instance Group. See [Minimum CPU platform](https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11361
11361
  """
11362
11362
  num_instances: NotRequired[pulumi.Input[int]]
11363
11363
  """
@@ -11391,7 +11391,7 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgs:
11391
11391
  :param pulumi.Input[bool] is_preemptible: Output only. Specifies that this instance group contains preemptible instances.
11392
11392
  :param pulumi.Input[str] machine_type: The Compute Engine machine type used for cluster instances. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/(https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the machine type resource, for example, `n1-standard-2`.
11393
11393
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs']]] managed_group_configs: Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.
11394
- :param pulumi.Input[str] min_cpu_platform: Specifies the minimum cpu platform for the Instance Group. See (https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11394
+ :param pulumi.Input[str] min_cpu_platform: Specifies the minimum cpu platform for the Instance Group. See [Minimum CPU platform](https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11395
11395
  :param pulumi.Input[int] num_instances: The number of VM instances in the instance group. For master instance groups, must be set to 1.
11396
11396
  :param pulumi.Input[str] preemptibility: Specifies the preemptibility of the instance group. The default value for master and worker groups is `NON_PREEMPTIBLE`. This default cannot be changed. The default value for secondary instances is `PREEMPTIBLE`. Possible values: PREEMPTIBILITY_UNSPECIFIED, NON_PREEMPTIBLE, PREEMPTIBLE
11397
11397
  """
@@ -11504,7 +11504,7 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgs:
11504
11504
  @pulumi.getter(name="minCpuPlatform")
11505
11505
  def min_cpu_platform(self) -> Optional[pulumi.Input[str]]:
11506
11506
  """
11507
- Specifies the minimum cpu platform for the Instance Group. See (https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11507
+ Specifies the minimum cpu platform for the Instance Group. See [Minimum CPU platform](https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
11508
11508
  """
11509
11509
  return pulumi.get(self, "min_cpu_platform")
11510
11510