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
@@ -413,8 +413,10 @@ class _InterconnectAttachmentState:
413
413
  bandwidth: Optional[pulumi.Input[str]] = None,
414
414
  candidate_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
415
415
  cloud_router_ip_address: Optional[pulumi.Input[str]] = None,
416
+ cloud_router_ipv6_address: Optional[pulumi.Input[str]] = None,
416
417
  creation_timestamp: Optional[pulumi.Input[str]] = None,
417
418
  customer_router_ip_address: Optional[pulumi.Input[str]] = None,
419
+ customer_router_ipv6_address: Optional[pulumi.Input[str]] = None,
418
420
  description: Optional[pulumi.Input[str]] = None,
419
421
  edge_availability_domain: Optional[pulumi.Input[str]] = None,
420
422
  encryption: Optional[pulumi.Input[str]] = None,
@@ -453,9 +455,13 @@ class _InterconnectAttachmentState:
453
455
  Google will randomly select an unused /29 from all of link-local space.
454
456
  :param pulumi.Input[str] cloud_router_ip_address: IPv4 address + prefix length to be configured on Cloud Router
455
457
  Interface for this interconnect attachment.
458
+ :param pulumi.Input[str] cloud_router_ipv6_address: IPv6 address + prefix length to be configured on Cloud Router
459
+ Interface for this interconnect attachment.
456
460
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
457
461
  :param pulumi.Input[str] customer_router_ip_address: IPv4 address + prefix length to be configured on the customer
458
462
  router subinterface for this interconnect attachment.
463
+ :param pulumi.Input[str] customer_router_ipv6_address: IPv6 address + prefix length to be configured on the customer
464
+ router subinterface for this interconnect attachment.
459
465
  :param pulumi.Input[str] description: An optional description of this resource.
460
466
  :param pulumi.Input[str] edge_availability_domain: Desired availability domain for the attachment. Only available for type
461
467
  PARTNER, at creation time. For improved reliability, customers should
@@ -544,10 +550,14 @@ class _InterconnectAttachmentState:
544
550
  pulumi.set(__self__, "candidate_subnets", candidate_subnets)
545
551
  if cloud_router_ip_address is not None:
546
552
  pulumi.set(__self__, "cloud_router_ip_address", cloud_router_ip_address)
553
+ if cloud_router_ipv6_address is not None:
554
+ pulumi.set(__self__, "cloud_router_ipv6_address", cloud_router_ipv6_address)
547
555
  if creation_timestamp is not None:
548
556
  pulumi.set(__self__, "creation_timestamp", creation_timestamp)
549
557
  if customer_router_ip_address is not None:
550
558
  pulumi.set(__self__, "customer_router_ip_address", customer_router_ip_address)
559
+ if customer_router_ipv6_address is not None:
560
+ pulumi.set(__self__, "customer_router_ipv6_address", customer_router_ipv6_address)
551
561
  if description is not None:
552
562
  pulumi.set(__self__, "description", description)
553
563
  if edge_availability_domain is not None:
@@ -648,6 +658,19 @@ class _InterconnectAttachmentState:
648
658
  def cloud_router_ip_address(self, value: Optional[pulumi.Input[str]]):
649
659
  pulumi.set(self, "cloud_router_ip_address", value)
650
660
 
661
+ @property
662
+ @pulumi.getter(name="cloudRouterIpv6Address")
663
+ def cloud_router_ipv6_address(self) -> Optional[pulumi.Input[str]]:
664
+ """
665
+ IPv6 address + prefix length to be configured on Cloud Router
666
+ Interface for this interconnect attachment.
667
+ """
668
+ return pulumi.get(self, "cloud_router_ipv6_address")
669
+
670
+ @cloud_router_ipv6_address.setter
671
+ def cloud_router_ipv6_address(self, value: Optional[pulumi.Input[str]]):
672
+ pulumi.set(self, "cloud_router_ipv6_address", value)
673
+
651
674
  @property
652
675
  @pulumi.getter(name="creationTimestamp")
653
676
  def creation_timestamp(self) -> Optional[pulumi.Input[str]]:
@@ -673,6 +696,19 @@ class _InterconnectAttachmentState:
673
696
  def customer_router_ip_address(self, value: Optional[pulumi.Input[str]]):
674
697
  pulumi.set(self, "customer_router_ip_address", value)
675
698
 
699
+ @property
700
+ @pulumi.getter(name="customerRouterIpv6Address")
701
+ def customer_router_ipv6_address(self) -> Optional[pulumi.Input[str]]:
702
+ """
703
+ IPv6 address + prefix length to be configured on the customer
704
+ router subinterface for this interconnect attachment.
705
+ """
706
+ return pulumi.get(self, "customer_router_ipv6_address")
707
+
708
+ @customer_router_ipv6_address.setter
709
+ def customer_router_ipv6_address(self, value: Optional[pulumi.Input[str]]):
710
+ pulumi.set(self, "customer_router_ipv6_address", value)
711
+
676
712
  @property
677
713
  @pulumi.getter
678
714
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -1321,8 +1357,10 @@ class InterconnectAttachment(pulumi.CustomResource):
1321
1357
  __props__.__dict__["type"] = type
1322
1358
  __props__.__dict__["vlan_tag8021q"] = vlan_tag8021q
1323
1359
  __props__.__dict__["cloud_router_ip_address"] = None
1360
+ __props__.__dict__["cloud_router_ipv6_address"] = None
1324
1361
  __props__.__dict__["creation_timestamp"] = None
1325
1362
  __props__.__dict__["customer_router_ip_address"] = None
1363
+ __props__.__dict__["customer_router_ipv6_address"] = None
1326
1364
  __props__.__dict__["google_reference_id"] = None
1327
1365
  __props__.__dict__["pairing_key"] = None
1328
1366
  __props__.__dict__["partner_asn"] = None
@@ -1343,8 +1381,10 @@ class InterconnectAttachment(pulumi.CustomResource):
1343
1381
  bandwidth: Optional[pulumi.Input[str]] = None,
1344
1382
  candidate_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1345
1383
  cloud_router_ip_address: Optional[pulumi.Input[str]] = None,
1384
+ cloud_router_ipv6_address: Optional[pulumi.Input[str]] = None,
1346
1385
  creation_timestamp: Optional[pulumi.Input[str]] = None,
1347
1386
  customer_router_ip_address: Optional[pulumi.Input[str]] = None,
1387
+ customer_router_ipv6_address: Optional[pulumi.Input[str]] = None,
1348
1388
  description: Optional[pulumi.Input[str]] = None,
1349
1389
  edge_availability_domain: Optional[pulumi.Input[str]] = None,
1350
1390
  encryption: Optional[pulumi.Input[str]] = None,
@@ -1388,9 +1428,13 @@ class InterconnectAttachment(pulumi.CustomResource):
1388
1428
  Google will randomly select an unused /29 from all of link-local space.
1389
1429
  :param pulumi.Input[str] cloud_router_ip_address: IPv4 address + prefix length to be configured on Cloud Router
1390
1430
  Interface for this interconnect attachment.
1431
+ :param pulumi.Input[str] cloud_router_ipv6_address: IPv6 address + prefix length to be configured on Cloud Router
1432
+ Interface for this interconnect attachment.
1391
1433
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
1392
1434
  :param pulumi.Input[str] customer_router_ip_address: IPv4 address + prefix length to be configured on the customer
1393
1435
  router subinterface for this interconnect attachment.
1436
+ :param pulumi.Input[str] customer_router_ipv6_address: IPv6 address + prefix length to be configured on the customer
1437
+ router subinterface for this interconnect attachment.
1394
1438
  :param pulumi.Input[str] description: An optional description of this resource.
1395
1439
  :param pulumi.Input[str] edge_availability_domain: Desired availability domain for the attachment. Only available for type
1396
1440
  PARTNER, at creation time. For improved reliability, customers should
@@ -1479,8 +1523,10 @@ class InterconnectAttachment(pulumi.CustomResource):
1479
1523
  __props__.__dict__["bandwidth"] = bandwidth
1480
1524
  __props__.__dict__["candidate_subnets"] = candidate_subnets
1481
1525
  __props__.__dict__["cloud_router_ip_address"] = cloud_router_ip_address
1526
+ __props__.__dict__["cloud_router_ipv6_address"] = cloud_router_ipv6_address
1482
1527
  __props__.__dict__["creation_timestamp"] = creation_timestamp
1483
1528
  __props__.__dict__["customer_router_ip_address"] = customer_router_ip_address
1529
+ __props__.__dict__["customer_router_ipv6_address"] = customer_router_ipv6_address
1484
1530
  __props__.__dict__["description"] = description
1485
1531
  __props__.__dict__["edge_availability_domain"] = edge_availability_domain
1486
1532
  __props__.__dict__["encryption"] = encryption
@@ -1547,6 +1593,15 @@ class InterconnectAttachment(pulumi.CustomResource):
1547
1593
  """
1548
1594
  return pulumi.get(self, "cloud_router_ip_address")
1549
1595
 
1596
+ @property
1597
+ @pulumi.getter(name="cloudRouterIpv6Address")
1598
+ def cloud_router_ipv6_address(self) -> pulumi.Output[str]:
1599
+ """
1600
+ IPv6 address + prefix length to be configured on Cloud Router
1601
+ Interface for this interconnect attachment.
1602
+ """
1603
+ return pulumi.get(self, "cloud_router_ipv6_address")
1604
+
1550
1605
  @property
1551
1606
  @pulumi.getter(name="creationTimestamp")
1552
1607
  def creation_timestamp(self) -> pulumi.Output[str]:
@@ -1564,6 +1619,15 @@ class InterconnectAttachment(pulumi.CustomResource):
1564
1619
  """
1565
1620
  return pulumi.get(self, "customer_router_ip_address")
1566
1621
 
1622
+ @property
1623
+ @pulumi.getter(name="customerRouterIpv6Address")
1624
+ def customer_router_ipv6_address(self) -> pulumi.Output[str]:
1625
+ """
1626
+ IPv6 address + prefix length to be configured on the customer
1627
+ router subinterface for this interconnect attachment.
1628
+ """
1629
+ return pulumi.get(self, "customer_router_ipv6_address")
1630
+
1567
1631
  @property
1568
1632
  @pulumi.getter
1569
1633
  def description(self) -> pulumi.Output[Optional[str]]:
@@ -276,6 +276,10 @@ class NetworkEndpoint(pulumi.CustomResource):
276
276
  single subnet. **NOTE**: Network endpoints cannot be created outside of a
277
277
  network endpoint group.
278
278
 
279
+ > **NOTE** In case the Endpoint's Instance is recreated, it's needed to
280
+ perform `apply` twice. To avoid situations like this, please use this resource
281
+ with the lifecycle `update_triggered_by` method, with the passed Instance's ID.
282
+
279
283
  To get more information about NetworkEndpoint, see:
280
284
 
281
285
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkEndpointGroups)
@@ -389,6 +393,10 @@ class NetworkEndpoint(pulumi.CustomResource):
389
393
  single subnet. **NOTE**: Network endpoints cannot be created outside of a
390
394
  network endpoint group.
391
395
 
396
+ > **NOTE** In case the Endpoint's Instance is recreated, it's needed to
397
+ perform `apply` twice. To avoid situations like this, please use this resource
398
+ with the lifecycle `update_triggered_by` method, with the passed Instance's ID.
399
+
392
400
  To get more information about NetworkEndpoint, see:
393
401
 
394
402
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkEndpointGroups)
@@ -204,6 +204,10 @@ class NetworkEndpointList(pulumi.CustomResource):
204
204
  This resource is authoritative for a single NEG. Any endpoints not specified
205
205
  by this resource will be deleted when the resource configuration is applied.
206
206
 
207
+ > **NOTE** In case the Endpoint's Instance is recreated, it's needed to
208
+ perform `apply` twice. To avoid situations like this, please use this resource
209
+ with the lifecycle `update_triggered_by` method, with the passed Instance's ID.
210
+
207
211
  To get more information about NetworkEndpoints, see:
208
212
 
209
213
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkEndpointGroups)
@@ -336,6 +340,10 @@ class NetworkEndpointList(pulumi.CustomResource):
336
340
  This resource is authoritative for a single NEG. Any endpoints not specified
337
341
  by this resource will be deleted when the resource configuration is applied.
338
342
 
343
+ > **NOTE** In case the Endpoint's Instance is recreated, it's needed to
344
+ perform `apply` twice. To avoid situations like this, please use this resource
345
+ with the lifecycle `update_triggered_by` method, with the passed Instance's ID.
346
+
339
347
  To get more information about NetworkEndpoints, see:
340
348
 
341
349
  * [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkEndpointGroups)
@@ -1234,9 +1234,8 @@ class AutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicas(dict):
1234
1234
  """
1235
1235
  :param int fixed: Specifies a fixed number of VM instances. This must be a positive
1236
1236
  integer.
1237
- :param int percent: Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
1238
- For example, specify 80 for 80%!
1239
- (MISSING)
1237
+ :param int percent: Specifies a percentage of instances between 0 to 100%, inclusive.
1238
+ For example, specify 80 for 80%.
1240
1239
  """
1241
1240
  if fixed is not None:
1242
1241
  pulumi.set(__self__, "fixed", fixed)
@@ -1256,9 +1255,8 @@ class AutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicas(dict):
1256
1255
  @pulumi.getter
1257
1256
  def percent(self) -> Optional[int]:
1258
1257
  """
1259
- Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
1260
- For example, specify 80 for 80%!
1261
- (MISSING)
1258
+ Specifies a percentage of instances between 0 to 100%, inclusive.
1259
+ For example, specify 80 for 80%.
1262
1260
  """
1263
1261
  return pulumi.get(self, "percent")
1264
1262
 
@@ -1325,9 +1323,8 @@ class AutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicas(dict):
1325
1323
  """
1326
1324
  :param int fixed: Specifies a fixed number of VM instances. This must be a positive
1327
1325
  integer.
1328
- :param int percent: Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
1329
- For example, specify 80 for 80%!
1330
- (MISSING)
1326
+ :param int percent: Specifies a percentage of instances between 0 to 100%, inclusive.
1327
+ For example, specify 80 for 80%.
1331
1328
  """
1332
1329
  if fixed is not None:
1333
1330
  pulumi.set(__self__, "fixed", fixed)
@@ -1347,9 +1344,8 @@ class AutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicas(dict):
1347
1344
  @pulumi.getter
1348
1345
  def percent(self) -> Optional[int]:
1349
1346
  """
1350
- Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
1351
- For example, specify 80 for 80%!
1352
- (MISSING)
1347
+ Specifies a percentage of instances between 0 to 100%, inclusive.
1348
+ For example, specify 80 for 80%.
1353
1349
  """
1354
1350
  return pulumi.get(self, "percent")
1355
1351
 
@@ -1919,10 +1915,10 @@ class BackendServiceBackend(dict):
1919
1915
  Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
1920
1916
  :param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
1921
1917
  (based on UTILIZATION, RATE or CONNECTION).
1922
- Default value is 1, which means the group will serve up to 100%!
1923
- (MISSING)of its configured capacity (depending on balancingMode). A
1918
+ Default value is 1, which means the group will serve up to 100%
1919
+ of its configured capacity (depending on balancingMode). A
1924
1920
  setting of 0 means the group is completely drained, offering
1925
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
1921
+ 0% of its available Capacity. Valid range is [0.0,1.0].
1926
1922
  :param str description: An optional description of this resource.
1927
1923
  Provide this property when you create the resource.
1928
1924
  :param int max_connections: The max number of simultaneous connections for the group. Can
@@ -2022,10 +2018,10 @@ class BackendServiceBackend(dict):
2022
2018
  """
2023
2019
  A multiplier applied to the group's maximum servicing capacity
2024
2020
  (based on UTILIZATION, RATE or CONNECTION).
2025
- Default value is 1, which means the group will serve up to 100%!
2026
- (MISSING)of its configured capacity (depending on balancingMode). A
2021
+ Default value is 1, which means the group will serve up to 100%
2022
+ of its configured capacity (depending on balancingMode). A
2027
2023
  setting of 0 means the group is completely drained, offering
2028
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
2024
+ 0% of its available Capacity. Valid range is [0.0,1.0].
2029
2025
  """
2030
2026
  return pulumi.get(self, "capacity_scaler")
2031
2027
 
@@ -3258,8 +3254,7 @@ class BackendServiceOutlierDetection(dict):
3258
3254
  ejections as well as hosts being returned to service. Defaults to 10 seconds.
3259
3255
  Structure is documented below.
3260
3256
  :param int max_ejection_percent: Maximum percentage of hosts in the load balancing pool for the backend service
3261
- that can be ejected. Defaults to 10%!
3262
- (MISSING)
3257
+ that can be ejected. Defaults to 10%.
3263
3258
  :param int success_rate_minimum_hosts: The number of hosts in a cluster that must have enough request volume to detect
3264
3259
  success rate outliers. If the number of hosts is less than this setting, outlier
3265
3260
  detection via success rate statistics is not performed for any host in the
@@ -3375,8 +3370,7 @@ class BackendServiceOutlierDetection(dict):
3375
3370
  def max_ejection_percent(self) -> Optional[int]:
3376
3371
  """
3377
3372
  Maximum percentage of hosts in the load balancing pool for the backend service
3378
- that can be ejected. Defaults to 10%!
3379
- (MISSING)
3373
+ that can be ejected. Defaults to 10%.
3380
3374
  """
3381
3375
  return pulumi.get(self, "max_ejection_percent")
3382
3376
 
@@ -5751,7 +5745,9 @@ class InstanceAttachedDisk(dict):
5751
5745
  (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption),
5752
5746
  encoded in [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5753
5747
  to encrypt this disk. Only one of `kms_key_self_link` and `disk_encryption_key_raw` may be set.
5754
- :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
5748
+ :param str disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5749
+ encoded SHA-256 hash of the [customer-supplied encryption key]
5750
+ (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
5755
5751
  :param str kms_key_self_link: The self_link of the encryption key that is
5756
5752
  stored in Google Cloud KMS to encrypt this disk. Only one of `kms_key_self_link`
5757
5753
  and `disk_encryption_key_raw` may be set.
@@ -5804,7 +5800,9 @@ class InstanceAttachedDisk(dict):
5804
5800
  @pulumi.getter(name="diskEncryptionKeySha256")
5805
5801
  def disk_encryption_key_sha256(self) -> Optional[str]:
5806
5802
  """
5807
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
5803
+ The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5804
+ encoded SHA-256 hash of the [customer-supplied encryption key]
5805
+ (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
5808
5806
  """
5809
5807
  return pulumi.get(self, "disk_encryption_key_sha256")
5810
5808
 
@@ -5878,7 +5876,9 @@ class InstanceBootDisk(dict):
5878
5876
  encoded in [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5879
5877
  to encrypt this disk. Only one of `kms_key_self_link` and `disk_encryption_key_raw`
5880
5878
  may be set.
5881
- :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
5879
+ :param str disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5880
+ encoded SHA-256 hash of the [customer-supplied encryption key]
5881
+ (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
5882
5882
  :param 'InstanceBootDiskInitializeParamsArgs' initialize_params: Parameters for a new disk that will be created
5883
5883
  alongside the new instance. Either `initialize_params` or `source` must be set.
5884
5884
  Structure is documented below.
@@ -5942,7 +5942,9 @@ class InstanceBootDisk(dict):
5942
5942
  @pulumi.getter(name="diskEncryptionKeySha256")
5943
5943
  def disk_encryption_key_sha256(self) -> Optional[str]:
5944
5944
  """
5945
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
5945
+ The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
5946
+ encoded SHA-256 hash of the [customer-supplied encryption key]
5947
+ (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
5946
5948
  """
5947
5949
  return pulumi.get(self, "disk_encryption_key_sha256")
5948
5950
 
@@ -15431,9 +15433,8 @@ class RegionAutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicas(dic
15431
15433
  """
15432
15434
  :param int fixed: Specifies a fixed number of VM instances. This must be a positive
15433
15435
  integer.
15434
- :param int percent: Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
15435
- For example, specify 80 for 80%!
15436
- (MISSING)
15436
+ :param int percent: Specifies a percentage of instances between 0 to 100%, inclusive.
15437
+ For example, specify 80 for 80%.
15437
15438
  """
15438
15439
  if fixed is not None:
15439
15440
  pulumi.set(__self__, "fixed", fixed)
@@ -15453,9 +15454,8 @@ class RegionAutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicas(dic
15453
15454
  @pulumi.getter
15454
15455
  def percent(self) -> Optional[int]:
15455
15456
  """
15456
- Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
15457
- For example, specify 80 for 80%!
15458
- (MISSING)
15457
+ Specifies a percentage of instances between 0 to 100%, inclusive.
15458
+ For example, specify 80 for 80%.
15459
15459
  """
15460
15460
  return pulumi.get(self, "percent")
15461
15461
 
@@ -15522,9 +15522,8 @@ class RegionAutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicas(dict):
15522
15522
  """
15523
15523
  :param int fixed: Specifies a fixed number of VM instances. This must be a positive
15524
15524
  integer.
15525
- :param int percent: Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
15526
- For example, specify 80 for 80%!
15527
- (MISSING)
15525
+ :param int percent: Specifies a percentage of instances between 0 to 100%, inclusive.
15526
+ For example, specify 80 for 80%.
15528
15527
  """
15529
15528
  if fixed is not None:
15530
15529
  pulumi.set(__self__, "fixed", fixed)
@@ -15544,9 +15543,8 @@ class RegionAutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicas(dict):
15544
15543
  @pulumi.getter
15545
15544
  def percent(self) -> Optional[int]:
15546
15545
  """
15547
- Specifies a percentage of instances between 0 to 100%!,(MISSING) inclusive.
15548
- For example, specify 80 for 80%!
15549
- (MISSING)
15546
+ Specifies a percentage of instances between 0 to 100%, inclusive.
15547
+ For example, specify 80 for 80%.
15550
15548
  """
15551
15549
  return pulumi.get(self, "percent")
15552
15550
 
@@ -15736,7 +15734,7 @@ class RegionBackendServiceBackend(dict):
15736
15734
  but is required for non-INTERNAL backend service. The total
15737
15735
  capacity_scaler for all backends must be non-zero.
15738
15736
  A setting of 0 means the group is completely drained, offering
15739
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
15737
+ 0% of its available Capacity. Valid range is [0.0,1.0].
15740
15738
  :param str description: An optional description of this resource.
15741
15739
  Provide this property when you create the resource.
15742
15740
  :param bool failover: This field designates whether this is a failover backend. More
@@ -15851,7 +15849,7 @@ class RegionBackendServiceBackend(dict):
15851
15849
  but is required for non-INTERNAL backend service. The total
15852
15850
  capacity_scaler for all backends must be non-zero.
15853
15851
  A setting of 0 means the group is completely drained, offering
15854
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
15852
+ 0% of its available Capacity. Valid range is [0.0,1.0].
15855
15853
  """
15856
15854
  return pulumi.get(self, "capacity_scaler")
15857
15855
 
@@ -17123,8 +17121,7 @@ class RegionBackendServiceOutlierDetection(dict):
17123
17121
  ejections as well as hosts being returned to service. Defaults to 10 seconds.
17124
17122
  Structure is documented below.
17125
17123
  :param int max_ejection_percent: Maximum percentage of hosts in the load balancing pool for the backend service
17126
- that can be ejected. Defaults to 10%!
17127
- (MISSING)
17124
+ that can be ejected. Defaults to 10%.
17128
17125
  :param int success_rate_minimum_hosts: The number of hosts in a cluster that must have enough request volume to detect
17129
17126
  success rate outliers. If the number of hosts is less than this setting, outlier
17130
17127
  detection via success rate statistics is not performed for any host in the
@@ -17240,8 +17237,7 @@ class RegionBackendServiceOutlierDetection(dict):
17240
17237
  def max_ejection_percent(self) -> Optional[int]:
17241
17238
  """
17242
17239
  Maximum percentage of hosts in the load balancing pool for the backend service
17243
- that can be ejected. Defaults to 10%!
17244
- (MISSING)
17240
+ that can be ejected. Defaults to 10%.
17245
17241
  """
17246
17242
  return pulumi.get(self, "max_ejection_percent")
17247
17243
 
@@ -38511,10 +38507,10 @@ class GetBackendServiceBackendResult(dict):
38511
38507
  :param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
38512
38508
  (based on UTILIZATION, RATE or CONNECTION).
38513
38509
 
38514
- Default value is 1, which means the group will serve up to 100%!
38515
- (MISSING)of its configured capacity (depending on balancingMode). A
38510
+ Default value is 1, which means the group will serve up to 100%
38511
+ of its configured capacity (depending on balancingMode). A
38516
38512
  setting of 0 means the group is completely drained, offering
38517
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
38513
+ 0% of its available Capacity. Valid range is [0.0,1.0].
38518
38514
  :param str description: Textual description for the Backend Service.
38519
38515
  :param str group: The fully-qualified URL of an Instance Group or Network Endpoint
38520
38516
  Group resource. In case of instance group this defines the list
@@ -38604,10 +38600,10 @@ class GetBackendServiceBackendResult(dict):
38604
38600
  A multiplier applied to the group's maximum servicing capacity
38605
38601
  (based on UTILIZATION, RATE or CONNECTION).
38606
38602
 
38607
- Default value is 1, which means the group will serve up to 100%!
38608
- (MISSING)of its configured capacity (depending on balancingMode). A
38603
+ Default value is 1, which means the group will serve up to 100%
38604
+ of its configured capacity (depending on balancingMode). A
38609
38605
  setting of 0 means the group is completely drained, offering
38610
- 0%!o(MISSING)f its available Capacity. Valid range is [0.0,1.0].
38606
+ 0% of its available Capacity. Valid range is [0.0,1.0].
38611
38607
  """
38612
38608
  return pulumi.get(self, "capacity_scaler")
38613
38609
 
@@ -39503,8 +39499,7 @@ class GetBackendServiceOutlierDetectionResult(dict):
39503
39499
  :param Sequence['GetBackendServiceOutlierDetectionIntervalArgs'] intervals: Time interval between ejection sweep analysis. This can result in both new
39504
39500
  ejections as well as hosts being returned to service. Defaults to 10 seconds.
39505
39501
  :param int max_ejection_percent: Maximum percentage of hosts in the load balancing pool for the backend service
39506
- that can be ejected. Defaults to 10%!
39507
- (MISSING)
39502
+ that can be ejected. Defaults to 10%.
39508
39503
  :param int success_rate_minimum_hosts: The number of hosts in a cluster that must have enough request volume to detect
39509
39504
  success rate outliers. If the number of hosts is less than this setting, outlier
39510
39505
  detection via success rate statistics is not performed for any host in the
@@ -39607,8 +39602,7 @@ class GetBackendServiceOutlierDetectionResult(dict):
39607
39602
  def max_ejection_percent(self) -> int:
39608
39603
  """
39609
39604
  Maximum percentage of hosts in the load balancing pool for the backend service
39610
- that can be ejected. Defaults to 10%!
39611
- (MISSING)
39605
+ that can be ejected. Defaults to 10%.
39612
39606
  """
39613
39607
  return pulumi.get(self, "max_ejection_percent")
39614
39608
 
@@ -41788,7 +41782,9 @@ class GetInstanceAttachedDiskResult(dict):
41788
41782
  :param str device_name: Name with which the attached disk is accessible
41789
41783
  under `/dev/disk/by-id/`
41790
41784
  :param str disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
41791
- :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
41785
+ :param str disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
41786
+ encoded SHA-256 hash of the [customer-supplied encryption key]
41787
+ (<https://cloud.google.com/compute/docs/disks/customer-supplied-encryption>) that protects this resource.
41792
41788
  :param str kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
41793
41789
  :param str mode: Read/write mode for the disk. One of `"READ_ONLY"` or `"READ_WRITE"`.
41794
41790
  :param str source: The name or self_link of the disk attached to this instance.
@@ -41821,7 +41817,9 @@ class GetInstanceAttachedDiskResult(dict):
41821
41817
  @pulumi.getter(name="diskEncryptionKeySha256")
41822
41818
  def disk_encryption_key_sha256(self) -> str:
41823
41819
  """
41824
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
41820
+ The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
41821
+ encoded SHA-256 hash of the [customer-supplied encryption key]
41822
+ (<https://cloud.google.com/compute/docs/disks/customer-supplied-encryption>) that protects this resource.
41825
41823
  """
41826
41824
  return pulumi.get(self, "disk_encryption_key_sha256")
41827
41825
 
@@ -41866,7 +41864,9 @@ class GetInstanceBootDiskResult(dict):
41866
41864
  :param str device_name: Name with which the attached disk is accessible
41867
41865
  under `/dev/disk/by-id/`
41868
41866
  :param str disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
41869
- :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
41867
+ :param str disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
41868
+ encoded SHA-256 hash of the [customer-supplied encryption key]
41869
+ (<https://cloud.google.com/compute/docs/disks/customer-supplied-encryption>) that protects this resource.
41870
41870
  :param Sequence['GetInstanceBootDiskInitializeParamArgs'] initialize_params: Parameters with which a disk was created alongside the instance.
41871
41871
  Structure is documented below.
41872
41872
  :param str kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
@@ -41911,7 +41911,9 @@ class GetInstanceBootDiskResult(dict):
41911
41911
  @pulumi.getter(name="diskEncryptionKeySha256")
41912
41912
  def disk_encryption_key_sha256(self) -> str:
41913
41913
  """
41914
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
41914
+ The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
41915
+ encoded SHA-256 hash of the [customer-supplied encryption key]
41916
+ (<https://cloud.google.com/compute/docs/disks/customer-supplied-encryption>) that protects this resource.
41915
41917
  """
41916
41918
  return pulumi.get(self, "disk_encryption_key_sha256")
41917
41919
 
@@ -42684,7 +42686,7 @@ class GetInstanceNetworkInterfaceResult(dict):
42684
42686
  :param str name: The name of the instance. One of `name` or `self_link` must be provided.
42685
42687
  :param str network: The name or self_link of the network attached to this interface.
42686
42688
  :param str network_attachment: Beta The URL of the network attachment to this interface.
42687
- :param str network_ip: The private IP address assigned to the instance.
42689
+ :param str network_ip: The internal ip address of the instance, either manually or dynamically assigned.
42688
42690
  :param str nic_type: The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
42689
42691
  :param int queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
42690
42692
  :param str security_policy: A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
@@ -42786,7 +42788,7 @@ class GetInstanceNetworkInterfaceResult(dict):
42786
42788
  @pulumi.getter(name="networkIp")
42787
42789
  def network_ip(self) -> str:
42788
42790
  """
42789
- The private IP address assigned to the instance.
42791
+ The internal ip address of the instance, either manually or dynamically assigned.
42790
42792
  """
42791
42793
  return pulumi.get(self, "network_ip")
42792
42794
 
@@ -28,8 +28,8 @@ class RegionAutoscalerArgs:
28
28
  define one or more of the policies for an autoscaler: cpuUtilization,
29
29
  customMetricUtilizations, and loadBalancingUtilization.
30
30
  If none of these are specified, the default will be to autoscale based
31
- on cpuUtilization to 0.6 or 60%!
32
- (MISSING)Structure is documented below.
31
+ on cpuUtilization to 0.6 or 60%.
32
+ Structure is documented below.
33
33
  :param pulumi.Input[str] target: URL of the managed instance group that this autoscaler will scale.
34
34
  :param pulumi.Input[str] description: An optional description of this resource.
35
35
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -60,8 +60,8 @@ class RegionAutoscalerArgs:
60
60
  define one or more of the policies for an autoscaler: cpuUtilization,
61
61
  customMetricUtilizations, and loadBalancingUtilization.
62
62
  If none of these are specified, the default will be to autoscale based
63
- on cpuUtilization to 0.6 or 60%!
64
- (MISSING)Structure is documented below.
63
+ on cpuUtilization to 0.6 or 60%.
64
+ Structure is documented below.
65
65
  """
66
66
  return pulumi.get(self, "autoscaling_policy")
67
67
 
@@ -152,8 +152,8 @@ class _RegionAutoscalerState:
152
152
  define one or more of the policies for an autoscaler: cpuUtilization,
153
153
  customMetricUtilizations, and loadBalancingUtilization.
154
154
  If none of these are specified, the default will be to autoscale based
155
- on cpuUtilization to 0.6 or 60%!
156
- (MISSING)Structure is documented below.
155
+ on cpuUtilization to 0.6 or 60%.
156
+ Structure is documented below.
157
157
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
158
158
  :param pulumi.Input[str] description: An optional description of this resource.
159
159
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -192,8 +192,8 @@ class _RegionAutoscalerState:
192
192
  define one or more of the policies for an autoscaler: cpuUtilization,
193
193
  customMetricUtilizations, and loadBalancingUtilization.
194
194
  If none of these are specified, the default will be to autoscale based
195
- on cpuUtilization to 0.6 or 60%!
196
- (MISSING)Structure is documented below.
195
+ on cpuUtilization to 0.6 or 60%.
196
+ Structure is documented below.
197
197
  """
198
198
  return pulumi.get(self, "autoscaling_policy")
199
199
 
@@ -412,8 +412,8 @@ class RegionAutoscaler(pulumi.CustomResource):
412
412
  define one or more of the policies for an autoscaler: cpuUtilization,
413
413
  customMetricUtilizations, and loadBalancingUtilization.
414
414
  If none of these are specified, the default will be to autoscale based
415
- on cpuUtilization to 0.6 or 60%!
416
- (MISSING)Structure is documented below.
415
+ on cpuUtilization to 0.6 or 60%.
416
+ Structure is documented below.
417
417
  :param pulumi.Input[str] description: An optional description of this resource.
418
418
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
419
419
  the regular expression `a-z?` which means the
@@ -605,8 +605,8 @@ class RegionAutoscaler(pulumi.CustomResource):
605
605
  define one or more of the policies for an autoscaler: cpuUtilization,
606
606
  customMetricUtilizations, and loadBalancingUtilization.
607
607
  If none of these are specified, the default will be to autoscale based
608
- on cpuUtilization to 0.6 or 60%!
609
- (MISSING)Structure is documented below.
608
+ on cpuUtilization to 0.6 or 60%.
609
+ Structure is documented below.
610
610
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
611
611
  :param pulumi.Input[str] description: An optional description of this resource.
612
612
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -642,8 +642,8 @@ class RegionAutoscaler(pulumi.CustomResource):
642
642
  define one or more of the policies for an autoscaler: cpuUtilization,
643
643
  customMetricUtilizations, and loadBalancingUtilization.
644
644
  If none of these are specified, the default will be to autoscale based
645
- on cpuUtilization to 0.6 or 60%!
646
- (MISSING)Structure is documented below.
645
+ on cpuUtilization to 0.6 or 60%.
646
+ Structure is documented below.
647
647
  """
648
648
  return pulumi.get(self, "autoscaling_policy")
649
649