pulumi-gcp 8.35.0a1750225231__py3-none-any.whl → 8.36.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 (76) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/alloydb/_inputs.py +26 -0
  3. pulumi_gcp/alloydb/outputs.py +34 -1
  4. pulumi_gcp/apihub/__init__.py +1 -0
  5. pulumi_gcp/apihub/_inputs.py +983 -0
  6. pulumi_gcp/apihub/outputs.py +807 -0
  7. pulumi_gcp/apihub/plugin_instance.py +808 -0
  8. pulumi_gcp/bigquery/app_profile.py +16 -8
  9. pulumi_gcp/bigquery/table.py +16 -12
  10. pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
  11. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
  12. pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
  13. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
  15. pulumi_gcp/bigtable/__init__.py +1 -0
  16. pulumi_gcp/bigtable/_inputs.py +128 -0
  17. pulumi_gcp/bigtable/app_profile.py +1065 -0
  18. pulumi_gcp/bigtable/outputs.py +111 -0
  19. pulumi_gcp/bigtable/table.py +82 -0
  20. pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
  21. pulumi_gcp/compute/_inputs.py +24 -12
  22. pulumi_gcp/compute/instance.py +2 -2
  23. pulumi_gcp/compute/instance_template.py +2 -2
  24. pulumi_gcp/compute/interconnect.py +43 -11
  25. pulumi_gcp/compute/node_template.py +21 -0
  26. pulumi_gcp/compute/outputs.py +16 -8
  27. pulumi_gcp/compute/service_attachment.py +76 -8
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/contactcenterinsights/__init__.py +9 -0
  31. pulumi_gcp/contactcenterinsights/view.py +526 -0
  32. pulumi_gcp/container/_inputs.py +72 -12
  33. pulumi_gcp/container/get_engine_versions.py +15 -1
  34. pulumi_gcp/container/outputs.py +73 -9
  35. pulumi_gcp/dataplex/_inputs.py +431 -6
  36. pulumi_gcp/dataplex/datascan.py +251 -0
  37. pulumi_gcp/dataplex/entry_type.py +2 -2
  38. pulumi_gcp/dataplex/glossary_category.py +8 -8
  39. pulumi_gcp/dataplex/glossary_term.py +8 -8
  40. pulumi_gcp/dataplex/outputs.py +353 -4
  41. pulumi_gcp/dataplex/task.py +16 -16
  42. pulumi_gcp/dataproc/__init__.py +1 -0
  43. pulumi_gcp/dataproc/_inputs.py +486 -0
  44. pulumi_gcp/dataproc/batch.py +10 -10
  45. pulumi_gcp/dataproc/outputs.py +407 -0
  46. pulumi_gcp/dataproc/session_template.py +1084 -0
  47. pulumi_gcp/diagflow/__init__.py +1 -0
  48. pulumi_gcp/diagflow/_inputs.py +48 -0
  49. pulumi_gcp/diagflow/cx_tool.py +2 -2
  50. pulumi_gcp/diagflow/encryption_spec.py +382 -0
  51. pulumi_gcp/diagflow/outputs.py +46 -0
  52. pulumi_gcp/firestore/field.py +6 -6
  53. pulumi_gcp/gkehub/membership_binding.py +6 -6
  54. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  55. pulumi_gcp/gkehub/namespace.py +4 -4
  56. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  57. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  58. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  59. pulumi_gcp/lustre/get_instance.py +12 -1
  60. pulumi_gcp/lustre/instance.py +143 -86
  61. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  62. pulumi_gcp/managedkafka/connector.py +4 -4
  63. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  64. pulumi_gcp/orgpolicy/policy.py +2 -2
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pubsub/subscription.py +6 -6
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/storage/bucket_object.py +56 -0
  69. pulumi_gcp/storage/get_bucket_object.py +12 -1
  70. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  71. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  72. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  73. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/METADATA +2 -2
  74. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/RECORD +76 -70
  75. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py CHANGED
@@ -97,6 +97,8 @@ if typing.TYPE_CHECKING:
97
97
  compute = __compute
98
98
  import pulumi_gcp.config as __config
99
99
  config = __config
100
+ import pulumi_gcp.contactcenterinsights as __contactcenterinsights
101
+ contactcenterinsights = __contactcenterinsights
100
102
  import pulumi_gcp.container as __container
101
103
  container = __container
102
104
  import pulumi_gcp.containeranalysis as __containeranalysis
@@ -315,6 +317,7 @@ else:
315
317
  composer = _utilities.lazy_import('pulumi_gcp.composer')
316
318
  compute = _utilities.lazy_import('pulumi_gcp.compute')
317
319
  config = _utilities.lazy_import('pulumi_gcp.config')
320
+ contactcenterinsights = _utilities.lazy_import('pulumi_gcp.contactcenterinsights')
318
321
  container = _utilities.lazy_import('pulumi_gcp.container')
319
322
  containeranalysis = _utilities.lazy_import('pulumi_gcp.containeranalysis')
320
323
  databasemigrationservice = _utilities.lazy_import('pulumi_gcp.databasemigrationservice')
@@ -990,6 +993,14 @@ _utilities.register(
990
993
  "gcp:apihub/hostProjectRegistration:HostProjectRegistration": "HostProjectRegistration"
991
994
  }
992
995
  },
996
+ {
997
+ "pkg": "gcp",
998
+ "mod": "apihub/pluginInstance",
999
+ "fqn": "pulumi_gcp.apihub",
1000
+ "classes": {
1001
+ "gcp:apihub/pluginInstance:PluginInstance": "PluginInstance"
1002
+ }
1003
+ },
993
1004
  {
994
1005
  "pkg": "gcp",
995
1006
  "mod": "appengine/application",
@@ -1606,6 +1617,14 @@ _utilities.register(
1606
1617
  "gcp:bigquerydatapolicy/dataPolicyIamPolicy:DataPolicyIamPolicy": "DataPolicyIamPolicy"
1607
1618
  }
1608
1619
  },
1620
+ {
1621
+ "pkg": "gcp",
1622
+ "mod": "bigtable/appProfile",
1623
+ "fqn": "pulumi_gcp.bigtable",
1624
+ "classes": {
1625
+ "gcp:bigtable/appProfile:AppProfile": "AppProfile"
1626
+ }
1627
+ },
1609
1628
  {
1610
1629
  "pkg": "gcp",
1611
1630
  "mod": "bigtable/authorizedView",
@@ -3894,6 +3913,14 @@ _utilities.register(
3894
3913
  "gcp:compute/vPNTunnel:VPNTunnel": "VPNTunnel"
3895
3914
  }
3896
3915
  },
3916
+ {
3917
+ "pkg": "gcp",
3918
+ "mod": "contactcenterinsights/view",
3919
+ "fqn": "pulumi_gcp.contactcenterinsights",
3920
+ "classes": {
3921
+ "gcp:contactcenterinsights/view:View": "View"
3922
+ }
3923
+ },
3897
3924
  {
3898
3925
  "pkg": "gcp",
3899
3926
  "mod": "container/attachedCluster",
@@ -4846,6 +4873,14 @@ _utilities.register(
4846
4873
  "gcp:dataproc/metastoreTableIamPolicy:MetastoreTableIamPolicy": "MetastoreTableIamPolicy"
4847
4874
  }
4848
4875
  },
4876
+ {
4877
+ "pkg": "gcp",
4878
+ "mod": "dataproc/sessionTemplate",
4879
+ "fqn": "pulumi_gcp.dataproc",
4880
+ "classes": {
4881
+ "gcp:dataproc/sessionTemplate:SessionTemplate": "SessionTemplate"
4882
+ }
4883
+ },
4849
4884
  {
4850
4885
  "pkg": "gcp",
4851
4886
  "mod": "dataproc/workflowTemplate",
@@ -5006,6 +5041,14 @@ _utilities.register(
5006
5041
  "gcp:diagflow/cxWebhook:CxWebhook": "CxWebhook"
5007
5042
  }
5008
5043
  },
5044
+ {
5045
+ "pkg": "gcp",
5046
+ "mod": "diagflow/encryptionSpec",
5047
+ "fqn": "pulumi_gcp.diagflow",
5048
+ "classes": {
5049
+ "gcp:diagflow/encryptionSpec:EncryptionSpec": "EncryptionSpec"
5050
+ }
5051
+ },
5009
5052
  {
5010
5053
  "pkg": "gcp",
5011
5054
  "mod": "diagflow/entityType",
@@ -1860,6 +1860,12 @@ class InstanceMachineConfigArgs:
1860
1860
 
1861
1861
  if not MYPY:
1862
1862
  class InstanceNetworkConfigArgsDict(TypedDict):
1863
+ allocated_ip_range_override: NotRequired[pulumi.Input[builtins.str]]
1864
+ """
1865
+ Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
1866
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
1867
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1868
+ """
1863
1869
  authorized_external_networks: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkConfigAuthorizedExternalNetworkArgsDict']]]]
1864
1870
  """
1865
1871
  A list of external networks authorized to access this instance. This
@@ -1883,10 +1889,14 @@ elif False:
1883
1889
  @pulumi.input_type
1884
1890
  class InstanceNetworkConfigArgs:
1885
1891
  def __init__(__self__, *,
1892
+ allocated_ip_range_override: Optional[pulumi.Input[builtins.str]] = None,
1886
1893
  authorized_external_networks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkConfigAuthorizedExternalNetworkArgs']]]] = None,
1887
1894
  enable_outbound_public_ip: Optional[pulumi.Input[builtins.bool]] = None,
1888
1895
  enable_public_ip: Optional[pulumi.Input[builtins.bool]] = None):
1889
1896
  """
1897
+ :param pulumi.Input[builtins.str] allocated_ip_range_override: Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
1898
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
1899
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1890
1900
  :param pulumi.Input[Sequence[pulumi.Input['InstanceNetworkConfigAuthorizedExternalNetworkArgs']]] authorized_external_networks: A list of external networks authorized to access this instance. This
1891
1901
  field is only allowed to be set when `enable_public_ip` is set to
1892
1902
  true.
@@ -1896,6 +1906,8 @@ class InstanceNetworkConfigArgs:
1896
1906
  please also clear the list of the authorized external networks set on
1897
1907
  the same instance.
1898
1908
  """
1909
+ if allocated_ip_range_override is not None:
1910
+ pulumi.set(__self__, "allocated_ip_range_override", allocated_ip_range_override)
1899
1911
  if authorized_external_networks is not None:
1900
1912
  pulumi.set(__self__, "authorized_external_networks", authorized_external_networks)
1901
1913
  if enable_outbound_public_ip is not None:
@@ -1903,6 +1915,20 @@ class InstanceNetworkConfigArgs:
1903
1915
  if enable_public_ip is not None:
1904
1916
  pulumi.set(__self__, "enable_public_ip", enable_public_ip)
1905
1917
 
1918
+ @property
1919
+ @pulumi.getter(name="allocatedIpRangeOverride")
1920
+ def allocated_ip_range_override(self) -> Optional[pulumi.Input[builtins.str]]:
1921
+ """
1922
+ Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
1923
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
1924
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1925
+ """
1926
+ return pulumi.get(self, "allocated_ip_range_override")
1927
+
1928
+ @allocated_ip_range_override.setter
1929
+ def allocated_ip_range_override(self, value: Optional[pulumi.Input[builtins.str]]):
1930
+ pulumi.set(self, "allocated_ip_range_override", value)
1931
+
1906
1932
  @property
1907
1933
  @pulumi.getter(name="authorizedExternalNetworks")
1908
1934
  def authorized_external_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkConfigAuthorizedExternalNetworkArgs']]]]:
@@ -1638,7 +1638,9 @@ class InstanceNetworkConfig(dict):
1638
1638
  @staticmethod
1639
1639
  def __key_warning(key: str):
1640
1640
  suggest = None
1641
- if key == "authorizedExternalNetworks":
1641
+ if key == "allocatedIpRangeOverride":
1642
+ suggest = "allocated_ip_range_override"
1643
+ elif key == "authorizedExternalNetworks":
1642
1644
  suggest = "authorized_external_networks"
1643
1645
  elif key == "enableOutboundPublicIp":
1644
1646
  suggest = "enable_outbound_public_ip"
@@ -1657,10 +1659,14 @@ class InstanceNetworkConfig(dict):
1657
1659
  return super().get(key, default)
1658
1660
 
1659
1661
  def __init__(__self__, *,
1662
+ allocated_ip_range_override: Optional[builtins.str] = None,
1660
1663
  authorized_external_networks: Optional[Sequence['outputs.InstanceNetworkConfigAuthorizedExternalNetwork']] = None,
1661
1664
  enable_outbound_public_ip: Optional[builtins.bool] = None,
1662
1665
  enable_public_ip: Optional[builtins.bool] = None):
1663
1666
  """
1667
+ :param builtins.str allocated_ip_range_override: Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
1668
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
1669
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1664
1670
  :param Sequence['InstanceNetworkConfigAuthorizedExternalNetworkArgs'] authorized_external_networks: A list of external networks authorized to access this instance. This
1665
1671
  field is only allowed to be set when `enable_public_ip` is set to
1666
1672
  true.
@@ -1670,6 +1676,8 @@ class InstanceNetworkConfig(dict):
1670
1676
  please also clear the list of the authorized external networks set on
1671
1677
  the same instance.
1672
1678
  """
1679
+ if allocated_ip_range_override is not None:
1680
+ pulumi.set(__self__, "allocated_ip_range_override", allocated_ip_range_override)
1673
1681
  if authorized_external_networks is not None:
1674
1682
  pulumi.set(__self__, "authorized_external_networks", authorized_external_networks)
1675
1683
  if enable_outbound_public_ip is not None:
@@ -1677,6 +1685,16 @@ class InstanceNetworkConfig(dict):
1677
1685
  if enable_public_ip is not None:
1678
1686
  pulumi.set(__self__, "enable_public_ip", enable_public_ip)
1679
1687
 
1688
+ @property
1689
+ @pulumi.getter(name="allocatedIpRangeOverride")
1690
+ def allocated_ip_range_override(self) -> Optional[builtins.str]:
1691
+ """
1692
+ Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
1693
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
1694
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1695
+ """
1696
+ return pulumi.get(self, "allocated_ip_range_override")
1697
+
1680
1698
  @property
1681
1699
  @pulumi.getter(name="authorizedExternalNetworks")
1682
1700
  def authorized_external_networks(self) -> Optional[Sequence['outputs.InstanceNetworkConfigAuthorizedExternalNetwork']]:
@@ -3141,10 +3159,14 @@ class GetInstanceMachineConfigResult(dict):
3141
3159
  @pulumi.output_type
3142
3160
  class GetInstanceNetworkConfigResult(dict):
3143
3161
  def __init__(__self__, *,
3162
+ allocated_ip_range_override: builtins.str,
3144
3163
  authorized_external_networks: Sequence['outputs.GetInstanceNetworkConfigAuthorizedExternalNetworkResult'],
3145
3164
  enable_outbound_public_ip: builtins.bool,
3146
3165
  enable_public_ip: builtins.bool):
3147
3166
  """
3167
+ :param builtins.str allocated_ip_range_override: Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
3168
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
3169
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
3148
3170
  :param Sequence['GetInstanceNetworkConfigAuthorizedExternalNetworkArgs'] authorized_external_networks: A list of external networks authorized to access this instance. This
3149
3171
  field is only allowed to be set when 'enable_public_ip' is set to
3150
3172
  true.
@@ -3153,10 +3175,21 @@ class GetInstanceNetworkConfigResult(dict):
3153
3175
  please also clear the list of the authorized external networks set on
3154
3176
  the same instance.
3155
3177
  """
3178
+ pulumi.set(__self__, "allocated_ip_range_override", allocated_ip_range_override)
3156
3179
  pulumi.set(__self__, "authorized_external_networks", authorized_external_networks)
3157
3180
  pulumi.set(__self__, "enable_outbound_public_ip", enable_outbound_public_ip)
3158
3181
  pulumi.set(__self__, "enable_public_ip", enable_public_ip)
3159
3182
 
3183
+ @property
3184
+ @pulumi.getter(name="allocatedIpRangeOverride")
3185
+ def allocated_ip_range_override(self) -> builtins.str:
3186
+ """
3187
+ Name of the allocated IP range for the private IP AlloyDB instance, for example: "google-managed-services-default".
3188
+ If set, the instance IPs will be created from this allocated range and will override the IP range used by the parent cluster.
3189
+ The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
3190
+ """
3191
+ return pulumi.get(self, "allocated_ip_range_override")
3192
+
3160
3193
  @property
3161
3194
  @pulumi.getter(name="authorizedExternalNetworks")
3162
3195
  def authorized_external_networks(self) -> Sequence['outputs.GetInstanceNetworkConfigAuthorizedExternalNetworkResult']:
@@ -9,5 +9,6 @@ import typing
9
9
  from .api_hub_instance import *
10
10
  from .curation import *
11
11
  from .host_project_registration import *
12
+ from .plugin_instance import *
12
13
  from ._inputs import *
13
14
  from . import outputs