pulumi-gcp 8.24.0a1742970634__py3-none-any.whl → 8.24.0a1743177741__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/bigquery/_inputs.py +158 -0
  3. pulumi_gcp/bigquery/outputs.py +115 -0
  4. pulumi_gcp/bigquery/reservation.py +189 -1
  5. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  6. pulumi_gcp/chronicle/data_access_label.py +16 -0
  7. pulumi_gcp/cloudrunv2/service.py +14 -14
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +616 -18
  10. pulumi_gcp/compute/get_images.py +172 -0
  11. pulumi_gcp/compute/get_resource_policy.py +15 -4
  12. pulumi_gcp/compute/image.py +54 -0
  13. pulumi_gcp/compute/interconnect.py +14 -7
  14. pulumi_gcp/compute/outputs.py +710 -18
  15. pulumi_gcp/compute/resource_policy.py +169 -3
  16. pulumi_gcp/compute/router_route_policy.py +16 -0
  17. pulumi_gcp/config/__init__.pyi +6 -0
  18. pulumi_gcp/config/vars.py +12 -0
  19. pulumi_gcp/container/_inputs.py +262 -1
  20. pulumi_gcp/container/cluster.py +54 -0
  21. pulumi_gcp/container/get_cluster.py +12 -1
  22. pulumi_gcp/container/outputs.py +297 -2
  23. pulumi_gcp/dataproc/_inputs.py +23 -0
  24. pulumi_gcp/dataproc/outputs.py +27 -0
  25. pulumi_gcp/lustre/__init__.py +8 -0
  26. pulumi_gcp/lustre/instance.py +983 -0
  27. pulumi_gcp/memorystore/_inputs.py +419 -0
  28. pulumi_gcp/memorystore/get_instance.py +23 -1
  29. pulumi_gcp/memorystore/instance.py +137 -7
  30. pulumi_gcp/memorystore/outputs.py +544 -0
  31. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  32. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  33. pulumi_gcp/networkmanagement/outputs.py +280 -61
  34. pulumi_gcp/networksecurity/_inputs.py +392 -0
  35. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  36. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  37. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  38. pulumi_gcp/networksecurity/outputs.py +240 -0
  39. pulumi_gcp/organizations/__init__.py +1 -0
  40. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  41. pulumi_gcp/osconfig/__init__.py +1 -0
  42. pulumi_gcp/osconfig/_inputs.py +5413 -0
  43. pulumi_gcp/osconfig/outputs.py +3962 -0
  44. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  45. pulumi_gcp/provider.py +60 -0
  46. pulumi_gcp/pulumi-plugin.json +1 -1
  47. pulumi_gcp/storage/__init__.py +2 -0
  48. pulumi_gcp/storage/_inputs.py +726 -0
  49. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  50. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  51. pulumi_gcp/storage/outputs.py +716 -0
  52. {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/RECORD +55 -48
  54. {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/top_level.txt +0 -0
@@ -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']:
@@ -0,0 +1,8 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .instance import *