pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712602552__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 (91) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +566 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/bigtable/_inputs.py +4 -4
  13. pulumi_gcp/bigtable/gc_policy.py +8 -0
  14. pulumi_gcp/bigtable/outputs.py +4 -4
  15. pulumi_gcp/billing/_inputs.py +4 -4
  16. pulumi_gcp/billing/outputs.py +4 -4
  17. pulumi_gcp/billing/project_info.py +4 -4
  18. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  19. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  20. pulumi_gcp/cloudquota/__init__.py +2 -0
  21. pulumi_gcp/cloudquota/_inputs.py +131 -0
  22. pulumi_gcp/cloudquota/outputs.py +118 -0
  23. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  24. pulumi_gcp/cloudrunv2/service.py +7 -7
  25. pulumi_gcp/composer/_inputs.py +14 -4
  26. pulumi_gcp/composer/outputs.py +22 -10
  27. pulumi_gcp/compute/_inputs.py +40 -44
  28. pulumi_gcp/compute/autoscaler.py +14 -14
  29. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  30. pulumi_gcp/compute/network_endpoint.py +8 -0
  31. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  32. pulumi_gcp/compute/outputs.py +62 -60
  33. pulumi_gcp/compute/region_autoscaler.py +14 -14
  34. pulumi_gcp/compute/region_backend_service.py +28 -0
  35. pulumi_gcp/compute/target_instance.py +4 -4
  36. pulumi_gcp/config/__init__.pyi +2 -0
  37. pulumi_gcp/config/vars.py +4 -0
  38. pulumi_gcp/container/_inputs.py +148 -16
  39. pulumi_gcp/container/outputs.py +148 -16
  40. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  41. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  42. pulumi_gcp/dataloss/_inputs.py +6 -6
  43. pulumi_gcp/dataloss/outputs.py +6 -6
  44. pulumi_gcp/dataplex/task.py +16 -16
  45. pulumi_gcp/dataproc/_inputs.py +85 -10
  46. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  47. pulumi_gcp/dataproc/metastore_service.py +120 -0
  48. pulumi_gcp/dataproc/outputs.py +142 -10
  49. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  50. pulumi_gcp/firestore/backup_schedule.py +14 -14
  51. pulumi_gcp/firestore/field.py +4 -4
  52. pulumi_gcp/gkehub/membership_binding.py +6 -6
  53. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  54. pulumi_gcp/gkehub/namespace.py +4 -4
  55. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  56. pulumi_gcp/iam/_inputs.py +76 -0
  57. pulumi_gcp/iam/outputs.py +76 -0
  58. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  59. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  60. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  61. pulumi_gcp/kms/_inputs.py +46 -0
  62. pulumi_gcp/kms/crypto_key.py +54 -0
  63. pulumi_gcp/kms/crypto_key_version.py +54 -0
  64. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  65. pulumi_gcp/kms/outputs.py +54 -0
  66. pulumi_gcp/logging/_inputs.py +8 -8
  67. pulumi_gcp/logging/metric.py +7 -7
  68. pulumi_gcp/logging/outputs.py +8 -8
  69. pulumi_gcp/monitoring/_inputs.py +2 -2
  70. pulumi_gcp/monitoring/outputs.py +2 -2
  71. pulumi_gcp/monitoring/slo.py +4 -4
  72. pulumi_gcp/networkservices/_inputs.py +6 -6
  73. pulumi_gcp/networkservices/outputs.py +6 -6
  74. pulumi_gcp/orgpolicy/policy.py +2 -2
  75. pulumi_gcp/provider.py +20 -0
  76. pulumi_gcp/pubsub/subscription.py +4 -4
  77. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  78. pulumi_gcp/sql/_inputs.py +20 -2
  79. pulumi_gcp/sql/database_instance.py +2 -2
  80. pulumi_gcp/sql/outputs.py +20 -2
  81. pulumi_gcp/storage/_inputs.py +2 -2
  82. pulumi_gcp/storage/outputs.py +2 -2
  83. pulumi_gcp/vertex/__init__.py +1 -0
  84. pulumi_gcp/vertex/_inputs.py +175 -8
  85. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  86. pulumi_gcp/vertex/outputs.py +202 -10
  87. pulumi_gcp/vpcaccess/connector.py +77 -28
  88. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  89. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +91 -83
  90. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  91. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
@@ -2571,7 +2571,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransfo
2571
2571
  :param pulumi.Input['PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigCryptoKeyArgs'] crypto_key: The key used by the encryption algorithm.
2572
2572
  Structure is documented below.
2573
2573
  :param pulumi.Input[str] custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
2574
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2574
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2575
2575
  :param pulumi.Input[int] radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
2576
2576
  :param pulumi.Input['PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs'] surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
2577
2577
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -2644,7 +2644,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransfo
2644
2644
  def custom_alphabet(self) -> Optional[pulumi.Input[str]]:
2645
2645
  """
2646
2646
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
2647
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2647
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2648
2648
  """
2649
2649
  return pulumi.get(self, "custom_alphabet")
2650
2650
 
@@ -6226,7 +6226,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
6226
6226
  * a string is encoded in UTF-8 format followed by a single byte of value 2
6227
6227
  Structure is documented below.
6228
6228
  :param pulumi.Input[str] custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
6229
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6229
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6230
6230
  :param pulumi.Input[int] radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
6231
6231
  :param pulumi.Input['PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs'] surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
6232
6232
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -6298,7 +6298,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
6298
6298
  def custom_alphabet(self) -> Optional[pulumi.Input[str]]:
6299
6299
  """
6300
6300
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
6301
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6301
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6302
6302
  """
6303
6303
  return pulumi.get(self, "custom_alphabet")
6304
6304
 
@@ -9165,7 +9165,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
9165
9165
  :param pulumi.Input['PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigCryptoKeyArgs'] crypto_key: The key used by the encryption algorithm.
9166
9166
  Structure is documented below.
9167
9167
  :param pulumi.Input[str] custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
9168
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9168
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9169
9169
  :param pulumi.Input[int] radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
9170
9170
  :param pulumi.Input['PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs'] surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
9171
9171
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -9238,7 +9238,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
9238
9238
  def custom_alphabet(self) -> Optional[pulumi.Input[str]]:
9239
9239
  """
9240
9240
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
9241
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9241
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9242
9242
  """
9243
9243
  return pulumi.get(self, "custom_alphabet")
9244
9244
 
@@ -2579,7 +2579,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransfo
2579
2579
  :param 'PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigCryptoKeyArgs' crypto_key: The key used by the encryption algorithm.
2580
2580
  Structure is documented below.
2581
2581
  :param str custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
2582
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2582
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2583
2583
  :param int radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
2584
2584
  :param 'PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs' surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
2585
2585
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -2640,7 +2640,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigInfoTypeTransformationsTransfo
2640
2640
  def custom_alphabet(self) -> Optional[str]:
2641
2641
  """
2642
2642
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
2643
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2643
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
2644
2644
  """
2645
2645
  return pulumi.get(self, "custom_alphabet")
2646
2646
 
@@ -6220,7 +6220,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
6220
6220
  * a string is encoded in UTF-8 format followed by a single byte of value 2
6221
6221
  Structure is documented below.
6222
6222
  :param str custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
6223
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6223
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6224
6224
  :param int radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
6225
6225
  :param 'PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationInfoTypeTransformationsTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs' surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
6226
6226
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -6280,7 +6280,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
6280
6280
  def custom_alphabet(self) -> Optional[str]:
6281
6281
  """
6282
6282
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
6283
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6283
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
6284
6284
  """
6285
6285
  return pulumi.get(self, "custom_alphabet")
6286
6286
 
@@ -9167,7 +9167,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
9167
9167
  :param 'PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigCryptoKeyArgs' crypto_key: The key used by the encryption algorithm.
9168
9168
  Structure is documented below.
9169
9169
  :param str custom_alphabet: This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
9170
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9170
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9171
9171
  :param int radix: The native way to select the alphabet. Must be in the range \\[2, 95\\]. Only one of this, `custom_alphabet` or `common_alphabet` must be specified.
9172
9172
  :param 'PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTransformationPrimitiveTransformationCryptoReplaceFfxFpeConfigSurrogateInfoTypeArgs' surrogate_info_type: The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info\\_type\\_name(surrogate\\_character\\_count):surrogate
9173
9173
  For example, if the name of custom infoType is 'MY\\_TOKEN\\_INFO\\_TYPE' and the surrogate is 'abc', the full replacement value will be: 'MY\\_TOKEN\\_INFO\\_TYPE(3):abc'
@@ -9228,7 +9228,7 @@ class PreventionDeidentifyTemplateDeidentifyConfigRecordTransformationsFieldTran
9228
9228
  def custom_alphabet(self) -> Optional[str]:
9229
9229
  """
9230
9230
  This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range \\[2, 95\\]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is:
9231
- ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%!^(MISSING)&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9231
+ ``0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&*()_-+={[}]|:;"'<,>.?/``. Only one of this, `common_alphabet` or `radix` must be specified.
9232
9232
  """
9233
9233
  return pulumi.get(self, "custom_alphabet")
9234
9234
 
@@ -588,11 +588,11 @@ class Task(pulumi.CustomResource):
588
588
 
589
589
  project = gcp.organizations.get_project()
590
590
  example = gcp.dataplex.Lake("example",
591
- name="tf-test-lake_85840",
591
+ name="tf-test-lake_60302",
592
592
  location="us-central1",
593
593
  project="my-project-name")
594
594
  example_task = gcp.dataplex.Task("example",
595
- task_id="tf-test-task_60302",
595
+ task_id="tf-test-task_22811",
596
596
  location="us-central1",
597
597
  lake=example.name,
598
598
  description="Test Task Basic",
@@ -628,15 +628,15 @@ class Task(pulumi.CustomResource):
628
628
 
629
629
  # VPC network
630
630
  default = gcp.compute.Network("default",
631
- name="tf-test-workstation-cluster_22811",
631
+ name="tf-test-workstation-cluster_91042",
632
632
  auto_create_subnetworks=True)
633
633
  project = gcp.organizations.get_project()
634
634
  example_spark = gcp.dataplex.Lake("example_spark",
635
- name="tf-test-lake_91042",
635
+ name="tf-test-lake_72490",
636
636
  location="us-central1",
637
637
  project="my-project-name")
638
638
  example_spark_task = gcp.dataplex.Task("example_spark",
639
- task_id="tf-test-task_72490",
639
+ task_id="tf-test-task_89605",
640
640
  location="us-central1",
641
641
  lake=example_spark.name,
642
642
  trigger_spec=gcp.dataplex.TaskTriggerSpecArgs(
@@ -686,15 +686,15 @@ class Task(pulumi.CustomResource):
686
686
 
687
687
  # VPC network
688
688
  default = gcp.compute.Network("default",
689
- name="tf-test-workstation-cluster_89605",
689
+ name="tf-test-workstation-cluster_56730",
690
690
  auto_create_subnetworks=True)
691
691
  project = gcp.organizations.get_project()
692
692
  example_notebook = gcp.dataplex.Lake("example_notebook",
693
- name="tf-test-lake_56730",
693
+ name="tf-test-lake_95154",
694
694
  location="us-central1",
695
695
  project="my-project-name")
696
696
  example_notebook_task = gcp.dataplex.Task("example_notebook",
697
- task_id="tf-test-task_95154",
697
+ task_id="tf-test-task_64336",
698
698
  location="us-central1",
699
699
  lake=example_notebook.name,
700
700
  trigger_spec=gcp.dataplex.TaskTriggerSpecArgs(
@@ -808,11 +808,11 @@ class Task(pulumi.CustomResource):
808
808
 
809
809
  project = gcp.organizations.get_project()
810
810
  example = gcp.dataplex.Lake("example",
811
- name="tf-test-lake_85840",
811
+ name="tf-test-lake_60302",
812
812
  location="us-central1",
813
813
  project="my-project-name")
814
814
  example_task = gcp.dataplex.Task("example",
815
- task_id="tf-test-task_60302",
815
+ task_id="tf-test-task_22811",
816
816
  location="us-central1",
817
817
  lake=example.name,
818
818
  description="Test Task Basic",
@@ -848,15 +848,15 @@ class Task(pulumi.CustomResource):
848
848
 
849
849
  # VPC network
850
850
  default = gcp.compute.Network("default",
851
- name="tf-test-workstation-cluster_22811",
851
+ name="tf-test-workstation-cluster_91042",
852
852
  auto_create_subnetworks=True)
853
853
  project = gcp.organizations.get_project()
854
854
  example_spark = gcp.dataplex.Lake("example_spark",
855
- name="tf-test-lake_91042",
855
+ name="tf-test-lake_72490",
856
856
  location="us-central1",
857
857
  project="my-project-name")
858
858
  example_spark_task = gcp.dataplex.Task("example_spark",
859
- task_id="tf-test-task_72490",
859
+ task_id="tf-test-task_89605",
860
860
  location="us-central1",
861
861
  lake=example_spark.name,
862
862
  trigger_spec=gcp.dataplex.TaskTriggerSpecArgs(
@@ -906,15 +906,15 @@ class Task(pulumi.CustomResource):
906
906
 
907
907
  # VPC network
908
908
  default = gcp.compute.Network("default",
909
- name="tf-test-workstation-cluster_89605",
909
+ name="tf-test-workstation-cluster_56730",
910
910
  auto_create_subnetworks=True)
911
911
  project = gcp.organizations.get_project()
912
912
  example_notebook = gcp.dataplex.Lake("example_notebook",
913
- name="tf-test-lake_56730",
913
+ name="tf-test-lake_95154",
914
914
  location="us-central1",
915
915
  project="my-project-name")
916
916
  example_notebook_task = gcp.dataplex.Task("example_notebook",
917
- task_id="tf-test-task_95154",
917
+ task_id="tf-test-task_64336",
918
918
  location="us-central1",
919
919
  lake=example_notebook.name,
920
920
  trigger_spec=gcp.dataplex.TaskTriggerSpecArgs(
@@ -96,6 +96,7 @@ __all__ = [
96
96
  'MetastoreServiceNetworkConfigArgs',
97
97
  'MetastoreServiceNetworkConfigConsumerArgs',
98
98
  'MetastoreServiceScalingConfigArgs',
99
+ 'MetastoreServiceScheduledBackupArgs',
99
100
  'MetastoreServiceTelemetryConfigArgs',
100
101
  'WorkflowTemplateJobArgs',
101
102
  'WorkflowTemplateJobHadoopJobArgs',
@@ -587,7 +588,9 @@ class ClusterClusterConfigArgs:
587
588
  Structure defined below.
588
589
  :param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]] auxiliary_node_groups: A Dataproc NodeGroup resource is a group of Dataproc cluster nodes that execute an assigned role.
589
590
  Structure defined below.
590
- :param pulumi.Input[str] bucket: The name of the cloud storage bucket ultimately used to house the staging data for the cluster. If staging_bucket is specified, it will contain this value, otherwise it will be the auto generated name.
591
+ :param pulumi.Input[str] bucket: The name of the cloud storage bucket ultimately used to house the staging data
592
+ for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
593
+ it will be the auto generated name.
591
594
  :param pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs'] dataproc_metric_config: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
592
595
  Structure defined below.
593
596
  :param pulumi.Input['ClusterClusterConfigEncryptionConfigArgs'] encryption_config: The Customer managed encryption keys settings for the cluster.
@@ -693,7 +696,9 @@ class ClusterClusterConfigArgs:
693
696
  @pulumi.getter
694
697
  def bucket(self) -> Optional[pulumi.Input[str]]:
695
698
  """
696
- The name of the cloud storage bucket ultimately used to house the staging data for the cluster. If staging_bucket is specified, it will contain this value, otherwise it will be the auto generated name.
699
+ The name of the cloud storage bucket ultimately used to house the staging data
700
+ for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
701
+ it will be the auto generated name.
697
702
  """
698
703
  return pulumi.get(self, "bucket")
699
704
 
@@ -4956,10 +4961,10 @@ class JobStatusArgs:
4956
4961
  state_start_time: Optional[pulumi.Input[str]] = None,
4957
4962
  substate: Optional[pulumi.Input[str]] = None):
4958
4963
  """
4959
- :param pulumi.Input[str] details: Output-only. Optional job state details, such as an error description if the state is ERROR
4960
- :param pulumi.Input[str] state: Output-only. A state message specifying the overall job state
4961
- :param pulumi.Input[str] state_start_time: Output-only. The time when this state was entered
4962
- :param pulumi.Input[str] substate: Output-only. Additional state information, which includes status reported by the agent
4964
+ :param pulumi.Input[str] details: Optional job state details, such as an error description if the state is ERROR.
4965
+ :param pulumi.Input[str] state: A state message specifying the overall job state.
4966
+ :param pulumi.Input[str] state_start_time: The time when this state was entered.
4967
+ :param pulumi.Input[str] substate: Additional state information, which includes status reported by the agent.
4963
4968
  """
4964
4969
  if details is not None:
4965
4970
  pulumi.set(__self__, "details", details)
@@ -4974,7 +4979,7 @@ class JobStatusArgs:
4974
4979
  @pulumi.getter
4975
4980
  def details(self) -> Optional[pulumi.Input[str]]:
4976
4981
  """
4977
- Output-only. Optional job state details, such as an error description if the state is ERROR
4982
+ Optional job state details, such as an error description if the state is ERROR.
4978
4983
  """
4979
4984
  return pulumi.get(self, "details")
4980
4985
 
@@ -4986,7 +4991,7 @@ class JobStatusArgs:
4986
4991
  @pulumi.getter
4987
4992
  def state(self) -> Optional[pulumi.Input[str]]:
4988
4993
  """
4989
- Output-only. A state message specifying the overall job state
4994
+ A state message specifying the overall job state.
4990
4995
  """
4991
4996
  return pulumi.get(self, "state")
4992
4997
 
@@ -4998,7 +5003,7 @@ class JobStatusArgs:
4998
5003
  @pulumi.getter(name="stateStartTime")
4999
5004
  def state_start_time(self) -> Optional[pulumi.Input[str]]:
5000
5005
  """
5001
- Output-only. The time when this state was entered
5006
+ The time when this state was entered.
5002
5007
  """
5003
5008
  return pulumi.get(self, "state_start_time")
5004
5009
 
@@ -5010,7 +5015,7 @@ class JobStatusArgs:
5010
5015
  @pulumi.getter
5011
5016
  def substate(self) -> Optional[pulumi.Input[str]]:
5012
5017
  """
5013
- Output-only. Additional state information, which includes status reported by the agent
5018
+ Additional state information, which includes status reported by the agent.
5014
5019
  """
5015
5020
  return pulumi.get(self, "substate")
5016
5021
 
@@ -5706,6 +5711,76 @@ class MetastoreServiceScalingConfigArgs:
5706
5711
  pulumi.set(self, "scaling_factor", value)
5707
5712
 
5708
5713
 
5714
+ @pulumi.input_type
5715
+ class MetastoreServiceScheduledBackupArgs:
5716
+ def __init__(__self__, *,
5717
+ backup_location: pulumi.Input[str],
5718
+ cron_schedule: Optional[pulumi.Input[str]] = None,
5719
+ enabled: Optional[pulumi.Input[bool]] = None,
5720
+ time_zone: Optional[pulumi.Input[str]] = None):
5721
+ """
5722
+ :param pulumi.Input[str] backup_location: A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
5723
+ :param pulumi.Input[str] cron_schedule: The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
5724
+ :param pulumi.Input[bool] enabled: Defines whether the scheduled backup is enabled. The default value is false.
5725
+ :param pulumi.Input[str] time_zone: Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
5726
+ """
5727
+ pulumi.set(__self__, "backup_location", backup_location)
5728
+ if cron_schedule is not None:
5729
+ pulumi.set(__self__, "cron_schedule", cron_schedule)
5730
+ if enabled is not None:
5731
+ pulumi.set(__self__, "enabled", enabled)
5732
+ if time_zone is not None:
5733
+ pulumi.set(__self__, "time_zone", time_zone)
5734
+
5735
+ @property
5736
+ @pulumi.getter(name="backupLocation")
5737
+ def backup_location(self) -> pulumi.Input[str]:
5738
+ """
5739
+ A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
5740
+ """
5741
+ return pulumi.get(self, "backup_location")
5742
+
5743
+ @backup_location.setter
5744
+ def backup_location(self, value: pulumi.Input[str]):
5745
+ pulumi.set(self, "backup_location", value)
5746
+
5747
+ @property
5748
+ @pulumi.getter(name="cronSchedule")
5749
+ def cron_schedule(self) -> Optional[pulumi.Input[str]]:
5750
+ """
5751
+ The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
5752
+ """
5753
+ return pulumi.get(self, "cron_schedule")
5754
+
5755
+ @cron_schedule.setter
5756
+ def cron_schedule(self, value: Optional[pulumi.Input[str]]):
5757
+ pulumi.set(self, "cron_schedule", value)
5758
+
5759
+ @property
5760
+ @pulumi.getter
5761
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
5762
+ """
5763
+ Defines whether the scheduled backup is enabled. The default value is false.
5764
+ """
5765
+ return pulumi.get(self, "enabled")
5766
+
5767
+ @enabled.setter
5768
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
5769
+ pulumi.set(self, "enabled", value)
5770
+
5771
+ @property
5772
+ @pulumi.getter(name="timeZone")
5773
+ def time_zone(self) -> Optional[pulumi.Input[str]]:
5774
+ """
5775
+ Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
5776
+ """
5777
+ return pulumi.get(self, "time_zone")
5778
+
5779
+ @time_zone.setter
5780
+ def time_zone(self, value: Optional[pulumi.Input[str]]):
5781
+ pulumi.set(self, "time_zone", value)
5782
+
5783
+
5709
5784
  @pulumi.input_type
5710
5785
  class MetastoreServiceTelemetryConfigArgs:
5711
5786
  def __init__(__self__, *,
@@ -22,7 +22,7 @@ class GetMetastoreServiceResult:
22
22
  """
23
23
  A collection of values returned by getMetastoreService.
24
24
  """
25
- def __init__(__self__, artifact_gcs_uri=None, database_type=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, service_id=None, state=None, state_message=None, telemetry_configs=None, tier=None, uid=None):
25
+ def __init__(__self__, artifact_gcs_uri=None, database_type=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, scheduled_backups=None, service_id=None, state=None, state_message=None, telemetry_configs=None, tier=None, uid=None):
26
26
  if artifact_gcs_uri and not isinstance(artifact_gcs_uri, str):
27
27
  raise TypeError("Expected argument 'artifact_gcs_uri' to be a str")
28
28
  pulumi.set(__self__, "artifact_gcs_uri", artifact_gcs_uri)
@@ -80,6 +80,9 @@ class GetMetastoreServiceResult:
80
80
  if scaling_configs and not isinstance(scaling_configs, list):
81
81
  raise TypeError("Expected argument 'scaling_configs' to be a list")
82
82
  pulumi.set(__self__, "scaling_configs", scaling_configs)
83
+ if scheduled_backups and not isinstance(scheduled_backups, list):
84
+ raise TypeError("Expected argument 'scheduled_backups' to be a list")
85
+ pulumi.set(__self__, "scheduled_backups", scheduled_backups)
83
86
  if service_id and not isinstance(service_id, str):
84
87
  raise TypeError("Expected argument 'service_id' to be a str")
85
88
  pulumi.set(__self__, "service_id", service_id)
@@ -197,6 +200,11 @@ class GetMetastoreServiceResult:
197
200
  def scaling_configs(self) -> Sequence['outputs.GetMetastoreServiceScalingConfigResult']:
198
201
  return pulumi.get(self, "scaling_configs")
199
202
 
203
+ @property
204
+ @pulumi.getter(name="scheduledBackups")
205
+ def scheduled_backups(self) -> Sequence['outputs.GetMetastoreServiceScheduledBackupResult']:
206
+ return pulumi.get(self, "scheduled_backups")
207
+
200
208
  @property
201
209
  @pulumi.getter(name="serviceId")
202
210
  def service_id(self) -> str:
@@ -253,6 +261,7 @@ class AwaitableGetMetastoreServiceResult(GetMetastoreServiceResult):
253
261
  pulumi_labels=self.pulumi_labels,
254
262
  release_channel=self.release_channel,
255
263
  scaling_configs=self.scaling_configs,
264
+ scheduled_backups=self.scheduled_backups,
256
265
  service_id=self.service_id,
257
266
  state=self.state,
258
267
  state_message=self.state_message,
@@ -305,6 +314,7 @@ def get_metastore_service(location: Optional[str] = None,
305
314
  pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
306
315
  release_channel=pulumi.get(__ret__, 'release_channel'),
307
316
  scaling_configs=pulumi.get(__ret__, 'scaling_configs'),
317
+ scheduled_backups=pulumi.get(__ret__, 'scheduled_backups'),
308
318
  service_id=pulumi.get(__ret__, 'service_id'),
309
319
  state=pulumi.get(__ret__, 'state'),
310
320
  state_message=pulumi.get(__ret__, 'state_message'),