pulumi-gcp 7.16.0a1711520590__py3-none-any.whl → 7.17.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. pulumi_gcp/__init__.py +35 -0
  2. pulumi_gcp/accesscontextmanager/__init__.py +1 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +345 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +80 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +86 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +4 -2
  7. pulumi_gcp/apphub/__init__.py +1 -0
  8. pulumi_gcp/apphub/get_application.py +220 -0
  9. pulumi_gcp/apphub/outputs.py +214 -0
  10. pulumi_gcp/applicationintegration/__init__.py +10 -0
  11. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  12. pulumi_gcp/applicationintegration/client.py +566 -0
  13. pulumi_gcp/applicationintegration/outputs.py +122 -0
  14. pulumi_gcp/bigquery/_inputs.py +16 -0
  15. pulumi_gcp/bigquery/outputs.py +14 -0
  16. pulumi_gcp/bigquery/routine.py +98 -0
  17. pulumi_gcp/bigtable/_inputs.py +4 -4
  18. pulumi_gcp/bigtable/gc_policy.py +8 -0
  19. pulumi_gcp/bigtable/outputs.py +4 -4
  20. pulumi_gcp/billing/_inputs.py +4 -4
  21. pulumi_gcp/billing/outputs.py +4 -4
  22. pulumi_gcp/billing/project_info.py +4 -4
  23. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  24. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  25. pulumi_gcp/cloudquota/__init__.py +3 -0
  26. pulumi_gcp/cloudquota/_inputs.py +131 -0
  27. pulumi_gcp/cloudquota/get_s_quota_infos.py +136 -0
  28. pulumi_gcp/cloudquota/outputs.py +388 -0
  29. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  30. pulumi_gcp/cloudrunv2/_inputs.py +59 -2
  31. pulumi_gcp/cloudrunv2/outputs.py +107 -4
  32. pulumi_gcp/cloudrunv2/service.py +13 -13
  33. pulumi_gcp/composer/_inputs.py +30 -4
  34. pulumi_gcp/composer/outputs.py +45 -10
  35. pulumi_gcp/compute/_inputs.py +145 -51
  36. pulumi_gcp/compute/autoscaler.py +14 -14
  37. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  38. pulumi_gcp/compute/network_endpoint.py +8 -0
  39. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  40. pulumi_gcp/compute/outputs.py +202 -69
  41. pulumi_gcp/compute/region_autoscaler.py +14 -14
  42. pulumi_gcp/compute/region_backend_service.py +28 -0
  43. pulumi_gcp/compute/region_url_map.py +152 -0
  44. pulumi_gcp/compute/target_instance.py +4 -4
  45. pulumi_gcp/config/__init__.pyi +2 -0
  46. pulumi_gcp/config/vars.py +4 -0
  47. pulumi_gcp/container/_inputs.py +148 -16
  48. pulumi_gcp/container/outputs.py +148 -16
  49. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  50. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  51. pulumi_gcp/dataform/repository.py +4 -74
  52. pulumi_gcp/dataloss/_inputs.py +6 -6
  53. pulumi_gcp/dataloss/outputs.py +6 -6
  54. pulumi_gcp/dataplex/task.py +16 -16
  55. pulumi_gcp/dataproc/_inputs.py +85 -10
  56. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  57. pulumi_gcp/dataproc/metastore_service.py +120 -0
  58. pulumi_gcp/dataproc/outputs.py +142 -10
  59. pulumi_gcp/firebase/android_app.py +41 -40
  60. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  61. pulumi_gcp/firestore/backup_schedule.py +14 -14
  62. pulumi_gcp/firestore/field.py +4 -4
  63. pulumi_gcp/firestore/index.py +34 -48
  64. pulumi_gcp/gkehub/membership_binding.py +6 -6
  65. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  66. pulumi_gcp/gkehub/namespace.py +4 -4
  67. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  68. pulumi_gcp/iam/_inputs.py +76 -0
  69. pulumi_gcp/iam/outputs.py +76 -0
  70. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  71. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  72. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  73. pulumi_gcp/kms/_inputs.py +46 -0
  74. pulumi_gcp/kms/crypto_key.py +54 -0
  75. pulumi_gcp/kms/crypto_key_version.py +54 -0
  76. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  77. pulumi_gcp/kms/outputs.py +54 -0
  78. pulumi_gcp/logging/_inputs.py +8 -8
  79. pulumi_gcp/logging/metric.py +7 -7
  80. pulumi_gcp/logging/outputs.py +8 -8
  81. pulumi_gcp/monitoring/_inputs.py +4 -2
  82. pulumi_gcp/monitoring/outputs.py +4 -2
  83. pulumi_gcp/monitoring/slo.py +4 -4
  84. pulumi_gcp/networksecurity/firewall_endpoint.py +48 -0
  85. pulumi_gcp/networkservices/_inputs.py +6 -6
  86. pulumi_gcp/networkservices/outputs.py +6 -6
  87. pulumi_gcp/orgpolicy/policy.py +2 -2
  88. pulumi_gcp/provider.py +20 -0
  89. pulumi_gcp/pubsub/_inputs.py +108 -0
  90. pulumi_gcp/pubsub/get_topic.py +11 -1
  91. pulumi_gcp/pubsub/outputs.py +213 -0
  92. pulumi_gcp/pubsub/subscription.py +4 -4
  93. pulumi_gcp/pubsub/topic.py +92 -0
  94. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  95. pulumi_gcp/sql/_inputs.py +20 -2
  96. pulumi_gcp/sql/database_instance.py +2 -2
  97. pulumi_gcp/sql/outputs.py +20 -2
  98. pulumi_gcp/storage/_inputs.py +42 -2
  99. pulumi_gcp/storage/bucket.py +54 -0
  100. pulumi_gcp/storage/get_bucket.py +11 -1
  101. pulumi_gcp/storage/outputs.py +83 -2
  102. pulumi_gcp/vertex/__init__.py +1 -0
  103. pulumi_gcp/vertex/_inputs.py +175 -8
  104. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  105. pulumi_gcp/vertex/outputs.py +202 -10
  106. pulumi_gcp/vpcaccess/connector.py +77 -28
  107. pulumi_gcp/workstations/_inputs.py +113 -0
  108. pulumi_gcp/workstations/outputs.py +109 -1
  109. pulumi_gcp/workstations/workstation_config.py +106 -0
  110. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/METADATA +1 -1
  111. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/RECORD +113 -103
  112. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/WHEEL +0 -0
  113. {pulumi_gcp-7.16.0a1711520590.dist-info → pulumi_gcp-7.17.0.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,7 @@ __all__ = ['CryptoKeyVersionArgs', 'CryptoKeyVersion']
17
17
  class CryptoKeyVersionArgs:
18
18
  def __init__(__self__, *,
19
19
  crypto_key: pulumi.Input[str],
20
+ external_protection_level_options: Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']] = None,
20
21
  state: Optional[pulumi.Input[str]] = None):
21
22
  """
22
23
  The set of arguments for constructing a CryptoKeyVersion resource.
@@ -25,10 +26,14 @@ class CryptoKeyVersionArgs:
25
26
 
26
27
 
27
28
  - - -
29
+ :param pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs'] external_protection_level_options: ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
30
+ Structure is documented below.
28
31
  :param pulumi.Input[str] state: The current state of the CryptoKeyVersion.
29
32
  Possible values are: `PENDING_GENERATION`, `ENABLED`, `DISABLED`, `DESTROYED`, `DESTROY_SCHEDULED`, `PENDING_IMPORT`, `IMPORT_FAILED`.
30
33
  """
31
34
  pulumi.set(__self__, "crypto_key", crypto_key)
35
+ if external_protection_level_options is not None:
36
+ pulumi.set(__self__, "external_protection_level_options", external_protection_level_options)
32
37
  if state is not None:
33
38
  pulumi.set(__self__, "state", state)
34
39
 
@@ -48,6 +53,19 @@ class CryptoKeyVersionArgs:
48
53
  def crypto_key(self, value: pulumi.Input[str]):
49
54
  pulumi.set(self, "crypto_key", value)
50
55
 
56
+ @property
57
+ @pulumi.getter(name="externalProtectionLevelOptions")
58
+ def external_protection_level_options(self) -> Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]:
59
+ """
60
+ ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
61
+ Structure is documented below.
62
+ """
63
+ return pulumi.get(self, "external_protection_level_options")
64
+
65
+ @external_protection_level_options.setter
66
+ def external_protection_level_options(self, value: Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]):
67
+ pulumi.set(self, "external_protection_level_options", value)
68
+
51
69
  @property
52
70
  @pulumi.getter
53
71
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -68,6 +86,7 @@ class _CryptoKeyVersionState:
68
86
  algorithm: Optional[pulumi.Input[str]] = None,
69
87
  attestations: Optional[pulumi.Input[Sequence[pulumi.Input['CryptoKeyVersionAttestationArgs']]]] = None,
70
88
  crypto_key: Optional[pulumi.Input[str]] = None,
89
+ external_protection_level_options: Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']] = None,
71
90
  generate_time: Optional[pulumi.Input[str]] = None,
72
91
  name: Optional[pulumi.Input[str]] = None,
73
92
  protection_level: Optional[pulumi.Input[str]] = None,
@@ -83,6 +102,8 @@ class _CryptoKeyVersionState:
83
102
 
84
103
 
85
104
  - - -
105
+ :param pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs'] external_protection_level_options: ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
106
+ Structure is documented below.
86
107
  :param pulumi.Input[str] generate_time: The time this CryptoKeyVersion key material was generated
87
108
  :param pulumi.Input[str] name: The resource name for this CryptoKeyVersion.
88
109
  :param pulumi.Input[str] protection_level: The ProtectionLevel describing how crypto operations are performed with this CryptoKeyVersion.
@@ -95,6 +116,8 @@ class _CryptoKeyVersionState:
95
116
  pulumi.set(__self__, "attestations", attestations)
96
117
  if crypto_key is not None:
97
118
  pulumi.set(__self__, "crypto_key", crypto_key)
119
+ if external_protection_level_options is not None:
120
+ pulumi.set(__self__, "external_protection_level_options", external_protection_level_options)
98
121
  if generate_time is not None:
99
122
  pulumi.set(__self__, "generate_time", generate_time)
100
123
  if name is not None:
@@ -146,6 +169,19 @@ class _CryptoKeyVersionState:
146
169
  def crypto_key(self, value: Optional[pulumi.Input[str]]):
147
170
  pulumi.set(self, "crypto_key", value)
148
171
 
172
+ @property
173
+ @pulumi.getter(name="externalProtectionLevelOptions")
174
+ def external_protection_level_options(self) -> Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]:
175
+ """
176
+ ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
177
+ Structure is documented below.
178
+ """
179
+ return pulumi.get(self, "external_protection_level_options")
180
+
181
+ @external_protection_level_options.setter
182
+ def external_protection_level_options(self, value: Optional[pulumi.Input['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]):
183
+ pulumi.set(self, "external_protection_level_options", value)
184
+
149
185
  @property
150
186
  @pulumi.getter(name="generateTime")
151
187
  def generate_time(self) -> Optional[pulumi.Input[str]]:
@@ -202,6 +238,7 @@ class CryptoKeyVersion(pulumi.CustomResource):
202
238
  resource_name: str,
203
239
  opts: Optional[pulumi.ResourceOptions] = None,
204
240
  crypto_key: Optional[pulumi.Input[str]] = None,
241
+ external_protection_level_options: Optional[pulumi.Input[pulumi.InputType['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]] = None,
205
242
  state: Optional[pulumi.Input[str]] = None,
206
243
  __props__=None):
207
244
  """
@@ -254,6 +291,8 @@ class CryptoKeyVersion(pulumi.CustomResource):
254
291
 
255
292
 
256
293
  - - -
294
+ :param pulumi.Input[pulumi.InputType['CryptoKeyVersionExternalProtectionLevelOptionsArgs']] external_protection_level_options: ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
295
+ Structure is documented below.
257
296
  :param pulumi.Input[str] state: The current state of the CryptoKeyVersion.
258
297
  Possible values are: `PENDING_GENERATION`, `ENABLED`, `DISABLED`, `DESTROYED`, `DESTROY_SCHEDULED`, `PENDING_IMPORT`, `IMPORT_FAILED`.
259
298
  """
@@ -322,6 +361,7 @@ class CryptoKeyVersion(pulumi.CustomResource):
322
361
  resource_name: str,
323
362
  opts: Optional[pulumi.ResourceOptions] = None,
324
363
  crypto_key: Optional[pulumi.Input[str]] = None,
364
+ external_protection_level_options: Optional[pulumi.Input[pulumi.InputType['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]] = None,
325
365
  state: Optional[pulumi.Input[str]] = None,
326
366
  __props__=None):
327
367
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -335,6 +375,7 @@ class CryptoKeyVersion(pulumi.CustomResource):
335
375
  if crypto_key is None and not opts.urn:
336
376
  raise TypeError("Missing required property 'crypto_key'")
337
377
  __props__.__dict__["crypto_key"] = crypto_key
378
+ __props__.__dict__["external_protection_level_options"] = external_protection_level_options
338
379
  __props__.__dict__["state"] = state
339
380
  __props__.__dict__["algorithm"] = None
340
381
  __props__.__dict__["attestations"] = None
@@ -354,6 +395,7 @@ class CryptoKeyVersion(pulumi.CustomResource):
354
395
  algorithm: Optional[pulumi.Input[str]] = None,
355
396
  attestations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CryptoKeyVersionAttestationArgs']]]]] = None,
356
397
  crypto_key: Optional[pulumi.Input[str]] = None,
398
+ external_protection_level_options: Optional[pulumi.Input[pulumi.InputType['CryptoKeyVersionExternalProtectionLevelOptionsArgs']]] = None,
357
399
  generate_time: Optional[pulumi.Input[str]] = None,
358
400
  name: Optional[pulumi.Input[str]] = None,
359
401
  protection_level: Optional[pulumi.Input[str]] = None,
@@ -374,6 +416,8 @@ class CryptoKeyVersion(pulumi.CustomResource):
374
416
 
375
417
 
376
418
  - - -
419
+ :param pulumi.Input[pulumi.InputType['CryptoKeyVersionExternalProtectionLevelOptionsArgs']] external_protection_level_options: ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
420
+ Structure is documented below.
377
421
  :param pulumi.Input[str] generate_time: The time this CryptoKeyVersion key material was generated
378
422
  :param pulumi.Input[str] name: The resource name for this CryptoKeyVersion.
379
423
  :param pulumi.Input[str] protection_level: The ProtectionLevel describing how crypto operations are performed with this CryptoKeyVersion.
@@ -387,6 +431,7 @@ class CryptoKeyVersion(pulumi.CustomResource):
387
431
  __props__.__dict__["algorithm"] = algorithm
388
432
  __props__.__dict__["attestations"] = attestations
389
433
  __props__.__dict__["crypto_key"] = crypto_key
434
+ __props__.__dict__["external_protection_level_options"] = external_protection_level_options
390
435
  __props__.__dict__["generate_time"] = generate_time
391
436
  __props__.__dict__["name"] = name
392
437
  __props__.__dict__["protection_level"] = protection_level
@@ -423,6 +468,15 @@ class CryptoKeyVersion(pulumi.CustomResource):
423
468
  """
424
469
  return pulumi.get(self, "crypto_key")
425
470
 
471
+ @property
472
+ @pulumi.getter(name="externalProtectionLevelOptions")
473
+ def external_protection_level_options(self) -> pulumi.Output[Optional['outputs.CryptoKeyVersionExternalProtectionLevelOptions']]:
474
+ """
475
+ ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
476
+ Structure is documented below.
477
+ """
478
+ return pulumi.get(self, "external_protection_level_options")
479
+
426
480
  @property
427
481
  @pulumi.getter(name="generateTime")
428
482
  def generate_time(self) -> pulumi.Output[str]:
@@ -22,7 +22,10 @@ class GetKMSCryptoKeyResult:
22
22
  """
23
23
  A collection of values returned by getKMSCryptoKey.
24
24
  """
25
- def __init__(__self__, destroy_scheduled_duration=None, effective_labels=None, id=None, import_only=None, key_ring=None, labels=None, name=None, primaries=None, pulumi_labels=None, purpose=None, rotation_period=None, skip_initial_version_creation=None, version_templates=None):
25
+ def __init__(__self__, crypto_key_backend=None, destroy_scheduled_duration=None, effective_labels=None, id=None, import_only=None, key_ring=None, labels=None, name=None, primaries=None, pulumi_labels=None, purpose=None, rotation_period=None, skip_initial_version_creation=None, version_templates=None):
26
+ if crypto_key_backend and not isinstance(crypto_key_backend, str):
27
+ raise TypeError("Expected argument 'crypto_key_backend' to be a str")
28
+ pulumi.set(__self__, "crypto_key_backend", crypto_key_backend)
26
29
  if destroy_scheduled_duration and not isinstance(destroy_scheduled_duration, str):
27
30
  raise TypeError("Expected argument 'destroy_scheduled_duration' to be a str")
28
31
  pulumi.set(__self__, "destroy_scheduled_duration", destroy_scheduled_duration)
@@ -63,6 +66,11 @@ class GetKMSCryptoKeyResult:
63
66
  raise TypeError("Expected argument 'version_templates' to be a list")
64
67
  pulumi.set(__self__, "version_templates", version_templates)
65
68
 
69
+ @property
70
+ @pulumi.getter(name="cryptoKeyBackend")
71
+ def crypto_key_backend(self) -> str:
72
+ return pulumi.get(self, "crypto_key_backend")
73
+
66
74
  @property
67
75
  @pulumi.getter(name="destroyScheduledDuration")
68
76
  def destroy_scheduled_duration(self) -> str:
@@ -146,6 +154,7 @@ class AwaitableGetKMSCryptoKeyResult(GetKMSCryptoKeyResult):
146
154
  if False:
147
155
  yield self
148
156
  return GetKMSCryptoKeyResult(
157
+ crypto_key_backend=self.crypto_key_backend,
149
158
  destroy_scheduled_duration=self.destroy_scheduled_duration,
150
159
  effective_labels=self.effective_labels,
151
160
  id=self.id,
@@ -199,6 +208,7 @@ def get_kms_crypto_key(key_ring: Optional[str] = None,
199
208
  __ret__ = pulumi.runtime.invoke('gcp:kms/getKMSCryptoKey:getKMSCryptoKey', __args__, opts=opts, typ=GetKMSCryptoKeyResult).value
200
209
 
201
210
  return AwaitableGetKMSCryptoKeyResult(
211
+ crypto_key_backend=pulumi.get(__ret__, 'crypto_key_backend'),
202
212
  destroy_scheduled_duration=pulumi.get(__ret__, 'destroy_scheduled_duration'),
203
213
  effective_labels=pulumi.get(__ret__, 'effective_labels'),
204
214
  id=pulumi.get(__ret__, 'id'),
pulumi_gcp/kms/outputs.py CHANGED
@@ -17,6 +17,7 @@ __all__ = [
17
17
  'CryptoKeyVersionAttestation',
18
18
  'CryptoKeyVersionAttestationCertChains',
19
19
  'CryptoKeyVersionAttestationExternalProtectionLevelOptions',
20
+ 'CryptoKeyVersionExternalProtectionLevelOptions',
20
21
  'CryptoKeyVersionTemplate',
21
22
  'EkmConnectionServiceResolver',
22
23
  'EkmConnectionServiceResolverServerCertificate',
@@ -230,6 +231,9 @@ class CryptoKeyVersionAttestation(dict):
230
231
  ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
231
232
  Structure is documented below.
232
233
  """
234
+ warnings.warn("""`externalProtectionLevelOptions` is being un-nested from the `attestation` field. Please use the top level `externalProtectionLevelOptions` field instead.""", DeprecationWarning)
235
+ pulumi.log.warn("""external_protection_level_options is deprecated: `externalProtectionLevelOptions` is being un-nested from the `attestation` field. Please use the top level `externalProtectionLevelOptions` field instead.""")
236
+
233
237
  return pulumi.get(self, "external_protection_level_options")
234
238
 
235
239
  @property
@@ -356,6 +360,56 @@ class CryptoKeyVersionAttestationExternalProtectionLevelOptions(dict):
356
360
  return pulumi.get(self, "external_key_uri")
357
361
 
358
362
 
363
+ @pulumi.output_type
364
+ class CryptoKeyVersionExternalProtectionLevelOptions(dict):
365
+ @staticmethod
366
+ def __key_warning(key: str):
367
+ suggest = None
368
+ if key == "ekmConnectionKeyPath":
369
+ suggest = "ekm_connection_key_path"
370
+ elif key == "externalKeyUri":
371
+ suggest = "external_key_uri"
372
+
373
+ if suggest:
374
+ pulumi.log.warn(f"Key '{key}' not found in CryptoKeyVersionExternalProtectionLevelOptions. Access the value via the '{suggest}' property getter instead.")
375
+
376
+ def __getitem__(self, key: str) -> Any:
377
+ CryptoKeyVersionExternalProtectionLevelOptions.__key_warning(key)
378
+ return super().__getitem__(key)
379
+
380
+ def get(self, key: str, default = None) -> Any:
381
+ CryptoKeyVersionExternalProtectionLevelOptions.__key_warning(key)
382
+ return super().get(key, default)
383
+
384
+ def __init__(__self__, *,
385
+ ekm_connection_key_path: Optional[str] = None,
386
+ external_key_uri: Optional[str] = None):
387
+ """
388
+ :param str ekm_connection_key_path: The path to the external key material on the EKM when using EkmConnection e.g., "v0/my/key". Set this field instead of externalKeyUri when using an EkmConnection.
389
+ :param str external_key_uri: The URI for an external resource that this CryptoKeyVersion represents.
390
+ """
391
+ if ekm_connection_key_path is not None:
392
+ pulumi.set(__self__, "ekm_connection_key_path", ekm_connection_key_path)
393
+ if external_key_uri is not None:
394
+ pulumi.set(__self__, "external_key_uri", external_key_uri)
395
+
396
+ @property
397
+ @pulumi.getter(name="ekmConnectionKeyPath")
398
+ def ekm_connection_key_path(self) -> Optional[str]:
399
+ """
400
+ The path to the external key material on the EKM when using EkmConnection e.g., "v0/my/key". Set this field instead of externalKeyUri when using an EkmConnection.
401
+ """
402
+ return pulumi.get(self, "ekm_connection_key_path")
403
+
404
+ @property
405
+ @pulumi.getter(name="externalKeyUri")
406
+ def external_key_uri(self) -> Optional[str]:
407
+ """
408
+ The URI for an external resource that this CryptoKeyVersion represents.
409
+ """
410
+ return pulumi.get(self, "external_key_uri")
411
+
412
+
359
413
  @pulumi.output_type
360
414
  class CryptoKeyVersionTemplate(dict):
361
415
  @staticmethod
@@ -204,7 +204,7 @@ class BillingAccountSinkExclusionArgs:
204
204
  description: Optional[pulumi.Input[str]] = None,
205
205
  disabled: Optional[pulumi.Input[bool]] = None):
206
206
  """
207
- :param pulumi.Input[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
207
+ :param pulumi.Input[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
208
208
  write a filter.
209
209
  :param pulumi.Input[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.
210
210
  :param pulumi.Input[str] description: A description of this exclusion.
@@ -221,7 +221,7 @@ class BillingAccountSinkExclusionArgs:
221
221
  @pulumi.getter
222
222
  def filter(self) -> pulumi.Input[str]:
223
223
  """
224
- 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
224
+ 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
225
225
  write a filter.
226
226
  """
227
227
  return pulumi.get(self, "filter")
@@ -436,7 +436,7 @@ class FolderSinkExclusionArgs:
436
436
  description: Optional[pulumi.Input[str]] = None,
437
437
  disabled: Optional[pulumi.Input[bool]] = None):
438
438
  """
439
- :param pulumi.Input[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
439
+ :param pulumi.Input[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
440
440
  write a filter.
441
441
  :param pulumi.Input[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.
442
442
  :param pulumi.Input[str] description: A description of this exclusion.
@@ -453,7 +453,7 @@ class FolderSinkExclusionArgs:
453
453
  @pulumi.getter
454
454
  def filter(self) -> pulumi.Input[str]:
455
455
  """
456
- 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
456
+ 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
457
457
  write a filter.
458
458
  """
459
459
  return pulumi.get(self, "filter")
@@ -1061,7 +1061,7 @@ class OrganizationSinkExclusionArgs:
1061
1061
  description: Optional[pulumi.Input[str]] = None,
1062
1062
  disabled: Optional[pulumi.Input[bool]] = None):
1063
1063
  """
1064
- :param pulumi.Input[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
1064
+ :param pulumi.Input[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
1065
1065
  write a filter.
1066
1066
  :param pulumi.Input[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.
1067
1067
  :param pulumi.Input[str] description: A description of this exclusion.
@@ -1078,7 +1078,7 @@ class OrganizationSinkExclusionArgs:
1078
1078
  @pulumi.getter
1079
1079
  def filter(self) -> pulumi.Input[str]:
1080
1080
  """
1081
- 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
1081
+ 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
1082
1082
  write a filter.
1083
1083
  """
1084
1084
  return pulumi.get(self, "filter")
@@ -1293,7 +1293,7 @@ class ProjectSinkExclusionArgs:
1293
1293
  description: Optional[pulumi.Input[str]] = None,
1294
1294
  disabled: Optional[pulumi.Input[bool]] = None):
1295
1295
  """
1296
- :param pulumi.Input[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
1296
+ :param pulumi.Input[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
1297
1297
  write a filter.
1298
1298
  :param pulumi.Input[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.
1299
1299
  :param pulumi.Input[str] description: A description of this exclusion.
@@ -1310,7 +1310,7 @@ class ProjectSinkExclusionArgs:
1310
1310
  @pulumi.getter
1311
1311
  def filter(self) -> pulumi.Input[str]:
1312
1312
  """
1313
- 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
1313
+ 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
1314
1314
  write a filter.
1315
1315
  """
1316
1316
  return pulumi.get(self, "filter")
@@ -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")
@@ -182,6 +182,7 @@ class AlertPolicyAlertStrategyNotificationRateLimitArgs:
182
182
  period: Optional[pulumi.Input[str]] = None):
183
183
  """
184
184
  :param pulumi.Input[str] period: Not more than one notification per period.
185
+ A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
185
186
  """
186
187
  if period is not None:
187
188
  pulumi.set(__self__, "period", period)
@@ -191,6 +192,7 @@ class AlertPolicyAlertStrategyNotificationRateLimitArgs:
191
192
  def period(self) -> Optional[pulumi.Input[str]]:
192
193
  """
193
194
  Not more than one notification per period.
195
+ A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
194
196
  """
195
197
  return pulumi.get(self, "period")
196
198
 
@@ -3727,7 +3729,7 @@ class UptimeCheckConfigHttpCheckArgs:
3727
3729
  Structure is documented below.
3728
3730
  :param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
3729
3731
  Structure is documented below.
3730
- :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=`.
3731
3733
  :param pulumi.Input[str] content_type: The content type to use for the check.
3732
3734
  Possible values are: `TYPE_UNSPECIFIED`, `URL_ENCODED`, `USER_PROVIDED`.
3733
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.
@@ -3800,7 +3802,7 @@ class UptimeCheckConfigHttpCheckArgs:
3800
3802
  @pulumi.getter
3801
3803
  def body(self) -> Optional[pulumi.Input[str]]:
3802
3804
  """
3803
- 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=`.
3804
3806
  """
3805
3807
  return pulumi.get(self, "body")
3806
3808
 
@@ -209,6 +209,7 @@ class AlertPolicyAlertStrategyNotificationRateLimit(dict):
209
209
  period: Optional[str] = None):
210
210
  """
211
211
  :param str period: Not more than one notification per period.
212
+ A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
212
213
  """
213
214
  if period is not None:
214
215
  pulumi.set(__self__, "period", period)
@@ -218,6 +219,7 @@ class AlertPolicyAlertStrategyNotificationRateLimit(dict):
218
219
  def period(self) -> Optional[str]:
219
220
  """
220
221
  Not more than one notification per period.
222
+ A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
221
223
  """
222
224
  return pulumi.get(self, "period")
223
225
 
@@ -3858,7 +3860,7 @@ class UptimeCheckConfigHttpCheck(dict):
3858
3860
  Structure is documented below.
3859
3861
  :param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
3860
3862
  Structure is documented below.
3861
- :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=`.
3862
3864
  :param str content_type: The content type to use for the check.
3863
3865
  Possible values are: `TYPE_UNSPECIFIED`, `URL_ENCODED`, `USER_PROVIDED`.
3864
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.
@@ -3923,7 +3925,7 @@ class UptimeCheckConfigHttpCheck(dict):
3923
3925
  @pulumi.getter
3924
3926
  def body(self) -> Optional[str]:
3925
3927
  """
3926
- 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=`.
3927
3929
  """
3928
3930
  return pulumi.get(self, "body")
3929
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: