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
@@ -52,7 +52,7 @@ class MetricArgs:
52
52
  Structure is documented below.
53
53
  :param pulumi.Input[str] name: The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
54
54
  Metric identifiers are limited to 100 characters and can include only the following
55
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
55
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
56
56
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
57
57
  of the name.
58
58
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -190,7 +190,7 @@ class MetricArgs:
190
190
  """
191
191
  The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
192
192
  Metric identifiers are limited to 100 characters and can include only the following
193
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
193
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
194
194
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
195
195
  of the name.
196
196
  """
@@ -271,7 +271,7 @@ class _MetricState:
271
271
  Structure is documented below.
272
272
  :param pulumi.Input[str] name: The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
273
273
  Metric identifiers are limited to 100 characters and can include only the following
274
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
274
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
275
275
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
276
276
  of the name.
277
277
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -410,7 +410,7 @@ class _MetricState:
410
410
  """
411
411
  The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
412
412
  Metric identifiers are limited to 100 characters and can include only the following
413
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
413
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
414
414
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
415
415
  of the name.
416
416
  """
@@ -642,7 +642,7 @@ class Metric(pulumi.CustomResource):
642
642
  Structure is documented below.
643
643
  :param pulumi.Input[str] name: The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
644
644
  Metric identifiers are limited to 100 characters and can include only the following
645
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
645
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
646
646
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
647
647
  of the name.
648
648
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -906,7 +906,7 @@ class Metric(pulumi.CustomResource):
906
906
  Structure is documented below.
907
907
  :param pulumi.Input[str] name: The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
908
908
  Metric identifiers are limited to 100 characters and can include only the following
909
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
909
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
910
910
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
911
911
  of the name.
912
912
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -1012,7 +1012,7 @@ class Metric(pulumi.CustomResource):
1012
1012
  """
1013
1013
  The client-assigned metric identifier. Examples - "error_count", "nginx/requests".
1014
1014
  Metric identifiers are limited to 100 characters and can include only the following
1015
- characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%!/(MISSING). The forward-slash
1015
+ characters A-Z, a-z, 0-9, and the special characters _-.,+!*',()%/. The forward-slash
1016
1016
  character (/) denotes a hierarchy of name pieces, and it cannot be the first character
1017
1017
  of the name.
1018
1018
  """
@@ -234,7 +234,7 @@ class BillingAccountSinkExclusion(dict):
234
234
  description: Optional[str] = None,
235
235
  disabled: Optional[bool] = None):
236
236
  """
237
- :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
237
+ :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
238
238
  write a filter.
239
239
  :param str name: A client-assigned identifier, such as `load-balancer-exclusion`. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
240
240
  :param str description: A description of this exclusion.
@@ -251,7 +251,7 @@ class BillingAccountSinkExclusion(dict):
251
251
  @pulumi.getter
252
252
  def filter(self) -> str:
253
253
  """
254
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
254
+ An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
255
255
  write a filter.
256
256
  """
257
257
  return pulumi.get(self, "filter")
@@ -477,7 +477,7 @@ class FolderSinkExclusion(dict):
477
477
  description: Optional[str] = None,
478
478
  disabled: Optional[bool] = None):
479
479
  """
480
- :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
480
+ :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
481
481
  write a filter.
482
482
  :param str name: A client-assigned identifier, such as `load-balancer-exclusion`. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
483
483
  :param str description: A description of this exclusion.
@@ -494,7 +494,7 @@ class FolderSinkExclusion(dict):
494
494
  @pulumi.getter
495
495
  def filter(self) -> str:
496
496
  """
497
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
497
+ An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
498
498
  write a filter.
499
499
  """
500
500
  return pulumi.get(self, "filter")
@@ -1149,7 +1149,7 @@ class OrganizationSinkExclusion(dict):
1149
1149
  description: Optional[str] = None,
1150
1150
  disabled: Optional[bool] = None):
1151
1151
  """
1152
- :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1152
+ :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1153
1153
  write a filter.
1154
1154
  :param str name: A client-assigned identifier, such as `load-balancer-exclusion`. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
1155
1155
  :param str description: A description of this exclusion.
@@ -1166,7 +1166,7 @@ class OrganizationSinkExclusion(dict):
1166
1166
  @pulumi.getter
1167
1167
  def filter(self) -> str:
1168
1168
  """
1169
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1169
+ An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1170
1170
  write a filter.
1171
1171
  """
1172
1172
  return pulumi.get(self, "filter")
@@ -1392,7 +1392,7 @@ class ProjectSinkExclusion(dict):
1392
1392
  description: Optional[str] = None,
1393
1393
  disabled: Optional[bool] = None):
1394
1394
  """
1395
- :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1395
+ :param str filter: An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1396
1396
  write a filter.
1397
1397
  :param str name: A client-assigned identifier, such as `load-balancer-exclusion`. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
1398
1398
  :param str description: A description of this exclusion.
@@ -1409,7 +1409,7 @@ class ProjectSinkExclusion(dict):
1409
1409
  @pulumi.getter
1410
1410
  def filter(self) -> str:
1411
1411
  """
1412
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100%!o(MISSING)f the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1412
+ An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See [Advanced Log Filters](https://cloud.google.com/logging/docs/view/advanced_filters) for information on how to
1413
1413
  write a filter.
1414
1414
  """
1415
1415
  return pulumi.get(self, "filter")
@@ -3729,7 +3729,7 @@ class UptimeCheckConfigHttpCheckArgs:
3729
3729
  Structure is documented below.
3730
3730
  :param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
3731
3731
  Structure is documented below.
3732
- :param pulumi.Input[str] body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%!D(MISSING)bar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3732
+ :param pulumi.Input[str] body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3733
3733
  :param pulumi.Input[str] content_type: The content type to use for the check.
3734
3734
  Possible values are: `TYPE_UNSPECIFIED`, `URL_ENCODED`, `USER_PROVIDED`.
3735
3735
  :param pulumi.Input[str] custom_content_type: A user provided content type header to use for the check. The invalid configurations outlined in the `content_type` field apply to custom_content_type`, as well as the following 1. `content_type` is `URL_ENCODED` and `custom_content_type` is set. 2. `content_type` is `USER_PROVIDED` and `custom_content_type` is not set.
@@ -3802,7 +3802,7 @@ class UptimeCheckConfigHttpCheckArgs:
3802
3802
  @pulumi.getter
3803
3803
  def body(self) -> Optional[pulumi.Input[str]]:
3804
3804
  """
3805
- The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%!D(MISSING)bar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3805
+ The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3806
3806
  """
3807
3807
  return pulumi.get(self, "body")
3808
3808
 
@@ -3860,7 +3860,7 @@ class UptimeCheckConfigHttpCheck(dict):
3860
3860
  Structure is documented below.
3861
3861
  :param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
3862
3862
  Structure is documented below.
3863
- :param str body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%!D(MISSING)bar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3863
+ :param str body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3864
3864
  :param str content_type: The content type to use for the check.
3865
3865
  Possible values are: `TYPE_UNSPECIFIED`, `URL_ENCODED`, `USER_PROVIDED`.
3866
3866
  :param str custom_content_type: A user provided content type header to use for the check. The invalid configurations outlined in the `content_type` field apply to custom_content_type`, as well as the following 1. `content_type` is `URL_ENCODED` and `custom_content_type` is set. 2. `content_type` is `USER_PROVIDED` and `custom_content_type` is not set.
@@ -3925,7 +3925,7 @@ class UptimeCheckConfigHttpCheck(dict):
3925
3925
  @pulumi.getter
3926
3926
  def body(self) -> Optional[str]:
3927
3927
  """
3928
- The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%!D(MISSING)bar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3928
+ The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
3929
3929
  """
3930
3930
  return pulumi.get(self, "body")
3931
3931
 
@@ -551,8 +551,8 @@ class Slo(pulumi.CustomResource):
551
551
  service. It consists of a service-level indicator (SLI), a performance
552
552
  goal, and a period over which the objective is to be evaluated against
553
553
  that goal. The SLO can use SLIs defined in a number of different manners.
554
- Typical SLOs might include "99%!o(MISSING)f requests in each rolling week have
555
- latency below 200 milliseconds" or "99.5%!o(MISSING)f requests in each calendar
554
+ Typical SLOs might include "99% of requests in each rolling week have
555
+ latency below 200 milliseconds" or "99.5% of requests in each calendar
556
556
  month return successfully."
557
557
 
558
558
  To get more information about Slo, see:
@@ -811,8 +811,8 @@ class Slo(pulumi.CustomResource):
811
811
  service. It consists of a service-level indicator (SLI), a performance
812
812
  goal, and a period over which the objective is to be evaluated against
813
813
  that goal. The SLO can use SLIs defined in a number of different manners.
814
- Typical SLOs might include "99%!o(MISSING)f requests in each rolling week have
815
- latency below 200 milliseconds" or "99.5%!o(MISSING)f requests in each calendar
814
+ Typical SLOs might include "99% of requests in each rolling week have
815
+ latency below 200 milliseconds" or "99.5% of requests in each calendar
816
816
  month return successfully."
817
817
 
818
818
  To get more information about Slo, see:
@@ -3349,7 +3349,7 @@ class HttpRouteRuleActionDestinationArgs:
3349
3349
  """
3350
3350
  :param pulumi.Input[str] service_name: The URL of a BackendService to route traffic to.
3351
3351
  :param pulumi.Input[int] weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3352
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3352
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3353
3353
  If weights are specified for any one service name, they need to be specified for all of them.
3354
3354
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3355
3355
  """
@@ -3375,7 +3375,7 @@ class HttpRouteRuleActionDestinationArgs:
3375
3375
  def weight(self) -> Optional[pulumi.Input[int]]:
3376
3376
  """
3377
3377
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3378
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3378
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3379
3379
  If weights are specified for any one service name, they need to be specified for all of them.
3380
3380
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3381
3381
  """
@@ -3714,7 +3714,7 @@ class HttpRouteRuleActionRequestMirrorPolicyDestinationArgs:
3714
3714
  """
3715
3715
  :param pulumi.Input[str] service_name: The URL of a BackendService to route traffic to.
3716
3716
  :param pulumi.Input[int] weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3717
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3717
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3718
3718
  If weights are specified for any one service name, they need to be specified for all of them.
3719
3719
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3720
3720
  """
@@ -3740,7 +3740,7 @@ class HttpRouteRuleActionRequestMirrorPolicyDestinationArgs:
3740
3740
  def weight(self) -> Optional[pulumi.Input[int]]:
3741
3741
  """
3742
3742
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3743
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3743
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3744
3744
  If weights are specified for any one service name, they need to be specified for all of them.
3745
3745
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3746
3746
  """
@@ -4345,7 +4345,7 @@ class TcpRouteRuleActionDestinationArgs:
4345
4345
  """
4346
4346
  :param pulumi.Input[str] service_name: The URL of a BackendService to route traffic to.
4347
4347
  :param pulumi.Input[int] weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
4348
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
4348
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
4349
4349
  If weights are specified for any one service name, they need to be specified for all of them.
4350
4350
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
4351
4351
 
@@ -4373,7 +4373,7 @@ class TcpRouteRuleActionDestinationArgs:
4373
4373
  def weight(self) -> Optional[pulumi.Input[int]]:
4374
4374
  """
4375
4375
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
4376
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
4376
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
4377
4377
  If weights are specified for any one service name, they need to be specified for all of them.
4378
4378
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
4379
4379
 
@@ -3573,7 +3573,7 @@ class HttpRouteRuleActionDestination(dict):
3573
3573
  """
3574
3574
  :param str service_name: The URL of a BackendService to route traffic to.
3575
3575
  :param int weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3576
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3576
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3577
3577
  If weights are specified for any one service name, they need to be specified for all of them.
3578
3578
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3579
3579
  """
@@ -3595,7 +3595,7 @@ class HttpRouteRuleActionDestination(dict):
3595
3595
  def weight(self) -> Optional[int]:
3596
3596
  """
3597
3597
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3598
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3598
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3599
3599
  If weights are specified for any one service name, they need to be specified for all of them.
3600
3600
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3601
3601
  """
@@ -3942,7 +3942,7 @@ class HttpRouteRuleActionRequestMirrorPolicyDestination(dict):
3942
3942
  """
3943
3943
  :param str service_name: The URL of a BackendService to route traffic to.
3944
3944
  :param int weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3945
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3945
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3946
3946
  If weights are specified for any one service name, they need to be specified for all of them.
3947
3947
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3948
3948
  """
@@ -3964,7 +3964,7 @@ class HttpRouteRuleActionRequestMirrorPolicyDestination(dict):
3964
3964
  def weight(self) -> Optional[int]:
3965
3965
  """
3966
3966
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
3967
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
3967
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
3968
3968
  If weights are specified for any one service name, they need to be specified for all of them.
3969
3969
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
3970
3970
  """
@@ -4588,7 +4588,7 @@ class TcpRouteRuleActionDestination(dict):
4588
4588
  """
4589
4589
  :param str service_name: The URL of a BackendService to route traffic to.
4590
4590
  :param int weight: Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
4591
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
4591
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
4592
4592
  If weights are specified for any one service name, they need to be specified for all of them.
4593
4593
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
4594
4594
 
@@ -4612,7 +4612,7 @@ class TcpRouteRuleActionDestination(dict):
4612
4612
  def weight(self) -> Optional[int]:
4613
4613
  """
4614
4614
  Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.
4615
- If only one serviceName is specified and it has a weight greater than 0, 100%!o(MISSING)f the traffic is forwarded to that backend.
4615
+ If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.
4616
4616
  If weights are specified for any one service name, they need to be specified for all of them.
4617
4617
  If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
4618
4618
 
@@ -306,7 +306,7 @@ class Policy(pulumi.CustomResource):
306
306
  import pulumi_gcp as gcp
307
307
 
308
308
  constraint = gcp.orgpolicy.CustomConstraint("constraint",
309
- name="custom.disableGkeAutoUpgrade_41819",
309
+ name="custom.disableGkeAutoUpgrade_75092",
310
310
  parent="organizations/123456789",
311
311
  display_name="Disable GKE auto upgrade",
312
312
  description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
@@ -468,7 +468,7 @@ class Policy(pulumi.CustomResource):
468
468
  import pulumi_gcp as gcp
469
469
 
470
470
  constraint = gcp.orgpolicy.CustomConstraint("constraint",
471
- name="custom.disableGkeAutoUpgrade_41819",
471
+ name="custom.disableGkeAutoUpgrade_75092",
472
472
  parent="organizations/123456789",
473
473
  display_name="Disable GKE auto upgrade",
474
474
  description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
pulumi_gcp/provider.py CHANGED
@@ -121,6 +121,7 @@ class ProviderArgs:
121
121
  impersonate_service_account: Optional[pulumi.Input[str]] = None,
122
122
  impersonate_service_account_delegates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
123
123
  integration_connectors_custom_endpoint: Optional[pulumi.Input[str]] = None,
124
+ integrations_custom_endpoint: Optional[pulumi.Input[str]] = None,
124
125
  kms_custom_endpoint: Optional[pulumi.Input[str]] = None,
125
126
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
126
127
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -396,6 +397,8 @@ class ProviderArgs:
396
397
  pulumi.set(__self__, "impersonate_service_account_delegates", impersonate_service_account_delegates)
397
398
  if integration_connectors_custom_endpoint is not None:
398
399
  pulumi.set(__self__, "integration_connectors_custom_endpoint", integration_connectors_custom_endpoint)
400
+ if integrations_custom_endpoint is not None:
401
+ pulumi.set(__self__, "integrations_custom_endpoint", integrations_custom_endpoint)
399
402
  if kms_custom_endpoint is not None:
400
403
  pulumi.set(__self__, "kms_custom_endpoint", kms_custom_endpoint)
401
404
  if logging_custom_endpoint is not None:
@@ -1477,6 +1480,15 @@ class ProviderArgs:
1477
1480
  def integration_connectors_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1478
1481
  pulumi.set(self, "integration_connectors_custom_endpoint", value)
1479
1482
 
1483
+ @property
1484
+ @pulumi.getter(name="integrationsCustomEndpoint")
1485
+ def integrations_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1486
+ return pulumi.get(self, "integrations_custom_endpoint")
1487
+
1488
+ @integrations_custom_endpoint.setter
1489
+ def integrations_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1490
+ pulumi.set(self, "integrations_custom_endpoint", value)
1491
+
1480
1492
  @property
1481
1493
  @pulumi.getter(name="kmsCustomEndpoint")
1482
1494
  def kms_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2129,6 +2141,7 @@ class Provider(pulumi.ProviderResource):
2129
2141
  impersonate_service_account: Optional[pulumi.Input[str]] = None,
2130
2142
  impersonate_service_account_delegates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2131
2143
  integration_connectors_custom_endpoint: Optional[pulumi.Input[str]] = None,
2144
+ integrations_custom_endpoint: Optional[pulumi.Input[str]] = None,
2132
2145
  kms_custom_endpoint: Optional[pulumi.Input[str]] = None,
2133
2146
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
2134
2147
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2332,6 +2345,7 @@ class Provider(pulumi.ProviderResource):
2332
2345
  impersonate_service_account: Optional[pulumi.Input[str]] = None,
2333
2346
  impersonate_service_account_delegates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2334
2347
  integration_connectors_custom_endpoint: Optional[pulumi.Input[str]] = None,
2348
+ integrations_custom_endpoint: Optional[pulumi.Input[str]] = None,
2335
2349
  kms_custom_endpoint: Optional[pulumi.Input[str]] = None,
2336
2350
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
2337
2351
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2507,6 +2521,7 @@ class Provider(pulumi.ProviderResource):
2507
2521
  __props__.__dict__["impersonate_service_account"] = impersonate_service_account
2508
2522
  __props__.__dict__["impersonate_service_account_delegates"] = pulumi.Output.from_input(impersonate_service_account_delegates).apply(pulumi.runtime.to_json) if impersonate_service_account_delegates is not None else None
2509
2523
  __props__.__dict__["integration_connectors_custom_endpoint"] = integration_connectors_custom_endpoint
2524
+ __props__.__dict__["integrations_custom_endpoint"] = integrations_custom_endpoint
2510
2525
  __props__.__dict__["kms_custom_endpoint"] = kms_custom_endpoint
2511
2526
  __props__.__dict__["logging_custom_endpoint"] = logging_custom_endpoint
2512
2527
  __props__.__dict__["looker_custom_endpoint"] = looker_custom_endpoint
@@ -3084,6 +3099,11 @@ class Provider(pulumi.ProviderResource):
3084
3099
  def integration_connectors_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3085
3100
  return pulumi.get(self, "integration_connectors_custom_endpoint")
3086
3101
 
3102
+ @property
3103
+ @pulumi.getter(name="integrationsCustomEndpoint")
3104
+ def integrations_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3105
+ return pulumi.get(self, "integrations_custom_endpoint")
3106
+
3087
3107
  @property
3088
3108
  @pulumi.getter(name="kmsCustomEndpoint")
3089
3109
  def kms_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -1051,7 +1051,7 @@ class Subscription(pulumi.CustomResource):
1051
1051
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1052
1052
  bucket=example.name,
1053
1053
  filename_prefix="pre-",
1054
- filename_suffix="-_75092",
1054
+ filename_suffix="-_2605",
1055
1055
  max_bytes=1000,
1056
1056
  max_duration="300s",
1057
1057
  ))
@@ -1080,7 +1080,7 @@ class Subscription(pulumi.CustomResource):
1080
1080
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1081
1081
  bucket=example.name,
1082
1082
  filename_prefix="pre-",
1083
- filename_suffix="-_2605",
1083
+ filename_suffix="-_34535",
1084
1084
  max_bytes=1000,
1085
1085
  max_duration="300s",
1086
1086
  avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
@@ -1392,7 +1392,7 @@ class Subscription(pulumi.CustomResource):
1392
1392
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1393
1393
  bucket=example.name,
1394
1394
  filename_prefix="pre-",
1395
- filename_suffix="-_75092",
1395
+ filename_suffix="-_2605",
1396
1396
  max_bytes=1000,
1397
1397
  max_duration="300s",
1398
1398
  ))
@@ -1421,7 +1421,7 @@ class Subscription(pulumi.CustomResource):
1421
1421
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1422
1422
  bucket=example.name,
1423
1423
  filename_prefix="pre-",
1424
- filename_suffix="-_2605",
1424
+ filename_suffix="-_34535",
1425
1425
  max_bytes=1000,
1426
1426
  max_duration="300s",
1427
1427
  avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
@@ -33,7 +33,7 @@ class ConsumerQuotaOverrideArgs:
33
33
  :param pulumi.Input[str] override_value: The overriding quota limit value. Can be any nonnegative integer, or -1 (unlimited quota).
34
34
  :param pulumi.Input[str] service: The service that the metrics belong to, e.g. `compute.googleapis.com`.
35
35
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
36
- :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
36
+ :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
37
37
  If `force` is `true`, that safety check is ignored.
38
38
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
39
39
  If it is not provided, the provider project is used.
@@ -118,7 +118,7 @@ class ConsumerQuotaOverrideArgs:
118
118
  @pulumi.getter
119
119
  def force(self) -> Optional[pulumi.Input[bool]]:
120
120
  """
121
- If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
121
+ If the new quota would decrease the existing quota by more than 10%, the request is rejected.
122
122
  If `force` is `true`, that safety check is ignored.
123
123
  """
124
124
  return pulumi.get(self, "force")
@@ -155,7 +155,7 @@ class _ConsumerQuotaOverrideState:
155
155
  """
156
156
  Input properties used for looking up and filtering ConsumerQuotaOverride resources.
157
157
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
158
- :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
158
+ :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
159
159
  If `force` is `true`, that safety check is ignored.
160
160
  :param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
161
161
  > Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
@@ -203,7 +203,7 @@ class _ConsumerQuotaOverrideState:
203
203
  @pulumi.getter
204
204
  def force(self) -> Optional[pulumi.Input[bool]]:
205
205
  """
206
- If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
206
+ If the new quota would decrease the existing quota by more than 10%, the request is rejected.
207
207
  If `force` is `true`, that safety check is ignored.
208
208
  """
209
209
  return pulumi.get(self, "force")
@@ -414,7 +414,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
414
414
  :param str resource_name: The name of the resource.
415
415
  :param pulumi.ResourceOptions opts: Options for the resource.
416
416
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
417
- :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
417
+ :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
418
418
  If `force` is `true`, that safety check is ignored.
419
419
  :param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
420
420
  > Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
@@ -614,7 +614,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
614
614
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
615
615
  :param pulumi.ResourceOptions opts: Options for the resource.
616
616
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
617
- :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
617
+ :param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
618
618
  If `force` is `true`, that safety check is ignored.
619
619
  :param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
620
620
  > Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
@@ -655,7 +655,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
655
655
  @pulumi.getter
656
656
  def force(self) -> pulumi.Output[Optional[bool]]:
657
657
  """
658
- If the new quota would decrease the existing quota by more than 10%!,(MISSING) the request is rejected.
658
+ If the new quota would decrease the existing quota by more than 10%, the request is rejected.
659
659
  If `force` is `true`, that safety check is ignored.
660
660
  """
661
661
  return pulumi.get(self, "force")
pulumi_gcp/sql/_inputs.py CHANGED
@@ -132,6 +132,12 @@ class DatabaseInstanceIpAddressArgs:
132
132
  ip_address: Optional[pulumi.Input[str]] = None,
133
133
  time_to_retire: Optional[pulumi.Input[str]] = None,
134
134
  type: Optional[pulumi.Input[str]] = None):
135
+ """
136
+ :param pulumi.Input[str] ip_address: The IPv4 address assigned.
137
+ :param pulumi.Input[str] time_to_retire: The time this IP address will be retired, in RFC
138
+ 3339 format.
139
+ :param pulumi.Input[str] type: The type of this IP address.
140
+ """
135
141
  if ip_address is not None:
136
142
  pulumi.set(__self__, "ip_address", ip_address)
137
143
  if time_to_retire is not None:
@@ -142,6 +148,9 @@ class DatabaseInstanceIpAddressArgs:
142
148
  @property
143
149
  @pulumi.getter(name="ipAddress")
144
150
  def ip_address(self) -> Optional[pulumi.Input[str]]:
151
+ """
152
+ The IPv4 address assigned.
153
+ """
145
154
  return pulumi.get(self, "ip_address")
146
155
 
147
156
  @ip_address.setter
@@ -151,6 +160,10 @@ class DatabaseInstanceIpAddressArgs:
151
160
  @property
152
161
  @pulumi.getter(name="timeToRetire")
153
162
  def time_to_retire(self) -> Optional[pulumi.Input[str]]:
163
+ """
164
+ The time this IP address will be retired, in RFC
165
+ 3339 format.
166
+ """
154
167
  return pulumi.get(self, "time_to_retire")
155
168
 
156
169
  @time_to_retire.setter
@@ -160,6 +173,9 @@ class DatabaseInstanceIpAddressArgs:
160
173
  @property
161
174
  @pulumi.getter
162
175
  def type(self) -> Optional[pulumi.Input[str]]:
176
+ """
177
+ The type of this IP address.
178
+ """
163
179
  return pulumi.get(self, "type")
164
180
 
165
181
  @type.setter
@@ -573,7 +589,8 @@ class DatabaseInstanceSettingsArgs:
573
589
  :param pulumi.Input[str] pricing_plan: Pricing plan for this instance, can only be `PER_USE`.
574
590
  :param pulumi.Input[str] time_zone: The time_zone to be used by the database engine (supported only for SQL Server), in SQL Server timezone format.
575
591
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] user_labels: A set of key/value user label pairs to assign to the instance.
576
- :param pulumi.Input[int] version: Used to make sure changes to the settings block are atomic.
592
+ :param pulumi.Input[int] version: Used to make sure changes to the `settings` block are
593
+ atomic.
577
594
  """
578
595
  pulumi.set(__self__, "tier", tier)
579
596
  if activation_policy is not None:
@@ -926,7 +943,8 @@ class DatabaseInstanceSettingsArgs:
926
943
  @pulumi.getter
927
944
  def version(self) -> Optional[pulumi.Input[int]]:
928
945
  """
929
- Used to make sure changes to the settings block are atomic.
946
+ Used to make sure changes to the `settings` block are
947
+ atomic.
930
948
  """
931
949
  return pulumi.get(self, "version")
932
950
 
@@ -801,7 +801,7 @@ class DatabaseInstance(pulumi.CustomResource):
801
801
  or the [JSON API](https://cloud.google.com/sql/docs/admin-api/v1beta4/instances).
802
802
 
803
803
  > **NOTE on `sql.DatabaseInstance`:** - Second-generation instances include a
804
- default 'root'@'%!'(MISSING) user with no password. This user will be deleted by the provider on
804
+ default 'root'@'%' user with no password. This user will be deleted by the provider on
805
805
  instance creation. You should use `sql.User` to define a custom user with
806
806
  a restricted host and strong password.
807
807
 
@@ -1002,7 +1002,7 @@ class DatabaseInstance(pulumi.CustomResource):
1002
1002
  or the [JSON API](https://cloud.google.com/sql/docs/admin-api/v1beta4/instances).
1003
1003
 
1004
1004
  > **NOTE on `sql.DatabaseInstance`:** - Second-generation instances include a
1005
- default 'root'@'%!'(MISSING) user with no password. This user will be deleted by the provider on
1005
+ default 'root'@'%' user with no password. This user will be deleted by the provider on
1006
1006
  instance creation. You should use `sql.User` to define a custom user with
1007
1007
  a restricted host and strong password.
1008
1008