pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 (78) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/sql/_inputs.py +86 -6
  70. pulumi_gcp/sql/outputs.py +156 -12
  71. pulumi_gcp/storage/__init__.py +1 -0
  72. pulumi_gcp/storage/_inputs.py +457 -0
  73. pulumi_gcp/storage/batch_operations_job.py +776 -0
  74. pulumi_gcp/storage/outputs.py +403 -0
  75. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
  76. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
  77. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
  78. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -84,6 +84,8 @@ __all__ = [
84
84
  'BackendServiceLocalityLbPolicyPolicyArgsDict',
85
85
  'BackendServiceLogConfigArgs',
86
86
  'BackendServiceLogConfigArgsDict',
87
+ 'BackendServiceMaxStreamDurationArgs',
88
+ 'BackendServiceMaxStreamDurationArgsDict',
87
89
  'BackendServiceOutlierDetectionArgs',
88
90
  'BackendServiceOutlierDetectionArgsDict',
89
91
  'BackendServiceOutlierDetectionBaseEjectionTimeArgs',
@@ -1174,6 +1176,14 @@ __all__ = [
1174
1176
  'SnapshotSnapshotEncryptionKeyArgsDict',
1175
1177
  'SnapshotSourceDiskEncryptionKeyArgs',
1176
1178
  'SnapshotSourceDiskEncryptionKeyArgsDict',
1179
+ 'StoragePoolIamBindingConditionArgs',
1180
+ 'StoragePoolIamBindingConditionArgsDict',
1181
+ 'StoragePoolIamMemberConditionArgs',
1182
+ 'StoragePoolIamMemberConditionArgsDict',
1183
+ 'StoragePoolResourceStatusArgs',
1184
+ 'StoragePoolResourceStatusArgsDict',
1185
+ 'StoragePoolStatusArgs',
1186
+ 'StoragePoolStatusArgsDict',
1177
1187
  'SubnetworkIAMBindingConditionArgs',
1178
1188
  'SubnetworkIAMBindingConditionArgsDict',
1179
1189
  'SubnetworkIAMMemberConditionArgs',
@@ -3046,6 +3056,16 @@ if not MYPY:
3046
3056
  Used when balancingMode is UTILIZATION. This ratio defines the
3047
3057
  CPU utilization target for the group. Valid range is [0.0, 1.0].
3048
3058
  """
3059
+ preference: NotRequired[pulumi.Input[builtins.str]]
3060
+ """
3061
+ This field indicates whether this backend should be fully utilized before sending traffic to backends
3062
+ with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
3063
+ - PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
3064
+ based on RTT.
3065
+ - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
3066
+ traffic would be assigned based on the load balancing algorithm you use. This is the default
3067
+ Possible values are: `PREFERRED`, `DEFAULT`.
3068
+ """
3049
3069
  elif False:
3050
3070
  BackendServiceBackendArgsDict: TypeAlias = Mapping[str, Any]
3051
3071
 
@@ -3063,7 +3083,8 @@ class BackendServiceBackendArgs:
3063
3083
  max_rate: Optional[pulumi.Input[builtins.int]] = None,
3064
3084
  max_rate_per_endpoint: Optional[pulumi.Input[builtins.float]] = None,
3065
3085
  max_rate_per_instance: Optional[pulumi.Input[builtins.float]] = None,
3066
- max_utilization: Optional[pulumi.Input[builtins.float]] = None):
3086
+ max_utilization: Optional[pulumi.Input[builtins.float]] = None,
3087
+ preference: Optional[pulumi.Input[builtins.str]] = None):
3067
3088
  """
3068
3089
  :param pulumi.Input[builtins.str] group: The fully-qualified URL of an Instance Group or Network Endpoint
3069
3090
  Group resource. In case of instance group this defines the list
@@ -3129,6 +3150,13 @@ class BackendServiceBackendArgs:
3129
3150
  either maxRate or maxRatePerInstance must be set.
3130
3151
  :param pulumi.Input[builtins.float] max_utilization: Used when balancingMode is UTILIZATION. This ratio defines the
3131
3152
  CPU utilization target for the group. Valid range is [0.0, 1.0].
3153
+ :param pulumi.Input[builtins.str] preference: This field indicates whether this backend should be fully utilized before sending traffic to backends
3154
+ with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
3155
+ - PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
3156
+ based on RTT.
3157
+ - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
3158
+ traffic would be assigned based on the load balancing algorithm you use. This is the default
3159
+ Possible values are: `PREFERRED`, `DEFAULT`.
3132
3160
  """
3133
3161
  pulumi.set(__self__, "group", group)
3134
3162
  if balancing_mode is not None:
@@ -3153,6 +3181,8 @@ class BackendServiceBackendArgs:
3153
3181
  pulumi.set(__self__, "max_rate_per_instance", max_rate_per_instance)
3154
3182
  if max_utilization is not None:
3155
3183
  pulumi.set(__self__, "max_utilization", max_utilization)
3184
+ if preference is not None:
3185
+ pulumi.set(__self__, "preference", preference)
3156
3186
 
3157
3187
  @property
3158
3188
  @pulumi.getter
@@ -3350,6 +3380,24 @@ class BackendServiceBackendArgs:
3350
3380
  def max_utilization(self, value: Optional[pulumi.Input[builtins.float]]):
3351
3381
  pulumi.set(self, "max_utilization", value)
3352
3382
 
3383
+ @property
3384
+ @pulumi.getter
3385
+ def preference(self) -> Optional[pulumi.Input[builtins.str]]:
3386
+ """
3387
+ This field indicates whether this backend should be fully utilized before sending traffic to backends
3388
+ with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
3389
+ - PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
3390
+ based on RTT.
3391
+ - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
3392
+ traffic would be assigned based on the load balancing algorithm you use. This is the default
3393
+ Possible values are: `PREFERRED`, `DEFAULT`.
3394
+ """
3395
+ return pulumi.get(self, "preference")
3396
+
3397
+ @preference.setter
3398
+ def preference(self, value: Optional[pulumi.Input[builtins.str]]):
3399
+ pulumi.set(self, "preference", value)
3400
+
3353
3401
 
3354
3402
  if not MYPY:
3355
3403
  class BackendServiceBackendCustomMetricArgsDict(TypedDict):
@@ -3490,6 +3538,11 @@ if not MYPY:
3490
3538
  Omitting the policy and leaving negativeCaching enabled will use Cloud CDN's default cache TTLs.
3491
3539
  Structure is documented below.
3492
3540
  """
3541
+ request_coalescing: NotRequired[pulumi.Input[builtins.bool]]
3542
+ """
3543
+ If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
3544
+ to the origin.
3545
+ """
3493
3546
  serve_while_stale: NotRequired[pulumi.Input[builtins.int]]
3494
3547
  """
3495
3548
  Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache.
@@ -3520,6 +3573,7 @@ class BackendServiceCdnPolicyArgs:
3520
3573
  max_ttl: Optional[pulumi.Input[builtins.int]] = None,
3521
3574
  negative_caching: Optional[pulumi.Input[builtins.bool]] = None,
3522
3575
  negative_caching_policies: Optional[pulumi.Input[Sequence[pulumi.Input['BackendServiceCdnPolicyNegativeCachingPolicyArgs']]]] = None,
3576
+ request_coalescing: Optional[pulumi.Input[builtins.bool]] = None,
3523
3577
  serve_while_stale: Optional[pulumi.Input[builtins.int]] = None,
3524
3578
  signed_url_cache_max_age_sec: Optional[pulumi.Input[builtins.int]] = None):
3525
3579
  """
@@ -3539,6 +3593,8 @@ class BackendServiceCdnPolicyArgs:
3539
3593
  :param pulumi.Input[Sequence[pulumi.Input['BackendServiceCdnPolicyNegativeCachingPolicyArgs']]] negative_caching_policies: Sets a cache TTL for the specified HTTP status code. negativeCaching must be enabled to configure negativeCachingPolicy.
3540
3594
  Omitting the policy and leaving negativeCaching enabled will use Cloud CDN's default cache TTLs.
3541
3595
  Structure is documented below.
3596
+ :param pulumi.Input[builtins.bool] request_coalescing: If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
3597
+ to the origin.
3542
3598
  :param pulumi.Input[builtins.int] serve_while_stale: Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache.
3543
3599
  :param pulumi.Input[builtins.int] signed_url_cache_max_age_sec: Maximum number of seconds the response to a signed URL request
3544
3600
  will be considered fresh, defaults to 1hr (3600s). After this
@@ -3566,6 +3622,8 @@ class BackendServiceCdnPolicyArgs:
3566
3622
  pulumi.set(__self__, "negative_caching", negative_caching)
3567
3623
  if negative_caching_policies is not None:
3568
3624
  pulumi.set(__self__, "negative_caching_policies", negative_caching_policies)
3625
+ if request_coalescing is not None:
3626
+ pulumi.set(__self__, "request_coalescing", request_coalescing)
3569
3627
  if serve_while_stale is not None:
3570
3628
  pulumi.set(__self__, "serve_while_stale", serve_while_stale)
3571
3629
  if signed_url_cache_max_age_sec is not None:
@@ -3675,6 +3733,19 @@ class BackendServiceCdnPolicyArgs:
3675
3733
  def negative_caching_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BackendServiceCdnPolicyNegativeCachingPolicyArgs']]]]):
3676
3734
  pulumi.set(self, "negative_caching_policies", value)
3677
3735
 
3736
+ @property
3737
+ @pulumi.getter(name="requestCoalescing")
3738
+ def request_coalescing(self) -> Optional[pulumi.Input[builtins.bool]]:
3739
+ """
3740
+ If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
3741
+ to the origin.
3742
+ """
3743
+ return pulumi.get(self, "request_coalescing")
3744
+
3745
+ @request_coalescing.setter
3746
+ def request_coalescing(self, value: Optional[pulumi.Input[builtins.bool]]):
3747
+ pulumi.set(self, "request_coalescing", value)
3748
+
3678
3749
  @property
3679
3750
  @pulumi.getter(name="serveWhileStale")
3680
3751
  def serve_while_stale(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -4998,6 +5069,18 @@ if not MYPY:
4998
5069
  """
4999
5070
  Whether to enable logging for the load balancer traffic served by this backend service.
5000
5071
  """
5072
+ optional_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
5073
+ """
5074
+ This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
5075
+ was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
5076
+ For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
5077
+ """
5078
+ optional_mode: NotRequired[pulumi.Input[builtins.str]]
5079
+ """
5080
+ Specifies the optional logging mode for the load balancer traffic.
5081
+ Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM.
5082
+ Possible values are: `INCLUDE_ALL_OPTIONAL`, `EXCLUDE_ALL_OPTIONAL`, `CUSTOM`.
5083
+ """
5001
5084
  sample_rate: NotRequired[pulumi.Input[builtins.float]]
5002
5085
  """
5003
5086
  This field can only be specified if logging is enabled for this backend service. The value of
@@ -5012,9 +5095,17 @@ elif False:
5012
5095
  class BackendServiceLogConfigArgs:
5013
5096
  def __init__(__self__, *,
5014
5097
  enable: Optional[pulumi.Input[builtins.bool]] = None,
5098
+ optional_fields: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
5099
+ optional_mode: Optional[pulumi.Input[builtins.str]] = None,
5015
5100
  sample_rate: Optional[pulumi.Input[builtins.float]] = None):
5016
5101
  """
5017
5102
  :param pulumi.Input[builtins.bool] enable: Whether to enable logging for the load balancer traffic served by this backend service.
5103
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] optional_fields: This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
5104
+ was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
5105
+ For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
5106
+ :param pulumi.Input[builtins.str] optional_mode: Specifies the optional logging mode for the load balancer traffic.
5107
+ Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM.
5108
+ Possible values are: `INCLUDE_ALL_OPTIONAL`, `EXCLUDE_ALL_OPTIONAL`, `CUSTOM`.
5018
5109
  :param pulumi.Input[builtins.float] sample_rate: This field can only be specified if logging is enabled for this backend service. The value of
5019
5110
  the field must be in [0, 1]. This configures the sampling rate of requests to the load balancer
5020
5111
  where 1.0 means all logged requests are reported and 0.0 means no logged requests are reported.
@@ -5022,6 +5113,10 @@ class BackendServiceLogConfigArgs:
5022
5113
  """
5023
5114
  if enable is not None:
5024
5115
  pulumi.set(__self__, "enable", enable)
5116
+ if optional_fields is not None:
5117
+ pulumi.set(__self__, "optional_fields", optional_fields)
5118
+ if optional_mode is not None:
5119
+ pulumi.set(__self__, "optional_mode", optional_mode)
5025
5120
  if sample_rate is not None:
5026
5121
  pulumi.set(__self__, "sample_rate", sample_rate)
5027
5122
 
@@ -5037,6 +5132,34 @@ class BackendServiceLogConfigArgs:
5037
5132
  def enable(self, value: Optional[pulumi.Input[builtins.bool]]):
5038
5133
  pulumi.set(self, "enable", value)
5039
5134
 
5135
+ @property
5136
+ @pulumi.getter(name="optionalFields")
5137
+ def optional_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
5138
+ """
5139
+ This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
5140
+ was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
5141
+ For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
5142
+ """
5143
+ return pulumi.get(self, "optional_fields")
5144
+
5145
+ @optional_fields.setter
5146
+ def optional_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
5147
+ pulumi.set(self, "optional_fields", value)
5148
+
5149
+ @property
5150
+ @pulumi.getter(name="optionalMode")
5151
+ def optional_mode(self) -> Optional[pulumi.Input[builtins.str]]:
5152
+ """
5153
+ Specifies the optional logging mode for the load balancer traffic.
5154
+ Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM.
5155
+ Possible values are: `INCLUDE_ALL_OPTIONAL`, `EXCLUDE_ALL_OPTIONAL`, `CUSTOM`.
5156
+ """
5157
+ return pulumi.get(self, "optional_mode")
5158
+
5159
+ @optional_mode.setter
5160
+ def optional_mode(self, value: Optional[pulumi.Input[builtins.str]]):
5161
+ pulumi.set(self, "optional_mode", value)
5162
+
5040
5163
  @property
5041
5164
  @pulumi.getter(name="sampleRate")
5042
5165
  def sample_rate(self) -> Optional[pulumi.Input[builtins.float]]:
@@ -5053,6 +5176,63 @@ class BackendServiceLogConfigArgs:
5053
5176
  pulumi.set(self, "sample_rate", value)
5054
5177
 
5055
5178
 
5179
+ if not MYPY:
5180
+ class BackendServiceMaxStreamDurationArgsDict(TypedDict):
5181
+ seconds: pulumi.Input[builtins.str]
5182
+ """
5183
+ Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
5184
+ """
5185
+ nanos: NotRequired[pulumi.Input[builtins.int]]
5186
+ """
5187
+ Span of time that's a fraction of a second at nanosecond resolution.
5188
+ Durations less than one second are represented with a 0 seconds field and a positive nanos field.
5189
+ Must be from 0 to 999,999,999 inclusive.
5190
+ """
5191
+ elif False:
5192
+ BackendServiceMaxStreamDurationArgsDict: TypeAlias = Mapping[str, Any]
5193
+
5194
+ @pulumi.input_type
5195
+ class BackendServiceMaxStreamDurationArgs:
5196
+ def __init__(__self__, *,
5197
+ seconds: pulumi.Input[builtins.str],
5198
+ nanos: Optional[pulumi.Input[builtins.int]] = None):
5199
+ """
5200
+ :param pulumi.Input[builtins.str] seconds: Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
5201
+ :param pulumi.Input[builtins.int] nanos: Span of time that's a fraction of a second at nanosecond resolution.
5202
+ Durations less than one second are represented with a 0 seconds field and a positive nanos field.
5203
+ Must be from 0 to 999,999,999 inclusive.
5204
+ """
5205
+ pulumi.set(__self__, "seconds", seconds)
5206
+ if nanos is not None:
5207
+ pulumi.set(__self__, "nanos", nanos)
5208
+
5209
+ @property
5210
+ @pulumi.getter
5211
+ def seconds(self) -> pulumi.Input[builtins.str]:
5212
+ """
5213
+ Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
5214
+ """
5215
+ return pulumi.get(self, "seconds")
5216
+
5217
+ @seconds.setter
5218
+ def seconds(self, value: pulumi.Input[builtins.str]):
5219
+ pulumi.set(self, "seconds", value)
5220
+
5221
+ @property
5222
+ @pulumi.getter
5223
+ def nanos(self) -> Optional[pulumi.Input[builtins.int]]:
5224
+ """
5225
+ Span of time that's a fraction of a second at nanosecond resolution.
5226
+ Durations less than one second are represented with a 0 seconds field and a positive nanos field.
5227
+ Must be from 0 to 999,999,999 inclusive.
5228
+ """
5229
+ return pulumi.get(self, "nanos")
5230
+
5231
+ @nanos.setter
5232
+ def nanos(self, value: Optional[pulumi.Input[builtins.int]]):
5233
+ pulumi.set(self, "nanos", value)
5234
+
5235
+
5056
5236
  if not MYPY:
5057
5237
  class BackendServiceOutlierDetectionArgsDict(TypedDict):
5058
5238
  base_ejection_time: NotRequired[pulumi.Input['BackendServiceOutlierDetectionBaseEjectionTimeArgsDict']]
@@ -59162,6 +59342,634 @@ class SnapshotSourceDiskEncryptionKeyArgs:
59162
59342
  pulumi.set(self, "rsa_encrypted_key", value)
59163
59343
 
59164
59344
 
59345
+ if not MYPY:
59346
+ class StoragePoolIamBindingConditionArgsDict(TypedDict):
59347
+ expression: pulumi.Input[builtins.str]
59348
+ """
59349
+ Textual representation of an expression in Common Expression Language syntax.
59350
+ """
59351
+ title: pulumi.Input[builtins.str]
59352
+ """
59353
+ A title for the expression, i.e. a short string describing its purpose.
59354
+ """
59355
+ description: NotRequired[pulumi.Input[builtins.str]]
59356
+ elif False:
59357
+ StoragePoolIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
59358
+
59359
+ @pulumi.input_type
59360
+ class StoragePoolIamBindingConditionArgs:
59361
+ def __init__(__self__, *,
59362
+ expression: pulumi.Input[builtins.str],
59363
+ title: pulumi.Input[builtins.str],
59364
+ description: Optional[pulumi.Input[builtins.str]] = None):
59365
+ """
59366
+ :param pulumi.Input[builtins.str] expression: Textual representation of an expression in Common Expression Language syntax.
59367
+ :param pulumi.Input[builtins.str] title: A title for the expression, i.e. a short string describing its purpose.
59368
+ """
59369
+ pulumi.set(__self__, "expression", expression)
59370
+ pulumi.set(__self__, "title", title)
59371
+ if description is not None:
59372
+ pulumi.set(__self__, "description", description)
59373
+
59374
+ @property
59375
+ @pulumi.getter
59376
+ def expression(self) -> pulumi.Input[builtins.str]:
59377
+ """
59378
+ Textual representation of an expression in Common Expression Language syntax.
59379
+ """
59380
+ return pulumi.get(self, "expression")
59381
+
59382
+ @expression.setter
59383
+ def expression(self, value: pulumi.Input[builtins.str]):
59384
+ pulumi.set(self, "expression", value)
59385
+
59386
+ @property
59387
+ @pulumi.getter
59388
+ def title(self) -> pulumi.Input[builtins.str]:
59389
+ """
59390
+ A title for the expression, i.e. a short string describing its purpose.
59391
+ """
59392
+ return pulumi.get(self, "title")
59393
+
59394
+ @title.setter
59395
+ def title(self, value: pulumi.Input[builtins.str]):
59396
+ pulumi.set(self, "title", value)
59397
+
59398
+ @property
59399
+ @pulumi.getter
59400
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
59401
+ return pulumi.get(self, "description")
59402
+
59403
+ @description.setter
59404
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
59405
+ pulumi.set(self, "description", value)
59406
+
59407
+
59408
+ if not MYPY:
59409
+ class StoragePoolIamMemberConditionArgsDict(TypedDict):
59410
+ expression: pulumi.Input[builtins.str]
59411
+ """
59412
+ Textual representation of an expression in Common Expression Language syntax.
59413
+ """
59414
+ title: pulumi.Input[builtins.str]
59415
+ """
59416
+ A title for the expression, i.e. a short string describing its purpose.
59417
+ """
59418
+ description: NotRequired[pulumi.Input[builtins.str]]
59419
+ elif False:
59420
+ StoragePoolIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
59421
+
59422
+ @pulumi.input_type
59423
+ class StoragePoolIamMemberConditionArgs:
59424
+ def __init__(__self__, *,
59425
+ expression: pulumi.Input[builtins.str],
59426
+ title: pulumi.Input[builtins.str],
59427
+ description: Optional[pulumi.Input[builtins.str]] = None):
59428
+ """
59429
+ :param pulumi.Input[builtins.str] expression: Textual representation of an expression in Common Expression Language syntax.
59430
+ :param pulumi.Input[builtins.str] title: A title for the expression, i.e. a short string describing its purpose.
59431
+ """
59432
+ pulumi.set(__self__, "expression", expression)
59433
+ pulumi.set(__self__, "title", title)
59434
+ if description is not None:
59435
+ pulumi.set(__self__, "description", description)
59436
+
59437
+ @property
59438
+ @pulumi.getter
59439
+ def expression(self) -> pulumi.Input[builtins.str]:
59440
+ """
59441
+ Textual representation of an expression in Common Expression Language syntax.
59442
+ """
59443
+ return pulumi.get(self, "expression")
59444
+
59445
+ @expression.setter
59446
+ def expression(self, value: pulumi.Input[builtins.str]):
59447
+ pulumi.set(self, "expression", value)
59448
+
59449
+ @property
59450
+ @pulumi.getter
59451
+ def title(self) -> pulumi.Input[builtins.str]:
59452
+ """
59453
+ A title for the expression, i.e. a short string describing its purpose.
59454
+ """
59455
+ return pulumi.get(self, "title")
59456
+
59457
+ @title.setter
59458
+ def title(self, value: pulumi.Input[builtins.str]):
59459
+ pulumi.set(self, "title", value)
59460
+
59461
+ @property
59462
+ @pulumi.getter
59463
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
59464
+ return pulumi.get(self, "description")
59465
+
59466
+ @description.setter
59467
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
59468
+ pulumi.set(self, "description", value)
59469
+
59470
+
59471
+ if not MYPY:
59472
+ class StoragePoolResourceStatusArgsDict(TypedDict):
59473
+ disk_count: NotRequired[pulumi.Input[builtins.str]]
59474
+ """
59475
+ (Output)
59476
+ Number of disks used.
59477
+ """
59478
+ last_resize_timestamp: NotRequired[pulumi.Input[builtins.str]]
59479
+ """
59480
+ (Output)
59481
+ Timestamp of the last successful resize in RFC3339 text format.
59482
+ """
59483
+ max_total_provisioned_disk_capacity_gb: NotRequired[pulumi.Input[builtins.str]]
59484
+ """
59485
+ (Output)
59486
+ Maximum allowed aggregate disk size in gigabytes.
59487
+ """
59488
+ pool_used_capacity_bytes: NotRequired[pulumi.Input[builtins.str]]
59489
+ """
59490
+ (Output)
59491
+ Space used by data stored in disks within the storage pool (in bytes).
59492
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59493
+ """
59494
+ pool_used_iops: NotRequired[pulumi.Input[builtins.str]]
59495
+ """
59496
+ (Output)
59497
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59498
+ """
59499
+ pool_used_throughput: NotRequired[pulumi.Input[builtins.str]]
59500
+ """
59501
+ (Output)
59502
+ Sum of all the disks' provisioned throughput in MB/s.
59503
+ """
59504
+ pool_user_written_bytes: NotRequired[pulumi.Input[builtins.str]]
59505
+ """
59506
+ (Output)
59507
+ Amount of data written into the pool, before it is compacted.
59508
+ """
59509
+ total_provisioned_disk_capacity_gb: NotRequired[pulumi.Input[builtins.str]]
59510
+ """
59511
+ (Output)
59512
+ Sum of all the capacity provisioned in disks in this storage pool.
59513
+ A disk's provisioned capacity is the same as its total capacity.
59514
+ """
59515
+ total_provisioned_disk_iops: NotRequired[pulumi.Input[builtins.str]]
59516
+ """
59517
+ (Output)
59518
+ Sum of all the disks' provisioned IOPS.
59519
+ """
59520
+ total_provisioned_disk_throughput: NotRequired[pulumi.Input[builtins.str]]
59521
+ """
59522
+ (Output)
59523
+ Sum of all the disks' provisioned throughput in MB/s,
59524
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59525
+ """
59526
+ elif False:
59527
+ StoragePoolResourceStatusArgsDict: TypeAlias = Mapping[str, Any]
59528
+
59529
+ @pulumi.input_type
59530
+ class StoragePoolResourceStatusArgs:
59531
+ def __init__(__self__, *,
59532
+ disk_count: Optional[pulumi.Input[builtins.str]] = None,
59533
+ last_resize_timestamp: Optional[pulumi.Input[builtins.str]] = None,
59534
+ max_total_provisioned_disk_capacity_gb: Optional[pulumi.Input[builtins.str]] = None,
59535
+ pool_used_capacity_bytes: Optional[pulumi.Input[builtins.str]] = None,
59536
+ pool_used_iops: Optional[pulumi.Input[builtins.str]] = None,
59537
+ pool_used_throughput: Optional[pulumi.Input[builtins.str]] = None,
59538
+ pool_user_written_bytes: Optional[pulumi.Input[builtins.str]] = None,
59539
+ total_provisioned_disk_capacity_gb: Optional[pulumi.Input[builtins.str]] = None,
59540
+ total_provisioned_disk_iops: Optional[pulumi.Input[builtins.str]] = None,
59541
+ total_provisioned_disk_throughput: Optional[pulumi.Input[builtins.str]] = None):
59542
+ """
59543
+ :param pulumi.Input[builtins.str] disk_count: (Output)
59544
+ Number of disks used.
59545
+ :param pulumi.Input[builtins.str] last_resize_timestamp: (Output)
59546
+ Timestamp of the last successful resize in RFC3339 text format.
59547
+ :param pulumi.Input[builtins.str] max_total_provisioned_disk_capacity_gb: (Output)
59548
+ Maximum allowed aggregate disk size in gigabytes.
59549
+ :param pulumi.Input[builtins.str] pool_used_capacity_bytes: (Output)
59550
+ Space used by data stored in disks within the storage pool (in bytes).
59551
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59552
+ :param pulumi.Input[builtins.str] pool_used_iops: (Output)
59553
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59554
+ :param pulumi.Input[builtins.str] pool_used_throughput: (Output)
59555
+ Sum of all the disks' provisioned throughput in MB/s.
59556
+ :param pulumi.Input[builtins.str] pool_user_written_bytes: (Output)
59557
+ Amount of data written into the pool, before it is compacted.
59558
+ :param pulumi.Input[builtins.str] total_provisioned_disk_capacity_gb: (Output)
59559
+ Sum of all the capacity provisioned in disks in this storage pool.
59560
+ A disk's provisioned capacity is the same as its total capacity.
59561
+ :param pulumi.Input[builtins.str] total_provisioned_disk_iops: (Output)
59562
+ Sum of all the disks' provisioned IOPS.
59563
+ :param pulumi.Input[builtins.str] total_provisioned_disk_throughput: (Output)
59564
+ Sum of all the disks' provisioned throughput in MB/s,
59565
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59566
+ """
59567
+ if disk_count is not None:
59568
+ pulumi.set(__self__, "disk_count", disk_count)
59569
+ if last_resize_timestamp is not None:
59570
+ pulumi.set(__self__, "last_resize_timestamp", last_resize_timestamp)
59571
+ if max_total_provisioned_disk_capacity_gb is not None:
59572
+ pulumi.set(__self__, "max_total_provisioned_disk_capacity_gb", max_total_provisioned_disk_capacity_gb)
59573
+ if pool_used_capacity_bytes is not None:
59574
+ pulumi.set(__self__, "pool_used_capacity_bytes", pool_used_capacity_bytes)
59575
+ if pool_used_iops is not None:
59576
+ pulumi.set(__self__, "pool_used_iops", pool_used_iops)
59577
+ if pool_used_throughput is not None:
59578
+ pulumi.set(__self__, "pool_used_throughput", pool_used_throughput)
59579
+ if pool_user_written_bytes is not None:
59580
+ pulumi.set(__self__, "pool_user_written_bytes", pool_user_written_bytes)
59581
+ if total_provisioned_disk_capacity_gb is not None:
59582
+ pulumi.set(__self__, "total_provisioned_disk_capacity_gb", total_provisioned_disk_capacity_gb)
59583
+ if total_provisioned_disk_iops is not None:
59584
+ pulumi.set(__self__, "total_provisioned_disk_iops", total_provisioned_disk_iops)
59585
+ if total_provisioned_disk_throughput is not None:
59586
+ pulumi.set(__self__, "total_provisioned_disk_throughput", total_provisioned_disk_throughput)
59587
+
59588
+ @property
59589
+ @pulumi.getter(name="diskCount")
59590
+ def disk_count(self) -> Optional[pulumi.Input[builtins.str]]:
59591
+ """
59592
+ (Output)
59593
+ Number of disks used.
59594
+ """
59595
+ return pulumi.get(self, "disk_count")
59596
+
59597
+ @disk_count.setter
59598
+ def disk_count(self, value: Optional[pulumi.Input[builtins.str]]):
59599
+ pulumi.set(self, "disk_count", value)
59600
+
59601
+ @property
59602
+ @pulumi.getter(name="lastResizeTimestamp")
59603
+ def last_resize_timestamp(self) -> Optional[pulumi.Input[builtins.str]]:
59604
+ """
59605
+ (Output)
59606
+ Timestamp of the last successful resize in RFC3339 text format.
59607
+ """
59608
+ return pulumi.get(self, "last_resize_timestamp")
59609
+
59610
+ @last_resize_timestamp.setter
59611
+ def last_resize_timestamp(self, value: Optional[pulumi.Input[builtins.str]]):
59612
+ pulumi.set(self, "last_resize_timestamp", value)
59613
+
59614
+ @property
59615
+ @pulumi.getter(name="maxTotalProvisionedDiskCapacityGb")
59616
+ def max_total_provisioned_disk_capacity_gb(self) -> Optional[pulumi.Input[builtins.str]]:
59617
+ """
59618
+ (Output)
59619
+ Maximum allowed aggregate disk size in gigabytes.
59620
+ """
59621
+ return pulumi.get(self, "max_total_provisioned_disk_capacity_gb")
59622
+
59623
+ @max_total_provisioned_disk_capacity_gb.setter
59624
+ def max_total_provisioned_disk_capacity_gb(self, value: Optional[pulumi.Input[builtins.str]]):
59625
+ pulumi.set(self, "max_total_provisioned_disk_capacity_gb", value)
59626
+
59627
+ @property
59628
+ @pulumi.getter(name="poolUsedCapacityBytes")
59629
+ def pool_used_capacity_bytes(self) -> Optional[pulumi.Input[builtins.str]]:
59630
+ """
59631
+ (Output)
59632
+ Space used by data stored in disks within the storage pool (in bytes).
59633
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59634
+ """
59635
+ return pulumi.get(self, "pool_used_capacity_bytes")
59636
+
59637
+ @pool_used_capacity_bytes.setter
59638
+ def pool_used_capacity_bytes(self, value: Optional[pulumi.Input[builtins.str]]):
59639
+ pulumi.set(self, "pool_used_capacity_bytes", value)
59640
+
59641
+ @property
59642
+ @pulumi.getter(name="poolUsedIops")
59643
+ def pool_used_iops(self) -> Optional[pulumi.Input[builtins.str]]:
59644
+ """
59645
+ (Output)
59646
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59647
+ """
59648
+ return pulumi.get(self, "pool_used_iops")
59649
+
59650
+ @pool_used_iops.setter
59651
+ def pool_used_iops(self, value: Optional[pulumi.Input[builtins.str]]):
59652
+ pulumi.set(self, "pool_used_iops", value)
59653
+
59654
+ @property
59655
+ @pulumi.getter(name="poolUsedThroughput")
59656
+ def pool_used_throughput(self) -> Optional[pulumi.Input[builtins.str]]:
59657
+ """
59658
+ (Output)
59659
+ Sum of all the disks' provisioned throughput in MB/s.
59660
+ """
59661
+ return pulumi.get(self, "pool_used_throughput")
59662
+
59663
+ @pool_used_throughput.setter
59664
+ def pool_used_throughput(self, value: Optional[pulumi.Input[builtins.str]]):
59665
+ pulumi.set(self, "pool_used_throughput", value)
59666
+
59667
+ @property
59668
+ @pulumi.getter(name="poolUserWrittenBytes")
59669
+ def pool_user_written_bytes(self) -> Optional[pulumi.Input[builtins.str]]:
59670
+ """
59671
+ (Output)
59672
+ Amount of data written into the pool, before it is compacted.
59673
+ """
59674
+ return pulumi.get(self, "pool_user_written_bytes")
59675
+
59676
+ @pool_user_written_bytes.setter
59677
+ def pool_user_written_bytes(self, value: Optional[pulumi.Input[builtins.str]]):
59678
+ pulumi.set(self, "pool_user_written_bytes", value)
59679
+
59680
+ @property
59681
+ @pulumi.getter(name="totalProvisionedDiskCapacityGb")
59682
+ def total_provisioned_disk_capacity_gb(self) -> Optional[pulumi.Input[builtins.str]]:
59683
+ """
59684
+ (Output)
59685
+ Sum of all the capacity provisioned in disks in this storage pool.
59686
+ A disk's provisioned capacity is the same as its total capacity.
59687
+ """
59688
+ return pulumi.get(self, "total_provisioned_disk_capacity_gb")
59689
+
59690
+ @total_provisioned_disk_capacity_gb.setter
59691
+ def total_provisioned_disk_capacity_gb(self, value: Optional[pulumi.Input[builtins.str]]):
59692
+ pulumi.set(self, "total_provisioned_disk_capacity_gb", value)
59693
+
59694
+ @property
59695
+ @pulumi.getter(name="totalProvisionedDiskIops")
59696
+ def total_provisioned_disk_iops(self) -> Optional[pulumi.Input[builtins.str]]:
59697
+ """
59698
+ (Output)
59699
+ Sum of all the disks' provisioned IOPS.
59700
+ """
59701
+ return pulumi.get(self, "total_provisioned_disk_iops")
59702
+
59703
+ @total_provisioned_disk_iops.setter
59704
+ def total_provisioned_disk_iops(self, value: Optional[pulumi.Input[builtins.str]]):
59705
+ pulumi.set(self, "total_provisioned_disk_iops", value)
59706
+
59707
+ @property
59708
+ @pulumi.getter(name="totalProvisionedDiskThroughput")
59709
+ def total_provisioned_disk_throughput(self) -> Optional[pulumi.Input[builtins.str]]:
59710
+ """
59711
+ (Output)
59712
+ Sum of all the disks' provisioned throughput in MB/s,
59713
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59714
+ """
59715
+ return pulumi.get(self, "total_provisioned_disk_throughput")
59716
+
59717
+ @total_provisioned_disk_throughput.setter
59718
+ def total_provisioned_disk_throughput(self, value: Optional[pulumi.Input[builtins.str]]):
59719
+ pulumi.set(self, "total_provisioned_disk_throughput", value)
59720
+
59721
+
59722
+ if not MYPY:
59723
+ class StoragePoolStatusArgsDict(TypedDict):
59724
+ disk_count: NotRequired[pulumi.Input[builtins.str]]
59725
+ """
59726
+ (Output)
59727
+ Number of disks used.
59728
+ """
59729
+ last_resize_timestamp: NotRequired[pulumi.Input[builtins.str]]
59730
+ """
59731
+ (Output)
59732
+ Timestamp of the last successful resize in RFC3339 text format.
59733
+ """
59734
+ max_total_provisioned_disk_capacity_gb: NotRequired[pulumi.Input[builtins.str]]
59735
+ """
59736
+ (Output)
59737
+ Maximum allowed aggregate disk size in gigabytes.
59738
+ """
59739
+ pool_used_capacity_bytes: NotRequired[pulumi.Input[builtins.str]]
59740
+ """
59741
+ (Output)
59742
+ Space used by data stored in disks within the storage pool (in bytes).
59743
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59744
+ """
59745
+ pool_used_iops: NotRequired[pulumi.Input[builtins.str]]
59746
+ """
59747
+ (Output)
59748
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59749
+ """
59750
+ pool_used_throughput: NotRequired[pulumi.Input[builtins.str]]
59751
+ """
59752
+ (Output)
59753
+ Sum of all the disks' provisioned throughput in MB/s.
59754
+ """
59755
+ pool_user_written_bytes: NotRequired[pulumi.Input[builtins.str]]
59756
+ """
59757
+ (Output)
59758
+ Amount of data written into the pool, before it is compacted.
59759
+ """
59760
+ total_provisioned_disk_capacity_gb: NotRequired[pulumi.Input[builtins.str]]
59761
+ """
59762
+ (Output)
59763
+ Sum of all the capacity provisioned in disks in this storage pool.
59764
+ A disk's provisioned capacity is the same as its total capacity.
59765
+ """
59766
+ total_provisioned_disk_iops: NotRequired[pulumi.Input[builtins.str]]
59767
+ """
59768
+ (Output)
59769
+ Sum of all the disks' provisioned IOPS.
59770
+ """
59771
+ total_provisioned_disk_throughput: NotRequired[pulumi.Input[builtins.str]]
59772
+ """
59773
+ (Output)
59774
+ Sum of all the disks' provisioned throughput in MB/s,
59775
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59776
+ """
59777
+ elif False:
59778
+ StoragePoolStatusArgsDict: TypeAlias = Mapping[str, Any]
59779
+
59780
+ @pulumi.input_type
59781
+ class StoragePoolStatusArgs:
59782
+ def __init__(__self__, *,
59783
+ disk_count: Optional[pulumi.Input[builtins.str]] = None,
59784
+ last_resize_timestamp: Optional[pulumi.Input[builtins.str]] = None,
59785
+ max_total_provisioned_disk_capacity_gb: Optional[pulumi.Input[builtins.str]] = None,
59786
+ pool_used_capacity_bytes: Optional[pulumi.Input[builtins.str]] = None,
59787
+ pool_used_iops: Optional[pulumi.Input[builtins.str]] = None,
59788
+ pool_used_throughput: Optional[pulumi.Input[builtins.str]] = None,
59789
+ pool_user_written_bytes: Optional[pulumi.Input[builtins.str]] = None,
59790
+ total_provisioned_disk_capacity_gb: Optional[pulumi.Input[builtins.str]] = None,
59791
+ total_provisioned_disk_iops: Optional[pulumi.Input[builtins.str]] = None,
59792
+ total_provisioned_disk_throughput: Optional[pulumi.Input[builtins.str]] = None):
59793
+ """
59794
+ :param pulumi.Input[builtins.str] disk_count: (Output)
59795
+ Number of disks used.
59796
+ :param pulumi.Input[builtins.str] last_resize_timestamp: (Output)
59797
+ Timestamp of the last successful resize in RFC3339 text format.
59798
+ :param pulumi.Input[builtins.str] max_total_provisioned_disk_capacity_gb: (Output)
59799
+ Maximum allowed aggregate disk size in gigabytes.
59800
+ :param pulumi.Input[builtins.str] pool_used_capacity_bytes: (Output)
59801
+ Space used by data stored in disks within the storage pool (in bytes).
59802
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59803
+ :param pulumi.Input[builtins.str] pool_used_iops: (Output)
59804
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59805
+ :param pulumi.Input[builtins.str] pool_used_throughput: (Output)
59806
+ Sum of all the disks' provisioned throughput in MB/s.
59807
+ :param pulumi.Input[builtins.str] pool_user_written_bytes: (Output)
59808
+ Amount of data written into the pool, before it is compacted.
59809
+ :param pulumi.Input[builtins.str] total_provisioned_disk_capacity_gb: (Output)
59810
+ Sum of all the capacity provisioned in disks in this storage pool.
59811
+ A disk's provisioned capacity is the same as its total capacity.
59812
+ :param pulumi.Input[builtins.str] total_provisioned_disk_iops: (Output)
59813
+ Sum of all the disks' provisioned IOPS.
59814
+ :param pulumi.Input[builtins.str] total_provisioned_disk_throughput: (Output)
59815
+ Sum of all the disks' provisioned throughput in MB/s,
59816
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59817
+ """
59818
+ if disk_count is not None:
59819
+ pulumi.set(__self__, "disk_count", disk_count)
59820
+ if last_resize_timestamp is not None:
59821
+ pulumi.set(__self__, "last_resize_timestamp", last_resize_timestamp)
59822
+ if max_total_provisioned_disk_capacity_gb is not None:
59823
+ pulumi.set(__self__, "max_total_provisioned_disk_capacity_gb", max_total_provisioned_disk_capacity_gb)
59824
+ if pool_used_capacity_bytes is not None:
59825
+ pulumi.set(__self__, "pool_used_capacity_bytes", pool_used_capacity_bytes)
59826
+ if pool_used_iops is not None:
59827
+ pulumi.set(__self__, "pool_used_iops", pool_used_iops)
59828
+ if pool_used_throughput is not None:
59829
+ pulumi.set(__self__, "pool_used_throughput", pool_used_throughput)
59830
+ if pool_user_written_bytes is not None:
59831
+ pulumi.set(__self__, "pool_user_written_bytes", pool_user_written_bytes)
59832
+ if total_provisioned_disk_capacity_gb is not None:
59833
+ pulumi.set(__self__, "total_provisioned_disk_capacity_gb", total_provisioned_disk_capacity_gb)
59834
+ if total_provisioned_disk_iops is not None:
59835
+ pulumi.set(__self__, "total_provisioned_disk_iops", total_provisioned_disk_iops)
59836
+ if total_provisioned_disk_throughput is not None:
59837
+ pulumi.set(__self__, "total_provisioned_disk_throughput", total_provisioned_disk_throughput)
59838
+
59839
+ @property
59840
+ @pulumi.getter(name="diskCount")
59841
+ def disk_count(self) -> Optional[pulumi.Input[builtins.str]]:
59842
+ """
59843
+ (Output)
59844
+ Number of disks used.
59845
+ """
59846
+ return pulumi.get(self, "disk_count")
59847
+
59848
+ @disk_count.setter
59849
+ def disk_count(self, value: Optional[pulumi.Input[builtins.str]]):
59850
+ pulumi.set(self, "disk_count", value)
59851
+
59852
+ @property
59853
+ @pulumi.getter(name="lastResizeTimestamp")
59854
+ def last_resize_timestamp(self) -> Optional[pulumi.Input[builtins.str]]:
59855
+ """
59856
+ (Output)
59857
+ Timestamp of the last successful resize in RFC3339 text format.
59858
+ """
59859
+ return pulumi.get(self, "last_resize_timestamp")
59860
+
59861
+ @last_resize_timestamp.setter
59862
+ def last_resize_timestamp(self, value: Optional[pulumi.Input[builtins.str]]):
59863
+ pulumi.set(self, "last_resize_timestamp", value)
59864
+
59865
+ @property
59866
+ @pulumi.getter(name="maxTotalProvisionedDiskCapacityGb")
59867
+ def max_total_provisioned_disk_capacity_gb(self) -> Optional[pulumi.Input[builtins.str]]:
59868
+ """
59869
+ (Output)
59870
+ Maximum allowed aggregate disk size in gigabytes.
59871
+ """
59872
+ return pulumi.get(self, "max_total_provisioned_disk_capacity_gb")
59873
+
59874
+ @max_total_provisioned_disk_capacity_gb.setter
59875
+ def max_total_provisioned_disk_capacity_gb(self, value: Optional[pulumi.Input[builtins.str]]):
59876
+ pulumi.set(self, "max_total_provisioned_disk_capacity_gb", value)
59877
+
59878
+ @property
59879
+ @pulumi.getter(name="poolUsedCapacityBytes")
59880
+ def pool_used_capacity_bytes(self) -> Optional[pulumi.Input[builtins.str]]:
59881
+ """
59882
+ (Output)
59883
+ Space used by data stored in disks within the storage pool (in bytes).
59884
+ This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
59885
+ """
59886
+ return pulumi.get(self, "pool_used_capacity_bytes")
59887
+
59888
+ @pool_used_capacity_bytes.setter
59889
+ def pool_used_capacity_bytes(self, value: Optional[pulumi.Input[builtins.str]]):
59890
+ pulumi.set(self, "pool_used_capacity_bytes", value)
59891
+
59892
+ @property
59893
+ @pulumi.getter(name="poolUsedIops")
59894
+ def pool_used_iops(self) -> Optional[pulumi.Input[builtins.str]]:
59895
+ """
59896
+ (Output)
59897
+ Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.
59898
+ """
59899
+ return pulumi.get(self, "pool_used_iops")
59900
+
59901
+ @pool_used_iops.setter
59902
+ def pool_used_iops(self, value: Optional[pulumi.Input[builtins.str]]):
59903
+ pulumi.set(self, "pool_used_iops", value)
59904
+
59905
+ @property
59906
+ @pulumi.getter(name="poolUsedThroughput")
59907
+ def pool_used_throughput(self) -> Optional[pulumi.Input[builtins.str]]:
59908
+ """
59909
+ (Output)
59910
+ Sum of all the disks' provisioned throughput in MB/s.
59911
+ """
59912
+ return pulumi.get(self, "pool_used_throughput")
59913
+
59914
+ @pool_used_throughput.setter
59915
+ def pool_used_throughput(self, value: Optional[pulumi.Input[builtins.str]]):
59916
+ pulumi.set(self, "pool_used_throughput", value)
59917
+
59918
+ @property
59919
+ @pulumi.getter(name="poolUserWrittenBytes")
59920
+ def pool_user_written_bytes(self) -> Optional[pulumi.Input[builtins.str]]:
59921
+ """
59922
+ (Output)
59923
+ Amount of data written into the pool, before it is compacted.
59924
+ """
59925
+ return pulumi.get(self, "pool_user_written_bytes")
59926
+
59927
+ @pool_user_written_bytes.setter
59928
+ def pool_user_written_bytes(self, value: Optional[pulumi.Input[builtins.str]]):
59929
+ pulumi.set(self, "pool_user_written_bytes", value)
59930
+
59931
+ @property
59932
+ @pulumi.getter(name="totalProvisionedDiskCapacityGb")
59933
+ def total_provisioned_disk_capacity_gb(self) -> Optional[pulumi.Input[builtins.str]]:
59934
+ """
59935
+ (Output)
59936
+ Sum of all the capacity provisioned in disks in this storage pool.
59937
+ A disk's provisioned capacity is the same as its total capacity.
59938
+ """
59939
+ return pulumi.get(self, "total_provisioned_disk_capacity_gb")
59940
+
59941
+ @total_provisioned_disk_capacity_gb.setter
59942
+ def total_provisioned_disk_capacity_gb(self, value: Optional[pulumi.Input[builtins.str]]):
59943
+ pulumi.set(self, "total_provisioned_disk_capacity_gb", value)
59944
+
59945
+ @property
59946
+ @pulumi.getter(name="totalProvisionedDiskIops")
59947
+ def total_provisioned_disk_iops(self) -> Optional[pulumi.Input[builtins.str]]:
59948
+ """
59949
+ (Output)
59950
+ Sum of all the disks' provisioned IOPS.
59951
+ """
59952
+ return pulumi.get(self, "total_provisioned_disk_iops")
59953
+
59954
+ @total_provisioned_disk_iops.setter
59955
+ def total_provisioned_disk_iops(self, value: Optional[pulumi.Input[builtins.str]]):
59956
+ pulumi.set(self, "total_provisioned_disk_iops", value)
59957
+
59958
+ @property
59959
+ @pulumi.getter(name="totalProvisionedDiskThroughput")
59960
+ def total_provisioned_disk_throughput(self) -> Optional[pulumi.Input[builtins.str]]:
59961
+ """
59962
+ (Output)
59963
+ Sum of all the disks' provisioned throughput in MB/s,
59964
+ minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
59965
+ """
59966
+ return pulumi.get(self, "total_provisioned_disk_throughput")
59967
+
59968
+ @total_provisioned_disk_throughput.setter
59969
+ def total_provisioned_disk_throughput(self, value: Optional[pulumi.Input[builtins.str]]):
59970
+ pulumi.set(self, "total_provisioned_disk_throughput", value)
59971
+
59972
+
59165
59973
  if not MYPY:
59166
59974
  class SubnetworkIAMBindingConditionArgsDict(TypedDict):
59167
59975
  expression: pulumi.Input[builtins.str]