pulumi-gcp 7.17.0a1712402830__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 (55) 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/billing/project_info.py +4 -4
  13. pulumi_gcp/cloudquota/__init__.py +2 -0
  14. pulumi_gcp/cloudquota/_inputs.py +131 -0
  15. pulumi_gcp/cloudquota/outputs.py +118 -0
  16. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  17. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  18. pulumi_gcp/compute/network_endpoint.py +8 -0
  19. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  20. pulumi_gcp/compute/region_backend_service.py +28 -0
  21. pulumi_gcp/compute/target_instance.py +4 -4
  22. pulumi_gcp/config/__init__.pyi +2 -0
  23. pulumi_gcp/config/vars.py +4 -0
  24. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  25. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  26. pulumi_gcp/dataplex/task.py +16 -16
  27. pulumi_gcp/dataproc/_inputs.py +71 -0
  28. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  29. pulumi_gcp/dataproc/metastore_service.py +120 -0
  30. pulumi_gcp/dataproc/outputs.py +128 -0
  31. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  32. pulumi_gcp/firestore/backup_schedule.py +14 -14
  33. pulumi_gcp/firestore/field.py +4 -4
  34. pulumi_gcp/gkehub/membership_binding.py +6 -6
  35. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  36. pulumi_gcp/gkehub/namespace.py +4 -4
  37. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  38. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  39. pulumi_gcp/kms/_inputs.py +46 -0
  40. pulumi_gcp/kms/crypto_key.py +54 -0
  41. pulumi_gcp/kms/crypto_key_version.py +54 -0
  42. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  43. pulumi_gcp/kms/outputs.py +54 -0
  44. pulumi_gcp/orgpolicy/policy.py +2 -2
  45. pulumi_gcp/provider.py +20 -0
  46. pulumi_gcp/pubsub/subscription.py +4 -4
  47. pulumi_gcp/vertex/__init__.py +1 -0
  48. pulumi_gcp/vertex/_inputs.py +169 -0
  49. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  50. pulumi_gcp/vertex/outputs.py +194 -0
  51. pulumi_gcp/vpcaccess/connector.py +77 -28
  52. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +55 -47
  54. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-7.17.0a1712402830.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)
@@ -574,6 +574,7 @@ class _RegionBackendServiceState:
574
574
  enable_cdn: Optional[pulumi.Input[bool]] = None,
575
575
  failover_policy: Optional[pulumi.Input['RegionBackendServiceFailoverPolicyArgs']] = None,
576
576
  fingerprint: Optional[pulumi.Input[str]] = None,
577
+ generated_id: Optional[pulumi.Input[int]] = None,
577
578
  health_checks: Optional[pulumi.Input[str]] = None,
578
579
  iap: Optional[pulumi.Input['RegionBackendServiceIapArgs']] = None,
579
580
  load_balancing_scheme: Optional[pulumi.Input[str]] = None,
@@ -626,6 +627,7 @@ class _RegionBackendServiceState:
626
627
  Structure is documented below.
627
628
  :param pulumi.Input[str] fingerprint: Fingerprint of this resource. A hash of the contents stored in this
628
629
  object. This field is used in optimistic locking.
630
+ :param pulumi.Input[int] generated_id: The unique identifier for the resource. This identifier is defined by the server.
629
631
  :param pulumi.Input[str] health_checks: The set of URLs to HealthCheck resources for health checking
630
632
  this RegionBackendService. Currently at most one health
631
633
  check can be specified.
@@ -709,6 +711,8 @@ class _RegionBackendServiceState:
709
711
  pulumi.set(__self__, "failover_policy", failover_policy)
710
712
  if fingerprint is not None:
711
713
  pulumi.set(__self__, "fingerprint", fingerprint)
714
+ if generated_id is not None:
715
+ pulumi.set(__self__, "generated_id", generated_id)
712
716
  if health_checks is not None:
713
717
  pulumi.set(__self__, "health_checks", health_checks)
714
718
  if iap is not None:
@@ -909,6 +913,18 @@ class _RegionBackendServiceState:
909
913
  def fingerprint(self, value: Optional[pulumi.Input[str]]):
910
914
  pulumi.set(self, "fingerprint", value)
911
915
 
916
+ @property
917
+ @pulumi.getter(name="generatedId")
918
+ def generated_id(self) -> Optional[pulumi.Input[int]]:
919
+ """
920
+ The unique identifier for the resource. This identifier is defined by the server.
921
+ """
922
+ return pulumi.get(self, "generated_id")
923
+
924
+ @generated_id.setter
925
+ def generated_id(self, value: Optional[pulumi.Input[int]]):
926
+ pulumi.set(self, "generated_id", value)
927
+
912
928
  @property
913
929
  @pulumi.getter(name="healthChecks")
914
930
  def health_checks(self) -> Optional[pulumi.Input[str]]:
@@ -1973,6 +1989,7 @@ class RegionBackendService(pulumi.CustomResource):
1973
1989
  __props__.__dict__["timeout_sec"] = timeout_sec
1974
1990
  __props__.__dict__["creation_timestamp"] = None
1975
1991
  __props__.__dict__["fingerprint"] = None
1992
+ __props__.__dict__["generated_id"] = None
1976
1993
  __props__.__dict__["self_link"] = None
1977
1994
  super(RegionBackendService, __self__).__init__(
1978
1995
  'gcp:compute/regionBackendService:RegionBackendService',
@@ -1996,6 +2013,7 @@ class RegionBackendService(pulumi.CustomResource):
1996
2013
  enable_cdn: Optional[pulumi.Input[bool]] = None,
1997
2014
  failover_policy: Optional[pulumi.Input[pulumi.InputType['RegionBackendServiceFailoverPolicyArgs']]] = None,
1998
2015
  fingerprint: Optional[pulumi.Input[str]] = None,
2016
+ generated_id: Optional[pulumi.Input[int]] = None,
1999
2017
  health_checks: Optional[pulumi.Input[str]] = None,
2000
2018
  iap: Optional[pulumi.Input[pulumi.InputType['RegionBackendServiceIapArgs']]] = None,
2001
2019
  load_balancing_scheme: Optional[pulumi.Input[str]] = None,
@@ -2053,6 +2071,7 @@ class RegionBackendService(pulumi.CustomResource):
2053
2071
  Structure is documented below.
2054
2072
  :param pulumi.Input[str] fingerprint: Fingerprint of this resource. A hash of the contents stored in this
2055
2073
  object. This field is used in optimistic locking.
2074
+ :param pulumi.Input[int] generated_id: The unique identifier for the resource. This identifier is defined by the server.
2056
2075
  :param pulumi.Input[str] health_checks: The set of URLs to HealthCheck resources for health checking
2057
2076
  this RegionBackendService. Currently at most one health
2058
2077
  check can be specified.
@@ -2128,6 +2147,7 @@ class RegionBackendService(pulumi.CustomResource):
2128
2147
  __props__.__dict__["enable_cdn"] = enable_cdn
2129
2148
  __props__.__dict__["failover_policy"] = failover_policy
2130
2149
  __props__.__dict__["fingerprint"] = fingerprint
2150
+ __props__.__dict__["generated_id"] = generated_id
2131
2151
  __props__.__dict__["health_checks"] = health_checks
2132
2152
  __props__.__dict__["iap"] = iap
2133
2153
  __props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
@@ -2264,6 +2284,14 @@ class RegionBackendService(pulumi.CustomResource):
2264
2284
  """
2265
2285
  return pulumi.get(self, "fingerprint")
2266
2286
 
2287
+ @property
2288
+ @pulumi.getter(name="generatedId")
2289
+ def generated_id(self) -> pulumi.Output[int]:
2290
+ """
2291
+ The unique identifier for the resource. This identifier is defined by the server.
2292
+ """
2293
+ return pulumi.get(self, "generated_id")
2294
+
2267
2295
  @property
2268
2296
  @pulumi.getter(name="healthChecks")
2269
2297
  def health_checks(self) -> pulumi.Output[Optional[str]]:
@@ -507,7 +507,7 @@ class TargetInstance(pulumi.CustomResource):
507
507
  ))
508
508
  policyddosprotection = gcp.compute.RegionSecurityPolicy("policyddosprotection",
509
509
  region="southamerica-west1",
510
- name="tf-test-policyddos_81126",
510
+ name="tf-test-policyddos_88717",
511
511
  description="ddos protection security policy to set target instance",
512
512
  type="CLOUD_ARMOR_NETWORK",
513
513
  ddos_protection_config=gcp.compute.RegionSecurityPolicyDdosProtectionConfigArgs(
@@ -515,7 +515,7 @@ class TargetInstance(pulumi.CustomResource):
515
515
  ))
516
516
  edge_sec_service = gcp.compute.NetworkEdgeSecurityService("edge_sec_service",
517
517
  region="southamerica-west1",
518
- name="tf-test-edgesec_88717",
518
+ name="tf-test-edgesec_85794",
519
519
  security_policy=policyddosprotection.self_link)
520
520
  regionsecuritypolicy = gcp.compute.RegionSecurityPolicy("regionsecuritypolicy",
521
521
  name="region-secpolicy",
@@ -702,7 +702,7 @@ class TargetInstance(pulumi.CustomResource):
702
702
  ))
703
703
  policyddosprotection = gcp.compute.RegionSecurityPolicy("policyddosprotection",
704
704
  region="southamerica-west1",
705
- name="tf-test-policyddos_81126",
705
+ name="tf-test-policyddos_88717",
706
706
  description="ddos protection security policy to set target instance",
707
707
  type="CLOUD_ARMOR_NETWORK",
708
708
  ddos_protection_config=gcp.compute.RegionSecurityPolicyDdosProtectionConfigArgs(
@@ -710,7 +710,7 @@ class TargetInstance(pulumi.CustomResource):
710
710
  ))
711
711
  edge_sec_service = gcp.compute.NetworkEdgeSecurityService("edge_sec_service",
712
712
  region="southamerica-west1",
713
- name="tf-test-edgesec_88717",
713
+ name="tf-test-edgesec_85794",
714
714
  security_policy=policyddosprotection.self_link)
715
715
  regionsecuritypolicy = gcp.compute.RegionSecurityPolicy("regionsecuritypolicy",
716
716
  name="region-secpolicy",
@@ -222,6 +222,8 @@ impersonateServiceAccountDelegates: Optional[str]
222
222
 
223
223
  integrationConnectorsCustomEndpoint: Optional[str]
224
224
 
225
+ integrationsCustomEndpoint: Optional[str]
226
+
225
227
  kmsCustomEndpoint: Optional[str]
226
228
 
227
229
  loggingCustomEndpoint: Optional[str]
pulumi_gcp/config/vars.py CHANGED
@@ -440,6 +440,10 @@ class _ExportableConfig(types.ModuleType):
440
440
  def integration_connectors_custom_endpoint(self) -> Optional[str]:
441
441
  return __config__.get('integrationConnectorsCustomEndpoint')
442
442
 
443
+ @property
444
+ def integrations_custom_endpoint(self) -> Optional[str]:
445
+ return __config__.get('integrationsCustomEndpoint')
446
+
443
447
  @property
444
448
  def kms_custom_endpoint(self) -> Optional[str]:
445
449
  return __config__.get('kmsCustomEndpoint')
@@ -705,11 +705,11 @@ class ConnectionProfile(pulumi.CustomResource):
705
705
  "foo": "bar",
706
706
  },
707
707
  alloydb=gcp.databasemigrationservice.ConnectionProfileAlloydbArgs(
708
- cluster_id="tf-test-dbmsalloycluster_85794",
708
+ cluster_id="tf-test-dbmsalloycluster_21197",
709
709
  settings=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsArgs(
710
710
  initial_user=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsInitialUserArgs(
711
- user="alloyuser_21197",
712
- password="alloypass_52865",
711
+ user="alloyuser_52865",
712
+ password="alloypass_85840",
713
713
  ),
714
714
  vpc_network=default.id,
715
715
  labels={
@@ -962,11 +962,11 @@ class ConnectionProfile(pulumi.CustomResource):
962
962
  "foo": "bar",
963
963
  },
964
964
  alloydb=gcp.databasemigrationservice.ConnectionProfileAlloydbArgs(
965
- cluster_id="tf-test-dbmsalloycluster_85794",
965
+ cluster_id="tf-test-dbmsalloycluster_21197",
966
966
  settings=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsArgs(
967
967
  initial_user=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsInitialUserArgs(
968
- user="alloyuser_21197",
969
- password="alloypass_52865",
968
+ user="alloyuser_52865",
969
+ password="alloypass_85840",
970
970
  ),
971
971
  vpc_network=default.id,
972
972
  labels={