pulumi-gcp 8.23.0a1742538920__py3-none-any.whl → 8.24.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 (106) hide show
  1. pulumi_gcp/__init__.py +59 -0
  2. pulumi_gcp/alloydb/_inputs.py +27 -1
  3. pulumi_gcp/alloydb/outputs.py +33 -2
  4. pulumi_gcp/applicationintegration/client.py +18 -24
  5. pulumi_gcp/bigquery/_inputs.py +178 -0
  6. pulumi_gcp/bigquery/outputs.py +127 -0
  7. pulumi_gcp/bigquery/reservation.py +189 -1
  8. pulumi_gcp/bigquery/table.py +61 -0
  9. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  10. pulumi_gcp/bigtable/table.py +7 -7
  11. pulumi_gcp/chronicle/data_access_label.py +16 -0
  12. pulumi_gcp/clouddeploy/_inputs.py +20 -0
  13. pulumi_gcp/clouddeploy/outputs.py +15 -1
  14. pulumi_gcp/cloudfunctions/function.py +11 -11
  15. pulumi_gcp/cloudfunctionsv2/function.py +24 -24
  16. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +41 -2
  17. pulumi_gcp/cloudidentity/outputs.py +18 -38
  18. pulumi_gcp/cloudrunv2/service.py +14 -14
  19. pulumi_gcp/compute/__init__.py +1 -0
  20. pulumi_gcp/compute/_inputs.py +616 -18
  21. pulumi_gcp/compute/firewall_policy.py +20 -0
  22. pulumi_gcp/compute/get_images.py +172 -0
  23. pulumi_gcp/compute/get_resource_policy.py +15 -4
  24. pulumi_gcp/compute/image.py +54 -0
  25. pulumi_gcp/compute/interconnect.py +14 -7
  26. pulumi_gcp/compute/outputs.py +710 -18
  27. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  28. pulumi_gcp/compute/resource_policy.py +169 -3
  29. pulumi_gcp/compute/router_route_policy.py +16 -0
  30. pulumi_gcp/compute/subnetwork.py +109 -1
  31. pulumi_gcp/compute/target_https_proxy.py +7 -7
  32. pulumi_gcp/config/__init__.pyi +8 -0
  33. pulumi_gcp/config/vars.py +16 -0
  34. pulumi_gcp/container/_inputs.py +265 -4
  35. pulumi_gcp/container/cluster.py +54 -0
  36. pulumi_gcp/container/get_attached_versions.py +2 -2
  37. pulumi_gcp/container/get_cluster.py +12 -1
  38. pulumi_gcp/container/outputs.py +301 -6
  39. pulumi_gcp/dataform/repository.py +49 -0
  40. pulumi_gcp/dataproc/_inputs.py +23 -0
  41. pulumi_gcp/dataproc/get_metastore_service.py +26 -4
  42. pulumi_gcp/dataproc/metastore_federation.py +56 -0
  43. pulumi_gcp/dataproc/metastore_service.py +58 -2
  44. pulumi_gcp/dataproc/outputs.py +27 -0
  45. pulumi_gcp/eventarc/__init__.py +1 -0
  46. pulumi_gcp/eventarc/_inputs.py +1758 -0
  47. pulumi_gcp/eventarc/outputs.py +1337 -0
  48. pulumi_gcp/eventarc/pipeline.py +1596 -0
  49. pulumi_gcp/firebase/__init__.py +1 -0
  50. pulumi_gcp/firebase/_inputs.py +154 -0
  51. pulumi_gcp/firebase/app_hosting_backend.py +1303 -0
  52. pulumi_gcp/firebase/hosting_version.py +2 -2
  53. pulumi_gcp/firebase/outputs.py +127 -0
  54. pulumi_gcp/kms/get_key_rings.py +39 -2
  55. pulumi_gcp/lustre/__init__.py +8 -0
  56. pulumi_gcp/lustre/instance.py +983 -0
  57. pulumi_gcp/managedkafka/__init__.py +2 -0
  58. pulumi_gcp/managedkafka/_inputs.py +263 -0
  59. pulumi_gcp/managedkafka/connect_cluster.py +795 -0
  60. pulumi_gcp/managedkafka/connector.py +695 -0
  61. pulumi_gcp/managedkafka/outputs.py +248 -0
  62. pulumi_gcp/memorystore/_inputs.py +419 -0
  63. pulumi_gcp/memorystore/get_instance.py +23 -1
  64. pulumi_gcp/memorystore/instance.py +144 -14
  65. pulumi_gcp/memorystore/outputs.py +544 -0
  66. pulumi_gcp/monitoring/uptime_check_config.py +2 -2
  67. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  68. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  69. pulumi_gcp/networkmanagement/outputs.py +280 -61
  70. pulumi_gcp/networksecurity/_inputs.py +1277 -242
  71. pulumi_gcp/networksecurity/gateway_security_policy.py +0 -7
  72. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  73. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  74. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  75. pulumi_gcp/networksecurity/mirroring_deployment.py +22 -0
  76. pulumi_gcp/networksecurity/mirroring_deployment_group.py +20 -0
  77. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +24 -0
  78. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +28 -0
  79. pulumi_gcp/networksecurity/outputs.py +723 -8
  80. pulumi_gcp/networksecurity/tls_inspection_policy.py +14 -0
  81. pulumi_gcp/networkservices/gateway.py +242 -120
  82. pulumi_gcp/organizations/__init__.py +1 -0
  83. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  84. pulumi_gcp/osconfig/__init__.py +1 -0
  85. pulumi_gcp/osconfig/_inputs.py +5413 -0
  86. pulumi_gcp/osconfig/outputs.py +3962 -0
  87. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  88. pulumi_gcp/projects/__init__.py +2 -0
  89. pulumi_gcp/projects/get_iam_custom_role.py +198 -0
  90. pulumi_gcp/projects/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/projects/outputs.py +96 -0
  92. pulumi_gcp/provider.py +80 -0
  93. pulumi_gcp/pulumi-plugin.json +1 -1
  94. pulumi_gcp/servicenetworking/peered_dns_domain.py +4 -0
  95. pulumi_gcp/sql/outputs.py +8 -8
  96. pulumi_gcp/storage/__init__.py +2 -0
  97. pulumi_gcp/storage/_inputs.py +740 -6
  98. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  99. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  100. pulumi_gcp/storage/insights_report_config.py +121 -20
  101. pulumi_gcp/storage/outputs.py +723 -4
  102. pulumi_gcp/workflows/workflow.py +75 -7
  103. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/METADATA +1 -1
  104. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/RECORD +106 -93
  105. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/WHEEL +1 -1
  106. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/top_level.txt +0 -0
@@ -370,6 +370,7 @@ class MetastoreServiceArgs:
370
370
  class _MetastoreServiceState:
371
371
  def __init__(__self__, *,
372
372
  artifact_gcs_uri: Optional[pulumi.Input[str]] = None,
373
+ create_time: Optional[pulumi.Input[str]] = None,
373
374
  database_type: Optional[pulumi.Input[str]] = None,
374
375
  deletion_protection: Optional[pulumi.Input[bool]] = None,
375
376
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -394,10 +395,12 @@ class _MetastoreServiceState:
394
395
  state_message: Optional[pulumi.Input[str]] = None,
395
396
  telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
396
397
  tier: Optional[pulumi.Input[str]] = None,
397
- uid: Optional[pulumi.Input[str]] = None):
398
+ uid: Optional[pulumi.Input[str]] = None,
399
+ update_time: Optional[pulumi.Input[str]] = None):
398
400
  """
399
401
  Input properties used for looking up and filtering MetastoreService resources.
400
402
  :param pulumi.Input[str] artifact_gcs_uri: A Cloud Storage URI (starting with gs://) that specifies where artifacts related to the metastore service are stored.
403
+ :param pulumi.Input[str] create_time: Output only. The time when the metastore service was created.
401
404
  :param pulumi.Input[str] database_type: The database type that the Metastore service stores its data.
402
405
  Default value is `MYSQL`.
403
406
  Possible values are: `MYSQL`, `SPANNER`.
@@ -450,9 +453,12 @@ class _MetastoreServiceState:
450
453
  :param pulumi.Input[str] tier: The tier of the service.
451
454
  Possible values are: `DEVELOPER`, `ENTERPRISE`.
452
455
  :param pulumi.Input[str] uid: The globally unique resource identifier of the metastore service.
456
+ :param pulumi.Input[str] update_time: Output only. The time when the metastore service was last updated.
453
457
  """
454
458
  if artifact_gcs_uri is not None:
455
459
  pulumi.set(__self__, "artifact_gcs_uri", artifact_gcs_uri)
460
+ if create_time is not None:
461
+ pulumi.set(__self__, "create_time", create_time)
456
462
  if database_type is not None:
457
463
  pulumi.set(__self__, "database_type", database_type)
458
464
  if deletion_protection is not None:
@@ -503,6 +509,8 @@ class _MetastoreServiceState:
503
509
  pulumi.set(__self__, "tier", tier)
504
510
  if uid is not None:
505
511
  pulumi.set(__self__, "uid", uid)
512
+ if update_time is not None:
513
+ pulumi.set(__self__, "update_time", update_time)
506
514
 
507
515
  @property
508
516
  @pulumi.getter(name="artifactGcsUri")
@@ -516,6 +524,18 @@ class _MetastoreServiceState:
516
524
  def artifact_gcs_uri(self, value: Optional[pulumi.Input[str]]):
517
525
  pulumi.set(self, "artifact_gcs_uri", value)
518
526
 
527
+ @property
528
+ @pulumi.getter(name="createTime")
529
+ def create_time(self) -> Optional[pulumi.Input[str]]:
530
+ """
531
+ Output only. The time when the metastore service was created.
532
+ """
533
+ return pulumi.get(self, "create_time")
534
+
535
+ @create_time.setter
536
+ def create_time(self, value: Optional[pulumi.Input[str]]):
537
+ pulumi.set(self, "create_time", value)
538
+
519
539
  @property
520
540
  @pulumi.getter(name="databaseType")
521
541
  def database_type(self) -> Optional[pulumi.Input[str]]:
@@ -843,6 +863,18 @@ class _MetastoreServiceState:
843
863
  def uid(self, value: Optional[pulumi.Input[str]]):
844
864
  pulumi.set(self, "uid", value)
845
865
 
866
+ @property
867
+ @pulumi.getter(name="updateTime")
868
+ def update_time(self) -> Optional[pulumi.Input[str]]:
869
+ """
870
+ Output only. The time when the metastore service was last updated.
871
+ """
872
+ return pulumi.get(self, "update_time")
873
+
874
+ @update_time.setter
875
+ def update_time(self, value: Optional[pulumi.Input[str]]):
876
+ pulumi.set(self, "update_time", value)
877
+
846
878
 
847
879
  class MetastoreService(pulumi.CustomResource):
848
880
  @overload
@@ -1604,6 +1636,7 @@ class MetastoreService(pulumi.CustomResource):
1604
1636
  __props__.__dict__["telemetry_config"] = telemetry_config
1605
1637
  __props__.__dict__["tier"] = tier
1606
1638
  __props__.__dict__["artifact_gcs_uri"] = None
1639
+ __props__.__dict__["create_time"] = None
1607
1640
  __props__.__dict__["effective_labels"] = None
1608
1641
  __props__.__dict__["endpoint_uri"] = None
1609
1642
  __props__.__dict__["name"] = None
@@ -1611,6 +1644,7 @@ class MetastoreService(pulumi.CustomResource):
1611
1644
  __props__.__dict__["state"] = None
1612
1645
  __props__.__dict__["state_message"] = None
1613
1646
  __props__.__dict__["uid"] = None
1647
+ __props__.__dict__["update_time"] = None
1614
1648
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
1615
1649
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
1616
1650
  super(MetastoreService, __self__).__init__(
@@ -1624,6 +1658,7 @@ class MetastoreService(pulumi.CustomResource):
1624
1658
  id: pulumi.Input[str],
1625
1659
  opts: Optional[pulumi.ResourceOptions] = None,
1626
1660
  artifact_gcs_uri: Optional[pulumi.Input[str]] = None,
1661
+ create_time: Optional[pulumi.Input[str]] = None,
1627
1662
  database_type: Optional[pulumi.Input[str]] = None,
1628
1663
  deletion_protection: Optional[pulumi.Input[bool]] = None,
1629
1664
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1648,7 +1683,8 @@ class MetastoreService(pulumi.CustomResource):
1648
1683
  state_message: Optional[pulumi.Input[str]] = None,
1649
1684
  telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
1650
1685
  tier: Optional[pulumi.Input[str]] = None,
1651
- uid: Optional[pulumi.Input[str]] = None) -> 'MetastoreService':
1686
+ uid: Optional[pulumi.Input[str]] = None,
1687
+ update_time: Optional[pulumi.Input[str]] = None) -> 'MetastoreService':
1652
1688
  """
1653
1689
  Get an existing MetastoreService resource's state with the given name, id, and optional extra
1654
1690
  properties used to qualify the lookup.
@@ -1657,6 +1693,7 @@ class MetastoreService(pulumi.CustomResource):
1657
1693
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1658
1694
  :param pulumi.ResourceOptions opts: Options for the resource.
1659
1695
  :param pulumi.Input[str] artifact_gcs_uri: A Cloud Storage URI (starting with gs://) that specifies where artifacts related to the metastore service are stored.
1696
+ :param pulumi.Input[str] create_time: Output only. The time when the metastore service was created.
1660
1697
  :param pulumi.Input[str] database_type: The database type that the Metastore service stores its data.
1661
1698
  Default value is `MYSQL`.
1662
1699
  Possible values are: `MYSQL`, `SPANNER`.
@@ -1709,12 +1746,14 @@ class MetastoreService(pulumi.CustomResource):
1709
1746
  :param pulumi.Input[str] tier: The tier of the service.
1710
1747
  Possible values are: `DEVELOPER`, `ENTERPRISE`.
1711
1748
  :param pulumi.Input[str] uid: The globally unique resource identifier of the metastore service.
1749
+ :param pulumi.Input[str] update_time: Output only. The time when the metastore service was last updated.
1712
1750
  """
1713
1751
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1714
1752
 
1715
1753
  __props__ = _MetastoreServiceState.__new__(_MetastoreServiceState)
1716
1754
 
1717
1755
  __props__.__dict__["artifact_gcs_uri"] = artifact_gcs_uri
1756
+ __props__.__dict__["create_time"] = create_time
1718
1757
  __props__.__dict__["database_type"] = database_type
1719
1758
  __props__.__dict__["deletion_protection"] = deletion_protection
1720
1759
  __props__.__dict__["effective_labels"] = effective_labels
@@ -1740,6 +1779,7 @@ class MetastoreService(pulumi.CustomResource):
1740
1779
  __props__.__dict__["telemetry_config"] = telemetry_config
1741
1780
  __props__.__dict__["tier"] = tier
1742
1781
  __props__.__dict__["uid"] = uid
1782
+ __props__.__dict__["update_time"] = update_time
1743
1783
  return MetastoreService(resource_name, opts=opts, __props__=__props__)
1744
1784
 
1745
1785
  @property
@@ -1750,6 +1790,14 @@ class MetastoreService(pulumi.CustomResource):
1750
1790
  """
1751
1791
  return pulumi.get(self, "artifact_gcs_uri")
1752
1792
 
1793
+ @property
1794
+ @pulumi.getter(name="createTime")
1795
+ def create_time(self) -> pulumi.Output[str]:
1796
+ """
1797
+ Output only. The time when the metastore service was created.
1798
+ """
1799
+ return pulumi.get(self, "create_time")
1800
+
1753
1801
  @property
1754
1802
  @pulumi.getter(name="databaseType")
1755
1803
  def database_type(self) -> pulumi.Output[Optional[str]]:
@@ -1977,3 +2025,11 @@ class MetastoreService(pulumi.CustomResource):
1977
2025
  """
1978
2026
  return pulumi.get(self, "uid")
1979
2027
 
2028
+ @property
2029
+ @pulumi.getter(name="updateTime")
2030
+ def update_time(self) -> pulumi.Output[str]:
2031
+ """
2032
+ Output only. The time when the metastore service was last updated.
2033
+ """
2034
+ return pulumi.get(self, "update_time")
2035
+
@@ -7949,6 +7949,8 @@ class MetastoreServiceScalingConfigAutoscalingConfig(dict):
7949
7949
  suggest = None
7950
7950
  if key == "autoscalingEnabled":
7951
7951
  suggest = "autoscaling_enabled"
7952
+ elif key == "autoscalingFactor":
7953
+ suggest = "autoscaling_factor"
7952
7954
  elif key == "limitConfig":
7953
7955
  suggest = "limit_config"
7954
7956
 
@@ -7965,14 +7967,19 @@ class MetastoreServiceScalingConfigAutoscalingConfig(dict):
7965
7967
 
7966
7968
  def __init__(__self__, *,
7967
7969
  autoscaling_enabled: Optional[bool] = None,
7970
+ autoscaling_factor: Optional[float] = None,
7968
7971
  limit_config: Optional['outputs.MetastoreServiceScalingConfigAutoscalingConfigLimitConfig'] = None):
7969
7972
  """
7970
7973
  :param bool autoscaling_enabled: Defines whether autoscaling is enabled. The default value is false.
7974
+ :param float autoscaling_factor: (Output)
7975
+ Output only. The scaling factor of a service with autoscaling enabled.
7971
7976
  :param 'MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgs' limit_config: Represents the limit configuration of a metastore service.
7972
7977
  Structure is documented below.
7973
7978
  """
7974
7979
  if autoscaling_enabled is not None:
7975
7980
  pulumi.set(__self__, "autoscaling_enabled", autoscaling_enabled)
7981
+ if autoscaling_factor is not None:
7982
+ pulumi.set(__self__, "autoscaling_factor", autoscaling_factor)
7976
7983
  if limit_config is not None:
7977
7984
  pulumi.set(__self__, "limit_config", limit_config)
7978
7985
 
@@ -7984,6 +7991,15 @@ class MetastoreServiceScalingConfigAutoscalingConfig(dict):
7984
7991
  """
7985
7992
  return pulumi.get(self, "autoscaling_enabled")
7986
7993
 
7994
+ @property
7995
+ @pulumi.getter(name="autoscalingFactor")
7996
+ def autoscaling_factor(self) -> Optional[float]:
7997
+ """
7998
+ (Output)
7999
+ Output only. The scaling factor of a service with autoscaling enabled.
8000
+ """
8001
+ return pulumi.get(self, "autoscaling_factor")
8002
+
7987
8003
  @property
7988
8004
  @pulumi.getter(name="limitConfig")
7989
8005
  def limit_config(self) -> Optional['outputs.MetastoreServiceScalingConfigAutoscalingConfigLimitConfig']:
@@ -12571,12 +12587,15 @@ class GetMetastoreServiceScalingConfigResult(dict):
12571
12587
  class GetMetastoreServiceScalingConfigAutoscalingConfigResult(dict):
12572
12588
  def __init__(__self__, *,
12573
12589
  autoscaling_enabled: bool,
12590
+ autoscaling_factor: float,
12574
12591
  limit_configs: Sequence['outputs.GetMetastoreServiceScalingConfigAutoscalingConfigLimitConfigResult']):
12575
12592
  """
12576
12593
  :param bool autoscaling_enabled: Defines whether autoscaling is enabled. The default value is false.
12594
+ :param float autoscaling_factor: Output only. The scaling factor of a service with autoscaling enabled.
12577
12595
  :param Sequence['GetMetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgs'] limit_configs: Represents the limit configuration of a metastore service.
12578
12596
  """
12579
12597
  pulumi.set(__self__, "autoscaling_enabled", autoscaling_enabled)
12598
+ pulumi.set(__self__, "autoscaling_factor", autoscaling_factor)
12580
12599
  pulumi.set(__self__, "limit_configs", limit_configs)
12581
12600
 
12582
12601
  @property
@@ -12587,6 +12606,14 @@ class GetMetastoreServiceScalingConfigAutoscalingConfigResult(dict):
12587
12606
  """
12588
12607
  return pulumi.get(self, "autoscaling_enabled")
12589
12608
 
12609
+ @property
12610
+ @pulumi.getter(name="autoscalingFactor")
12611
+ def autoscaling_factor(self) -> float:
12612
+ """
12613
+ Output only. The scaling factor of a service with autoscaling enabled.
12614
+ """
12615
+ return pulumi.get(self, "autoscaling_factor")
12616
+
12590
12617
  @property
12591
12618
  @pulumi.getter(name="limitConfigs")
12592
12619
  def limit_configs(self) -> Sequence['outputs.GetMetastoreServiceScalingConfigAutoscalingConfigLimitConfigResult']:
@@ -9,6 +9,7 @@ from .channel import *
9
9
  from .google_api_source import *
10
10
  from .google_channel_config import *
11
11
  from .message_bus import *
12
+ from .pipeline import *
12
13
  from .trigger import *
13
14
  from ._inputs import *
14
15
  from . import outputs