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.
- pulumi_gcp/__init__.py +88 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
- pulumi_gcp/accesscontextmanager/outputs.py +369 -0
- pulumi_gcp/alloydb/_inputs.py +47 -1
- pulumi_gcp/alloydb/outputs.py +61 -3
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
- pulumi_gcp/applicationintegration/client.py +34 -12
- pulumi_gcp/artifactregistry/outputs.py +2 -2
- pulumi_gcp/certificateauthority/_inputs.py +32 -0
- pulumi_gcp/certificateauthority/ca_pool.py +2 -0
- pulumi_gcp/certificateauthority/outputs.py +22 -0
- pulumi_gcp/clouddeploy/_inputs.py +0 -6
- pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
- pulumi_gcp/clouddeploy/outputs.py +0 -4
- pulumi_gcp/cloudrunv2/_inputs.py +3 -3
- pulumi_gcp/cloudrunv2/outputs.py +4 -4
- pulumi_gcp/colab/runtime_template.py +3 -3
- pulumi_gcp/compute/__init__.py +7 -0
- pulumi_gcp/compute/_inputs.py +809 -1
- pulumi_gcp/compute/backend_service.py +89 -0
- pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
- pulumi_gcp/compute/get_storage_pool_types.py +268 -0
- pulumi_gcp/compute/outputs.py +743 -3
- pulumi_gcp/compute/resource_policy_attachment.py +476 -0
- pulumi_gcp/compute/storage_pool.py +1045 -0
- pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +63 -3
- pulumi_gcp/container/outputs.py +70 -6
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/discoveryengine/_inputs.py +38 -0
- pulumi_gcp/discoveryengine/chat_engine.py +6 -4
- pulumi_gcp/discoveryengine/outputs.py +26 -0
- pulumi_gcp/firebaserules/_inputs.py +6 -6
- pulumi_gcp/firebaserules/outputs.py +4 -4
- pulumi_gcp/gkebackup/__init__.py +2 -0
- pulumi_gcp/gkebackup/backup_channel.py +737 -0
- pulumi_gcp/gkebackup/restore_channel.py +737 -0
- pulumi_gcp/gkehub/_inputs.py +208 -0
- pulumi_gcp/gkehub/outputs.py +171 -1
- pulumi_gcp/healthcare/pipeline_job.py +2 -2
- pulumi_gcp/iap/__init__.py +4 -0
- pulumi_gcp/iap/_inputs.py +130 -0
- pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
- pulumi_gcp/kms/key_ring_import_job.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +8 -4
- pulumi_gcp/managedkafka/connector.py +8 -4
- pulumi_gcp/monitoring/uptime_check_config.py +49 -0
- pulumi_gcp/networkconnectivity/internal_range.py +82 -0
- pulumi_gcp/projects/_inputs.py +0 -6
- pulumi_gcp/projects/api_key.py +28 -0
- pulumi_gcp/projects/outputs.py +0 -4
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/sql/_inputs.py +86 -6
- pulumi_gcp/sql/outputs.py +156 -12
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +457 -0
- pulumi_gcp/storage/batch_operations_job.py +776 -0
- pulumi_gcp/storage/outputs.py +403 -0
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/outputs.py
CHANGED
@@ -51,6 +51,7 @@ __all__ = [
|
|
51
51
|
'BackendServiceLocalityLbPolicyCustomPolicy',
|
52
52
|
'BackendServiceLocalityLbPolicyPolicy',
|
53
53
|
'BackendServiceLogConfig',
|
54
|
+
'BackendServiceMaxStreamDuration',
|
54
55
|
'BackendServiceOutlierDetection',
|
55
56
|
'BackendServiceOutlierDetectionBaseEjectionTime',
|
56
57
|
'BackendServiceOutlierDetectionInterval',
|
@@ -604,6 +605,10 @@ __all__ = [
|
|
604
605
|
'SnapshotIamMemberCondition',
|
605
606
|
'SnapshotSnapshotEncryptionKey',
|
606
607
|
'SnapshotSourceDiskEncryptionKey',
|
608
|
+
'StoragePoolIamBindingCondition',
|
609
|
+
'StoragePoolIamMemberCondition',
|
610
|
+
'StoragePoolResourceStatus',
|
611
|
+
'StoragePoolStatus',
|
607
612
|
'SubnetworkIAMBindingCondition',
|
608
613
|
'SubnetworkIAMMemberCondition',
|
609
614
|
'SubnetworkLogConfig',
|
@@ -726,6 +731,7 @@ __all__ = [
|
|
726
731
|
'GetBackendServiceLocalityLbPolicyCustomPolicyResult',
|
727
732
|
'GetBackendServiceLocalityLbPolicyPolicyResult',
|
728
733
|
'GetBackendServiceLogConfigResult',
|
734
|
+
'GetBackendServiceMaxStreamDurationResult',
|
729
735
|
'GetBackendServiceOutlierDetectionResult',
|
730
736
|
'GetBackendServiceOutlierDetectionBaseEjectionTimeResult',
|
731
737
|
'GetBackendServiceOutlierDetectionIntervalResult',
|
@@ -968,6 +974,7 @@ __all__ = [
|
|
968
974
|
'GetSecurityPolicyRuleRedirectOptionResult',
|
969
975
|
'GetSnapshotSnapshotEncryptionKeyResult',
|
970
976
|
'GetSnapshotSourceDiskEncryptionKeyResult',
|
977
|
+
'GetStoragePoolTypesDeprecatedResult',
|
971
978
|
'GetSubnetworkSecondaryIpRangeResult',
|
972
979
|
'GetSubnetworksSubnetworkResult',
|
973
980
|
]
|
@@ -2172,7 +2179,8 @@ class BackendServiceBackend(dict):
|
|
2172
2179
|
max_rate: Optional[builtins.int] = None,
|
2173
2180
|
max_rate_per_endpoint: Optional[builtins.float] = None,
|
2174
2181
|
max_rate_per_instance: Optional[builtins.float] = None,
|
2175
|
-
max_utilization: Optional[builtins.float] = None
|
2182
|
+
max_utilization: Optional[builtins.float] = None,
|
2183
|
+
preference: Optional[builtins.str] = None):
|
2176
2184
|
"""
|
2177
2185
|
:param builtins.str group: The fully-qualified URL of an Instance Group or Network Endpoint
|
2178
2186
|
Group resource. In case of instance group this defines the list
|
@@ -2238,6 +2246,13 @@ class BackendServiceBackend(dict):
|
|
2238
2246
|
either maxRate or maxRatePerInstance must be set.
|
2239
2247
|
:param builtins.float max_utilization: Used when balancingMode is UTILIZATION. This ratio defines the
|
2240
2248
|
CPU utilization target for the group. Valid range is [0.0, 1.0].
|
2249
|
+
:param builtins.str preference: This field indicates whether this backend should be fully utilized before sending traffic to backends
|
2250
|
+
with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
|
2251
|
+
- PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
|
2252
|
+
based on RTT.
|
2253
|
+
- DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
|
2254
|
+
traffic would be assigned based on the load balancing algorithm you use. This is the default
|
2255
|
+
Possible values are: `PREFERRED`, `DEFAULT`.
|
2241
2256
|
"""
|
2242
2257
|
pulumi.set(__self__, "group", group)
|
2243
2258
|
if balancing_mode is not None:
|
@@ -2262,6 +2277,8 @@ class BackendServiceBackend(dict):
|
|
2262
2277
|
pulumi.set(__self__, "max_rate_per_instance", max_rate_per_instance)
|
2263
2278
|
if max_utilization is not None:
|
2264
2279
|
pulumi.set(__self__, "max_utilization", max_utilization)
|
2280
|
+
if preference is not None:
|
2281
|
+
pulumi.set(__self__, "preference", preference)
|
2265
2282
|
|
2266
2283
|
@property
|
2267
2284
|
@pulumi.getter
|
@@ -2411,6 +2428,20 @@ class BackendServiceBackend(dict):
|
|
2411
2428
|
"""
|
2412
2429
|
return pulumi.get(self, "max_utilization")
|
2413
2430
|
|
2431
|
+
@property
|
2432
|
+
@pulumi.getter
|
2433
|
+
def preference(self) -> Optional[builtins.str]:
|
2434
|
+
"""
|
2435
|
+
This field indicates whether this backend should be fully utilized before sending traffic to backends
|
2436
|
+
with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
|
2437
|
+
- PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
|
2438
|
+
based on RTT.
|
2439
|
+
- DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
|
2440
|
+
traffic would be assigned based on the load balancing algorithm you use. This is the default
|
2441
|
+
Possible values are: `PREFERRED`, `DEFAULT`.
|
2442
|
+
"""
|
2443
|
+
return pulumi.get(self, "preference")
|
2444
|
+
|
2414
2445
|
|
2415
2446
|
@pulumi.output_type
|
2416
2447
|
class BackendServiceBackendCustomMetric(dict):
|
@@ -2511,6 +2542,8 @@ class BackendServiceCdnPolicy(dict):
|
|
2511
2542
|
suggest = "negative_caching"
|
2512
2543
|
elif key == "negativeCachingPolicies":
|
2513
2544
|
suggest = "negative_caching_policies"
|
2545
|
+
elif key == "requestCoalescing":
|
2546
|
+
suggest = "request_coalescing"
|
2514
2547
|
elif key == "serveWhileStale":
|
2515
2548
|
suggest = "serve_while_stale"
|
2516
2549
|
elif key == "signedUrlCacheMaxAgeSec":
|
@@ -2536,6 +2569,7 @@ class BackendServiceCdnPolicy(dict):
|
|
2536
2569
|
max_ttl: Optional[builtins.int] = None,
|
2537
2570
|
negative_caching: Optional[builtins.bool] = None,
|
2538
2571
|
negative_caching_policies: Optional[Sequence['outputs.BackendServiceCdnPolicyNegativeCachingPolicy']] = None,
|
2572
|
+
request_coalescing: Optional[builtins.bool] = None,
|
2539
2573
|
serve_while_stale: Optional[builtins.int] = None,
|
2540
2574
|
signed_url_cache_max_age_sec: Optional[builtins.int] = None):
|
2541
2575
|
"""
|
@@ -2555,6 +2589,8 @@ class BackendServiceCdnPolicy(dict):
|
|
2555
2589
|
:param Sequence['BackendServiceCdnPolicyNegativeCachingPolicyArgs'] negative_caching_policies: Sets a cache TTL for the specified HTTP status code. negativeCaching must be enabled to configure negativeCachingPolicy.
|
2556
2590
|
Omitting the policy and leaving negativeCaching enabled will use Cloud CDN's default cache TTLs.
|
2557
2591
|
Structure is documented below.
|
2592
|
+
:param builtins.bool request_coalescing: If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
|
2593
|
+
to the origin.
|
2558
2594
|
:param 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.
|
2559
2595
|
:param builtins.int signed_url_cache_max_age_sec: Maximum number of seconds the response to a signed URL request
|
2560
2596
|
will be considered fresh, defaults to 1hr (3600s). After this
|
@@ -2582,6 +2618,8 @@ class BackendServiceCdnPolicy(dict):
|
|
2582
2618
|
pulumi.set(__self__, "negative_caching", negative_caching)
|
2583
2619
|
if negative_caching_policies is not None:
|
2584
2620
|
pulumi.set(__self__, "negative_caching_policies", negative_caching_policies)
|
2621
|
+
if request_coalescing is not None:
|
2622
|
+
pulumi.set(__self__, "request_coalescing", request_coalescing)
|
2585
2623
|
if serve_while_stale is not None:
|
2586
2624
|
pulumi.set(__self__, "serve_while_stale", serve_while_stale)
|
2587
2625
|
if signed_url_cache_max_age_sec is not None:
|
@@ -2659,6 +2697,15 @@ class BackendServiceCdnPolicy(dict):
|
|
2659
2697
|
"""
|
2660
2698
|
return pulumi.get(self, "negative_caching_policies")
|
2661
2699
|
|
2700
|
+
@property
|
2701
|
+
@pulumi.getter(name="requestCoalescing")
|
2702
|
+
def request_coalescing(self) -> Optional[builtins.bool]:
|
2703
|
+
"""
|
2704
|
+
If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
|
2705
|
+
to the origin.
|
2706
|
+
"""
|
2707
|
+
return pulumi.get(self, "request_coalescing")
|
2708
|
+
|
2662
2709
|
@property
|
2663
2710
|
@pulumi.getter(name="serveWhileStale")
|
2664
2711
|
def serve_while_stale(self) -> Optional[builtins.int]:
|
@@ -3619,7 +3666,11 @@ class BackendServiceLogConfig(dict):
|
|
3619
3666
|
@staticmethod
|
3620
3667
|
def __key_warning(key: str):
|
3621
3668
|
suggest = None
|
3622
|
-
if key == "
|
3669
|
+
if key == "optionalFields":
|
3670
|
+
suggest = "optional_fields"
|
3671
|
+
elif key == "optionalMode":
|
3672
|
+
suggest = "optional_mode"
|
3673
|
+
elif key == "sampleRate":
|
3623
3674
|
suggest = "sample_rate"
|
3624
3675
|
|
3625
3676
|
if suggest:
|
@@ -3635,9 +3686,17 @@ class BackendServiceLogConfig(dict):
|
|
3635
3686
|
|
3636
3687
|
def __init__(__self__, *,
|
3637
3688
|
enable: Optional[builtins.bool] = None,
|
3689
|
+
optional_fields: Optional[Sequence[builtins.str]] = None,
|
3690
|
+
optional_mode: Optional[builtins.str] = None,
|
3638
3691
|
sample_rate: Optional[builtins.float] = None):
|
3639
3692
|
"""
|
3640
3693
|
:param builtins.bool enable: Whether to enable logging for the load balancer traffic served by this backend service.
|
3694
|
+
:param Sequence[builtins.str] optional_fields: This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
|
3695
|
+
was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
|
3696
|
+
For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
|
3697
|
+
:param builtins.str optional_mode: Specifies the optional logging mode for the load balancer traffic.
|
3698
|
+
Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM.
|
3699
|
+
Possible values are: `INCLUDE_ALL_OPTIONAL`, `EXCLUDE_ALL_OPTIONAL`, `CUSTOM`.
|
3641
3700
|
:param builtins.float sample_rate: This field can only be specified if logging is enabled for this backend service. The value of
|
3642
3701
|
the field must be in [0, 1]. This configures the sampling rate of requests to the load balancer
|
3643
3702
|
where 1.0 means all logged requests are reported and 0.0 means no logged requests are reported.
|
@@ -3645,6 +3704,10 @@ class BackendServiceLogConfig(dict):
|
|
3645
3704
|
"""
|
3646
3705
|
if enable is not None:
|
3647
3706
|
pulumi.set(__self__, "enable", enable)
|
3707
|
+
if optional_fields is not None:
|
3708
|
+
pulumi.set(__self__, "optional_fields", optional_fields)
|
3709
|
+
if optional_mode is not None:
|
3710
|
+
pulumi.set(__self__, "optional_mode", optional_mode)
|
3648
3711
|
if sample_rate is not None:
|
3649
3712
|
pulumi.set(__self__, "sample_rate", sample_rate)
|
3650
3713
|
|
@@ -3656,6 +3719,26 @@ class BackendServiceLogConfig(dict):
|
|
3656
3719
|
"""
|
3657
3720
|
return pulumi.get(self, "enable")
|
3658
3721
|
|
3722
|
+
@property
|
3723
|
+
@pulumi.getter(name="optionalFields")
|
3724
|
+
def optional_fields(self) -> Optional[Sequence[builtins.str]]:
|
3725
|
+
"""
|
3726
|
+
This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
|
3727
|
+
was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
|
3728
|
+
For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
|
3729
|
+
"""
|
3730
|
+
return pulumi.get(self, "optional_fields")
|
3731
|
+
|
3732
|
+
@property
|
3733
|
+
@pulumi.getter(name="optionalMode")
|
3734
|
+
def optional_mode(self) -> Optional[builtins.str]:
|
3735
|
+
"""
|
3736
|
+
Specifies the optional logging mode for the load balancer traffic.
|
3737
|
+
Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM.
|
3738
|
+
Possible values are: `INCLUDE_ALL_OPTIONAL`, `EXCLUDE_ALL_OPTIONAL`, `CUSTOM`.
|
3739
|
+
"""
|
3740
|
+
return pulumi.get(self, "optional_mode")
|
3741
|
+
|
3659
3742
|
@property
|
3660
3743
|
@pulumi.getter(name="sampleRate")
|
3661
3744
|
def sample_rate(self) -> Optional[builtins.float]:
|
@@ -3668,6 +3751,40 @@ class BackendServiceLogConfig(dict):
|
|
3668
3751
|
return pulumi.get(self, "sample_rate")
|
3669
3752
|
|
3670
3753
|
|
3754
|
+
@pulumi.output_type
|
3755
|
+
class BackendServiceMaxStreamDuration(dict):
|
3756
|
+
def __init__(__self__, *,
|
3757
|
+
seconds: builtins.str,
|
3758
|
+
nanos: Optional[builtins.int] = None):
|
3759
|
+
"""
|
3760
|
+
:param builtins.str seconds: Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
|
3761
|
+
:param builtins.int nanos: Span of time that's a fraction of a second at nanosecond resolution.
|
3762
|
+
Durations less than one second are represented with a 0 seconds field and a positive nanos field.
|
3763
|
+
Must be from 0 to 999,999,999 inclusive.
|
3764
|
+
"""
|
3765
|
+
pulumi.set(__self__, "seconds", seconds)
|
3766
|
+
if nanos is not None:
|
3767
|
+
pulumi.set(__self__, "nanos", nanos)
|
3768
|
+
|
3769
|
+
@property
|
3770
|
+
@pulumi.getter
|
3771
|
+
def seconds(self) -> builtins.str:
|
3772
|
+
"""
|
3773
|
+
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
|
3774
|
+
"""
|
3775
|
+
return pulumi.get(self, "seconds")
|
3776
|
+
|
3777
|
+
@property
|
3778
|
+
@pulumi.getter
|
3779
|
+
def nanos(self) -> Optional[builtins.int]:
|
3780
|
+
"""
|
3781
|
+
Span of time that's a fraction of a second at nanosecond resolution.
|
3782
|
+
Durations less than one second are represented with a 0 seconds field and a positive nanos field.
|
3783
|
+
Must be from 0 to 999,999,999 inclusive.
|
3784
|
+
"""
|
3785
|
+
return pulumi.get(self, "nanos")
|
3786
|
+
|
3787
|
+
|
3671
3788
|
@pulumi.output_type
|
3672
3789
|
class BackendServiceOutlierDetection(dict):
|
3673
3790
|
@staticmethod
|
@@ -45266,6 +45383,456 @@ class SnapshotSourceDiskEncryptionKey(dict):
|
|
45266
45383
|
return pulumi.get(self, "rsa_encrypted_key")
|
45267
45384
|
|
45268
45385
|
|
45386
|
+
@pulumi.output_type
|
45387
|
+
class StoragePoolIamBindingCondition(dict):
|
45388
|
+
def __init__(__self__, *,
|
45389
|
+
expression: builtins.str,
|
45390
|
+
title: builtins.str,
|
45391
|
+
description: Optional[builtins.str] = None):
|
45392
|
+
"""
|
45393
|
+
:param builtins.str expression: Textual representation of an expression in Common Expression Language syntax.
|
45394
|
+
:param builtins.str title: A title for the expression, i.e. a short string describing its purpose.
|
45395
|
+
"""
|
45396
|
+
pulumi.set(__self__, "expression", expression)
|
45397
|
+
pulumi.set(__self__, "title", title)
|
45398
|
+
if description is not None:
|
45399
|
+
pulumi.set(__self__, "description", description)
|
45400
|
+
|
45401
|
+
@property
|
45402
|
+
@pulumi.getter
|
45403
|
+
def expression(self) -> builtins.str:
|
45404
|
+
"""
|
45405
|
+
Textual representation of an expression in Common Expression Language syntax.
|
45406
|
+
"""
|
45407
|
+
return pulumi.get(self, "expression")
|
45408
|
+
|
45409
|
+
@property
|
45410
|
+
@pulumi.getter
|
45411
|
+
def title(self) -> builtins.str:
|
45412
|
+
"""
|
45413
|
+
A title for the expression, i.e. a short string describing its purpose.
|
45414
|
+
"""
|
45415
|
+
return pulumi.get(self, "title")
|
45416
|
+
|
45417
|
+
@property
|
45418
|
+
@pulumi.getter
|
45419
|
+
def description(self) -> Optional[builtins.str]:
|
45420
|
+
return pulumi.get(self, "description")
|
45421
|
+
|
45422
|
+
|
45423
|
+
@pulumi.output_type
|
45424
|
+
class StoragePoolIamMemberCondition(dict):
|
45425
|
+
def __init__(__self__, *,
|
45426
|
+
expression: builtins.str,
|
45427
|
+
title: builtins.str,
|
45428
|
+
description: Optional[builtins.str] = None):
|
45429
|
+
"""
|
45430
|
+
:param builtins.str expression: Textual representation of an expression in Common Expression Language syntax.
|
45431
|
+
:param builtins.str title: A title for the expression, i.e. a short string describing its purpose.
|
45432
|
+
"""
|
45433
|
+
pulumi.set(__self__, "expression", expression)
|
45434
|
+
pulumi.set(__self__, "title", title)
|
45435
|
+
if description is not None:
|
45436
|
+
pulumi.set(__self__, "description", description)
|
45437
|
+
|
45438
|
+
@property
|
45439
|
+
@pulumi.getter
|
45440
|
+
def expression(self) -> builtins.str:
|
45441
|
+
"""
|
45442
|
+
Textual representation of an expression in Common Expression Language syntax.
|
45443
|
+
"""
|
45444
|
+
return pulumi.get(self, "expression")
|
45445
|
+
|
45446
|
+
@property
|
45447
|
+
@pulumi.getter
|
45448
|
+
def title(self) -> builtins.str:
|
45449
|
+
"""
|
45450
|
+
A title for the expression, i.e. a short string describing its purpose.
|
45451
|
+
"""
|
45452
|
+
return pulumi.get(self, "title")
|
45453
|
+
|
45454
|
+
@property
|
45455
|
+
@pulumi.getter
|
45456
|
+
def description(self) -> Optional[builtins.str]:
|
45457
|
+
return pulumi.get(self, "description")
|
45458
|
+
|
45459
|
+
|
45460
|
+
@pulumi.output_type
|
45461
|
+
class StoragePoolResourceStatus(dict):
|
45462
|
+
@staticmethod
|
45463
|
+
def __key_warning(key: str):
|
45464
|
+
suggest = None
|
45465
|
+
if key == "diskCount":
|
45466
|
+
suggest = "disk_count"
|
45467
|
+
elif key == "lastResizeTimestamp":
|
45468
|
+
suggest = "last_resize_timestamp"
|
45469
|
+
elif key == "maxTotalProvisionedDiskCapacityGb":
|
45470
|
+
suggest = "max_total_provisioned_disk_capacity_gb"
|
45471
|
+
elif key == "poolUsedCapacityBytes":
|
45472
|
+
suggest = "pool_used_capacity_bytes"
|
45473
|
+
elif key == "poolUsedIops":
|
45474
|
+
suggest = "pool_used_iops"
|
45475
|
+
elif key == "poolUsedThroughput":
|
45476
|
+
suggest = "pool_used_throughput"
|
45477
|
+
elif key == "poolUserWrittenBytes":
|
45478
|
+
suggest = "pool_user_written_bytes"
|
45479
|
+
elif key == "totalProvisionedDiskCapacityGb":
|
45480
|
+
suggest = "total_provisioned_disk_capacity_gb"
|
45481
|
+
elif key == "totalProvisionedDiskIops":
|
45482
|
+
suggest = "total_provisioned_disk_iops"
|
45483
|
+
elif key == "totalProvisionedDiskThroughput":
|
45484
|
+
suggest = "total_provisioned_disk_throughput"
|
45485
|
+
|
45486
|
+
if suggest:
|
45487
|
+
pulumi.log.warn(f"Key '{key}' not found in StoragePoolResourceStatus. Access the value via the '{suggest}' property getter instead.")
|
45488
|
+
|
45489
|
+
def __getitem__(self, key: str) -> Any:
|
45490
|
+
StoragePoolResourceStatus.__key_warning(key)
|
45491
|
+
return super().__getitem__(key)
|
45492
|
+
|
45493
|
+
def get(self, key: str, default = None) -> Any:
|
45494
|
+
StoragePoolResourceStatus.__key_warning(key)
|
45495
|
+
return super().get(key, default)
|
45496
|
+
|
45497
|
+
def __init__(__self__, *,
|
45498
|
+
disk_count: Optional[builtins.str] = None,
|
45499
|
+
last_resize_timestamp: Optional[builtins.str] = None,
|
45500
|
+
max_total_provisioned_disk_capacity_gb: Optional[builtins.str] = None,
|
45501
|
+
pool_used_capacity_bytes: Optional[builtins.str] = None,
|
45502
|
+
pool_used_iops: Optional[builtins.str] = None,
|
45503
|
+
pool_used_throughput: Optional[builtins.str] = None,
|
45504
|
+
pool_user_written_bytes: Optional[builtins.str] = None,
|
45505
|
+
total_provisioned_disk_capacity_gb: Optional[builtins.str] = None,
|
45506
|
+
total_provisioned_disk_iops: Optional[builtins.str] = None,
|
45507
|
+
total_provisioned_disk_throughput: Optional[builtins.str] = None):
|
45508
|
+
"""
|
45509
|
+
:param builtins.str disk_count: (Output)
|
45510
|
+
Number of disks used.
|
45511
|
+
:param builtins.str last_resize_timestamp: (Output)
|
45512
|
+
Timestamp of the last successful resize in RFC3339 text format.
|
45513
|
+
:param builtins.str max_total_provisioned_disk_capacity_gb: (Output)
|
45514
|
+
Maximum allowed aggregate disk size in gigabytes.
|
45515
|
+
:param builtins.str pool_used_capacity_bytes: (Output)
|
45516
|
+
Space used by data stored in disks within the storage pool (in bytes).
|
45517
|
+
This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
|
45518
|
+
:param builtins.str pool_used_iops: (Output)
|
45519
|
+
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.
|
45520
|
+
:param builtins.str pool_used_throughput: (Output)
|
45521
|
+
Sum of all the disks' provisioned throughput in MB/s.
|
45522
|
+
:param builtins.str pool_user_written_bytes: (Output)
|
45523
|
+
Amount of data written into the pool, before it is compacted.
|
45524
|
+
:param builtins.str total_provisioned_disk_capacity_gb: (Output)
|
45525
|
+
Sum of all the capacity provisioned in disks in this storage pool.
|
45526
|
+
A disk's provisioned capacity is the same as its total capacity.
|
45527
|
+
:param builtins.str total_provisioned_disk_iops: (Output)
|
45528
|
+
Sum of all the disks' provisioned IOPS.
|
45529
|
+
:param builtins.str total_provisioned_disk_throughput: (Output)
|
45530
|
+
Sum of all the disks' provisioned throughput in MB/s,
|
45531
|
+
minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
|
45532
|
+
"""
|
45533
|
+
if disk_count is not None:
|
45534
|
+
pulumi.set(__self__, "disk_count", disk_count)
|
45535
|
+
if last_resize_timestamp is not None:
|
45536
|
+
pulumi.set(__self__, "last_resize_timestamp", last_resize_timestamp)
|
45537
|
+
if max_total_provisioned_disk_capacity_gb is not None:
|
45538
|
+
pulumi.set(__self__, "max_total_provisioned_disk_capacity_gb", max_total_provisioned_disk_capacity_gb)
|
45539
|
+
if pool_used_capacity_bytes is not None:
|
45540
|
+
pulumi.set(__self__, "pool_used_capacity_bytes", pool_used_capacity_bytes)
|
45541
|
+
if pool_used_iops is not None:
|
45542
|
+
pulumi.set(__self__, "pool_used_iops", pool_used_iops)
|
45543
|
+
if pool_used_throughput is not None:
|
45544
|
+
pulumi.set(__self__, "pool_used_throughput", pool_used_throughput)
|
45545
|
+
if pool_user_written_bytes is not None:
|
45546
|
+
pulumi.set(__self__, "pool_user_written_bytes", pool_user_written_bytes)
|
45547
|
+
if total_provisioned_disk_capacity_gb is not None:
|
45548
|
+
pulumi.set(__self__, "total_provisioned_disk_capacity_gb", total_provisioned_disk_capacity_gb)
|
45549
|
+
if total_provisioned_disk_iops is not None:
|
45550
|
+
pulumi.set(__self__, "total_provisioned_disk_iops", total_provisioned_disk_iops)
|
45551
|
+
if total_provisioned_disk_throughput is not None:
|
45552
|
+
pulumi.set(__self__, "total_provisioned_disk_throughput", total_provisioned_disk_throughput)
|
45553
|
+
|
45554
|
+
@property
|
45555
|
+
@pulumi.getter(name="diskCount")
|
45556
|
+
def disk_count(self) -> Optional[builtins.str]:
|
45557
|
+
"""
|
45558
|
+
(Output)
|
45559
|
+
Number of disks used.
|
45560
|
+
"""
|
45561
|
+
return pulumi.get(self, "disk_count")
|
45562
|
+
|
45563
|
+
@property
|
45564
|
+
@pulumi.getter(name="lastResizeTimestamp")
|
45565
|
+
def last_resize_timestamp(self) -> Optional[builtins.str]:
|
45566
|
+
"""
|
45567
|
+
(Output)
|
45568
|
+
Timestamp of the last successful resize in RFC3339 text format.
|
45569
|
+
"""
|
45570
|
+
return pulumi.get(self, "last_resize_timestamp")
|
45571
|
+
|
45572
|
+
@property
|
45573
|
+
@pulumi.getter(name="maxTotalProvisionedDiskCapacityGb")
|
45574
|
+
def max_total_provisioned_disk_capacity_gb(self) -> Optional[builtins.str]:
|
45575
|
+
"""
|
45576
|
+
(Output)
|
45577
|
+
Maximum allowed aggregate disk size in gigabytes.
|
45578
|
+
"""
|
45579
|
+
return pulumi.get(self, "max_total_provisioned_disk_capacity_gb")
|
45580
|
+
|
45581
|
+
@property
|
45582
|
+
@pulumi.getter(name="poolUsedCapacityBytes")
|
45583
|
+
def pool_used_capacity_bytes(self) -> Optional[builtins.str]:
|
45584
|
+
"""
|
45585
|
+
(Output)
|
45586
|
+
Space used by data stored in disks within the storage pool (in bytes).
|
45587
|
+
This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
|
45588
|
+
"""
|
45589
|
+
return pulumi.get(self, "pool_used_capacity_bytes")
|
45590
|
+
|
45591
|
+
@property
|
45592
|
+
@pulumi.getter(name="poolUsedIops")
|
45593
|
+
def pool_used_iops(self) -> Optional[builtins.str]:
|
45594
|
+
"""
|
45595
|
+
(Output)
|
45596
|
+
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.
|
45597
|
+
"""
|
45598
|
+
return pulumi.get(self, "pool_used_iops")
|
45599
|
+
|
45600
|
+
@property
|
45601
|
+
@pulumi.getter(name="poolUsedThroughput")
|
45602
|
+
def pool_used_throughput(self) -> Optional[builtins.str]:
|
45603
|
+
"""
|
45604
|
+
(Output)
|
45605
|
+
Sum of all the disks' provisioned throughput in MB/s.
|
45606
|
+
"""
|
45607
|
+
return pulumi.get(self, "pool_used_throughput")
|
45608
|
+
|
45609
|
+
@property
|
45610
|
+
@pulumi.getter(name="poolUserWrittenBytes")
|
45611
|
+
def pool_user_written_bytes(self) -> Optional[builtins.str]:
|
45612
|
+
"""
|
45613
|
+
(Output)
|
45614
|
+
Amount of data written into the pool, before it is compacted.
|
45615
|
+
"""
|
45616
|
+
return pulumi.get(self, "pool_user_written_bytes")
|
45617
|
+
|
45618
|
+
@property
|
45619
|
+
@pulumi.getter(name="totalProvisionedDiskCapacityGb")
|
45620
|
+
def total_provisioned_disk_capacity_gb(self) -> Optional[builtins.str]:
|
45621
|
+
"""
|
45622
|
+
(Output)
|
45623
|
+
Sum of all the capacity provisioned in disks in this storage pool.
|
45624
|
+
A disk's provisioned capacity is the same as its total capacity.
|
45625
|
+
"""
|
45626
|
+
return pulumi.get(self, "total_provisioned_disk_capacity_gb")
|
45627
|
+
|
45628
|
+
@property
|
45629
|
+
@pulumi.getter(name="totalProvisionedDiskIops")
|
45630
|
+
def total_provisioned_disk_iops(self) -> Optional[builtins.str]:
|
45631
|
+
"""
|
45632
|
+
(Output)
|
45633
|
+
Sum of all the disks' provisioned IOPS.
|
45634
|
+
"""
|
45635
|
+
return pulumi.get(self, "total_provisioned_disk_iops")
|
45636
|
+
|
45637
|
+
@property
|
45638
|
+
@pulumi.getter(name="totalProvisionedDiskThroughput")
|
45639
|
+
def total_provisioned_disk_throughput(self) -> Optional[builtins.str]:
|
45640
|
+
"""
|
45641
|
+
(Output)
|
45642
|
+
Sum of all the disks' provisioned throughput in MB/s,
|
45643
|
+
minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
|
45644
|
+
"""
|
45645
|
+
return pulumi.get(self, "total_provisioned_disk_throughput")
|
45646
|
+
|
45647
|
+
|
45648
|
+
@pulumi.output_type
|
45649
|
+
class StoragePoolStatus(dict):
|
45650
|
+
@staticmethod
|
45651
|
+
def __key_warning(key: str):
|
45652
|
+
suggest = None
|
45653
|
+
if key == "diskCount":
|
45654
|
+
suggest = "disk_count"
|
45655
|
+
elif key == "lastResizeTimestamp":
|
45656
|
+
suggest = "last_resize_timestamp"
|
45657
|
+
elif key == "maxTotalProvisionedDiskCapacityGb":
|
45658
|
+
suggest = "max_total_provisioned_disk_capacity_gb"
|
45659
|
+
elif key == "poolUsedCapacityBytes":
|
45660
|
+
suggest = "pool_used_capacity_bytes"
|
45661
|
+
elif key == "poolUsedIops":
|
45662
|
+
suggest = "pool_used_iops"
|
45663
|
+
elif key == "poolUsedThroughput":
|
45664
|
+
suggest = "pool_used_throughput"
|
45665
|
+
elif key == "poolUserWrittenBytes":
|
45666
|
+
suggest = "pool_user_written_bytes"
|
45667
|
+
elif key == "totalProvisionedDiskCapacityGb":
|
45668
|
+
suggest = "total_provisioned_disk_capacity_gb"
|
45669
|
+
elif key == "totalProvisionedDiskIops":
|
45670
|
+
suggest = "total_provisioned_disk_iops"
|
45671
|
+
elif key == "totalProvisionedDiskThroughput":
|
45672
|
+
suggest = "total_provisioned_disk_throughput"
|
45673
|
+
|
45674
|
+
if suggest:
|
45675
|
+
pulumi.log.warn(f"Key '{key}' not found in StoragePoolStatus. Access the value via the '{suggest}' property getter instead.")
|
45676
|
+
|
45677
|
+
def __getitem__(self, key: str) -> Any:
|
45678
|
+
StoragePoolStatus.__key_warning(key)
|
45679
|
+
return super().__getitem__(key)
|
45680
|
+
|
45681
|
+
def get(self, key: str, default = None) -> Any:
|
45682
|
+
StoragePoolStatus.__key_warning(key)
|
45683
|
+
return super().get(key, default)
|
45684
|
+
|
45685
|
+
def __init__(__self__, *,
|
45686
|
+
disk_count: Optional[builtins.str] = None,
|
45687
|
+
last_resize_timestamp: Optional[builtins.str] = None,
|
45688
|
+
max_total_provisioned_disk_capacity_gb: Optional[builtins.str] = None,
|
45689
|
+
pool_used_capacity_bytes: Optional[builtins.str] = None,
|
45690
|
+
pool_used_iops: Optional[builtins.str] = None,
|
45691
|
+
pool_used_throughput: Optional[builtins.str] = None,
|
45692
|
+
pool_user_written_bytes: Optional[builtins.str] = None,
|
45693
|
+
total_provisioned_disk_capacity_gb: Optional[builtins.str] = None,
|
45694
|
+
total_provisioned_disk_iops: Optional[builtins.str] = None,
|
45695
|
+
total_provisioned_disk_throughput: Optional[builtins.str] = None):
|
45696
|
+
"""
|
45697
|
+
:param builtins.str disk_count: (Output)
|
45698
|
+
Number of disks used.
|
45699
|
+
:param builtins.str last_resize_timestamp: (Output)
|
45700
|
+
Timestamp of the last successful resize in RFC3339 text format.
|
45701
|
+
:param builtins.str max_total_provisioned_disk_capacity_gb: (Output)
|
45702
|
+
Maximum allowed aggregate disk size in gigabytes.
|
45703
|
+
:param builtins.str pool_used_capacity_bytes: (Output)
|
45704
|
+
Space used by data stored in disks within the storage pool (in bytes).
|
45705
|
+
This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
|
45706
|
+
:param builtins.str pool_used_iops: (Output)
|
45707
|
+
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.
|
45708
|
+
:param builtins.str pool_used_throughput: (Output)
|
45709
|
+
Sum of all the disks' provisioned throughput in MB/s.
|
45710
|
+
:param builtins.str pool_user_written_bytes: (Output)
|
45711
|
+
Amount of data written into the pool, before it is compacted.
|
45712
|
+
:param builtins.str total_provisioned_disk_capacity_gb: (Output)
|
45713
|
+
Sum of all the capacity provisioned in disks in this storage pool.
|
45714
|
+
A disk's provisioned capacity is the same as its total capacity.
|
45715
|
+
:param builtins.str total_provisioned_disk_iops: (Output)
|
45716
|
+
Sum of all the disks' provisioned IOPS.
|
45717
|
+
:param builtins.str total_provisioned_disk_throughput: (Output)
|
45718
|
+
Sum of all the disks' provisioned throughput in MB/s,
|
45719
|
+
minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
|
45720
|
+
"""
|
45721
|
+
if disk_count is not None:
|
45722
|
+
pulumi.set(__self__, "disk_count", disk_count)
|
45723
|
+
if last_resize_timestamp is not None:
|
45724
|
+
pulumi.set(__self__, "last_resize_timestamp", last_resize_timestamp)
|
45725
|
+
if max_total_provisioned_disk_capacity_gb is not None:
|
45726
|
+
pulumi.set(__self__, "max_total_provisioned_disk_capacity_gb", max_total_provisioned_disk_capacity_gb)
|
45727
|
+
if pool_used_capacity_bytes is not None:
|
45728
|
+
pulumi.set(__self__, "pool_used_capacity_bytes", pool_used_capacity_bytes)
|
45729
|
+
if pool_used_iops is not None:
|
45730
|
+
pulumi.set(__self__, "pool_used_iops", pool_used_iops)
|
45731
|
+
if pool_used_throughput is not None:
|
45732
|
+
pulumi.set(__self__, "pool_used_throughput", pool_used_throughput)
|
45733
|
+
if pool_user_written_bytes is not None:
|
45734
|
+
pulumi.set(__self__, "pool_user_written_bytes", pool_user_written_bytes)
|
45735
|
+
if total_provisioned_disk_capacity_gb is not None:
|
45736
|
+
pulumi.set(__self__, "total_provisioned_disk_capacity_gb", total_provisioned_disk_capacity_gb)
|
45737
|
+
if total_provisioned_disk_iops is not None:
|
45738
|
+
pulumi.set(__self__, "total_provisioned_disk_iops", total_provisioned_disk_iops)
|
45739
|
+
if total_provisioned_disk_throughput is not None:
|
45740
|
+
pulumi.set(__self__, "total_provisioned_disk_throughput", total_provisioned_disk_throughput)
|
45741
|
+
|
45742
|
+
@property
|
45743
|
+
@pulumi.getter(name="diskCount")
|
45744
|
+
def disk_count(self) -> Optional[builtins.str]:
|
45745
|
+
"""
|
45746
|
+
(Output)
|
45747
|
+
Number of disks used.
|
45748
|
+
"""
|
45749
|
+
return pulumi.get(self, "disk_count")
|
45750
|
+
|
45751
|
+
@property
|
45752
|
+
@pulumi.getter(name="lastResizeTimestamp")
|
45753
|
+
def last_resize_timestamp(self) -> Optional[builtins.str]:
|
45754
|
+
"""
|
45755
|
+
(Output)
|
45756
|
+
Timestamp of the last successful resize in RFC3339 text format.
|
45757
|
+
"""
|
45758
|
+
return pulumi.get(self, "last_resize_timestamp")
|
45759
|
+
|
45760
|
+
@property
|
45761
|
+
@pulumi.getter(name="maxTotalProvisionedDiskCapacityGb")
|
45762
|
+
def max_total_provisioned_disk_capacity_gb(self) -> Optional[builtins.str]:
|
45763
|
+
"""
|
45764
|
+
(Output)
|
45765
|
+
Maximum allowed aggregate disk size in gigabytes.
|
45766
|
+
"""
|
45767
|
+
return pulumi.get(self, "max_total_provisioned_disk_capacity_gb")
|
45768
|
+
|
45769
|
+
@property
|
45770
|
+
@pulumi.getter(name="poolUsedCapacityBytes")
|
45771
|
+
def pool_used_capacity_bytes(self) -> Optional[builtins.str]:
|
45772
|
+
"""
|
45773
|
+
(Output)
|
45774
|
+
Space used by data stored in disks within the storage pool (in bytes).
|
45775
|
+
This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
|
45776
|
+
"""
|
45777
|
+
return pulumi.get(self, "pool_used_capacity_bytes")
|
45778
|
+
|
45779
|
+
@property
|
45780
|
+
@pulumi.getter(name="poolUsedIops")
|
45781
|
+
def pool_used_iops(self) -> Optional[builtins.str]:
|
45782
|
+
"""
|
45783
|
+
(Output)
|
45784
|
+
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.
|
45785
|
+
"""
|
45786
|
+
return pulumi.get(self, "pool_used_iops")
|
45787
|
+
|
45788
|
+
@property
|
45789
|
+
@pulumi.getter(name="poolUsedThroughput")
|
45790
|
+
def pool_used_throughput(self) -> Optional[builtins.str]:
|
45791
|
+
"""
|
45792
|
+
(Output)
|
45793
|
+
Sum of all the disks' provisioned throughput in MB/s.
|
45794
|
+
"""
|
45795
|
+
return pulumi.get(self, "pool_used_throughput")
|
45796
|
+
|
45797
|
+
@property
|
45798
|
+
@pulumi.getter(name="poolUserWrittenBytes")
|
45799
|
+
def pool_user_written_bytes(self) -> Optional[builtins.str]:
|
45800
|
+
"""
|
45801
|
+
(Output)
|
45802
|
+
Amount of data written into the pool, before it is compacted.
|
45803
|
+
"""
|
45804
|
+
return pulumi.get(self, "pool_user_written_bytes")
|
45805
|
+
|
45806
|
+
@property
|
45807
|
+
@pulumi.getter(name="totalProvisionedDiskCapacityGb")
|
45808
|
+
def total_provisioned_disk_capacity_gb(self) -> Optional[builtins.str]:
|
45809
|
+
"""
|
45810
|
+
(Output)
|
45811
|
+
Sum of all the capacity provisioned in disks in this storage pool.
|
45812
|
+
A disk's provisioned capacity is the same as its total capacity.
|
45813
|
+
"""
|
45814
|
+
return pulumi.get(self, "total_provisioned_disk_capacity_gb")
|
45815
|
+
|
45816
|
+
@property
|
45817
|
+
@pulumi.getter(name="totalProvisionedDiskIops")
|
45818
|
+
def total_provisioned_disk_iops(self) -> Optional[builtins.str]:
|
45819
|
+
"""
|
45820
|
+
(Output)
|
45821
|
+
Sum of all the disks' provisioned IOPS.
|
45822
|
+
"""
|
45823
|
+
return pulumi.get(self, "total_provisioned_disk_iops")
|
45824
|
+
|
45825
|
+
@property
|
45826
|
+
@pulumi.getter(name="totalProvisionedDiskThroughput")
|
45827
|
+
def total_provisioned_disk_throughput(self) -> Optional[builtins.str]:
|
45828
|
+
"""
|
45829
|
+
(Output)
|
45830
|
+
Sum of all the disks' provisioned throughput in MB/s,
|
45831
|
+
minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
|
45832
|
+
"""
|
45833
|
+
return pulumi.get(self, "total_provisioned_disk_throughput")
|
45834
|
+
|
45835
|
+
|
45269
45836
|
@pulumi.output_type
|
45270
45837
|
class SubnetworkIAMBindingCondition(dict):
|
45271
45838
|
def __init__(__self__, *,
|
@@ -53343,7 +53910,8 @@ class GetBackendServiceBackendResult(dict):
|
|
53343
53910
|
max_rate: builtins.int,
|
53344
53911
|
max_rate_per_endpoint: builtins.float,
|
53345
53912
|
max_rate_per_instance: builtins.float,
|
53346
|
-
max_utilization: builtins.float
|
53913
|
+
max_utilization: builtins.float,
|
53914
|
+
preference: builtins.str):
|
53347
53915
|
"""
|
53348
53916
|
:param builtins.str balancing_mode: Specifies the balancing mode for this backend.
|
53349
53917
|
|
@@ -53415,6 +53983,12 @@ class GetBackendServiceBackendResult(dict):
|
|
53415
53983
|
either maxRate or maxRatePerInstance must be set.
|
53416
53984
|
:param builtins.float max_utilization: Used when balancingMode is UTILIZATION. This ratio defines the
|
53417
53985
|
CPU utilization target for the group. Valid range is [0.0, 1.0].
|
53986
|
+
:param builtins.str preference: This field indicates whether this backend should be fully utilized before sending traffic to backends
|
53987
|
+
with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
|
53988
|
+
- PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
|
53989
|
+
based on RTT.
|
53990
|
+
- DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
|
53991
|
+
traffic would be assigned based on the load balancing algorithm you use. This is the default Possible values: ["PREFERRED", "DEFAULT"]
|
53418
53992
|
"""
|
53419
53993
|
pulumi.set(__self__, "balancing_mode", balancing_mode)
|
53420
53994
|
pulumi.set(__self__, "capacity_scaler", capacity_scaler)
|
@@ -53428,6 +54002,7 @@ class GetBackendServiceBackendResult(dict):
|
|
53428
54002
|
pulumi.set(__self__, "max_rate_per_endpoint", max_rate_per_endpoint)
|
53429
54003
|
pulumi.set(__self__, "max_rate_per_instance", max_rate_per_instance)
|
53430
54004
|
pulumi.set(__self__, "max_utilization", max_utilization)
|
54005
|
+
pulumi.set(__self__, "preference", preference)
|
53431
54006
|
|
53432
54007
|
@property
|
53433
54008
|
@pulumi.getter(name="balancingMode")
|
@@ -53583,6 +54158,19 @@ class GetBackendServiceBackendResult(dict):
|
|
53583
54158
|
"""
|
53584
54159
|
return pulumi.get(self, "max_utilization")
|
53585
54160
|
|
54161
|
+
@property
|
54162
|
+
@pulumi.getter
|
54163
|
+
def preference(self) -> builtins.str:
|
54164
|
+
"""
|
54165
|
+
This field indicates whether this backend should be fully utilized before sending traffic to backends
|
54166
|
+
with default preference. This field cannot be set when loadBalancingScheme is set to 'EXTERNAL'. The possible values are:
|
54167
|
+
- PREFERRED: Backends with this preference level will be filled up to their capacity limits first,
|
54168
|
+
based on RTT.
|
54169
|
+
- DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and
|
54170
|
+
traffic would be assigned based on the load balancing algorithm you use. This is the default Possible values: ["PREFERRED", "DEFAULT"]
|
54171
|
+
"""
|
54172
|
+
return pulumi.get(self, "preference")
|
54173
|
+
|
53586
54174
|
|
53587
54175
|
@pulumi.output_type
|
53588
54176
|
class GetBackendServiceBackendCustomMetricResult(dict):
|
@@ -53643,6 +54231,7 @@ class GetBackendServiceCdnPolicyResult(dict):
|
|
53643
54231
|
max_ttl: builtins.int,
|
53644
54232
|
negative_caching: builtins.bool,
|
53645
54233
|
negative_caching_policies: Sequence['outputs.GetBackendServiceCdnPolicyNegativeCachingPolicyResult'],
|
54234
|
+
request_coalescing: builtins.bool,
|
53646
54235
|
serve_while_stale: builtins.int,
|
53647
54236
|
signed_url_cache_max_age_sec: builtins.int):
|
53648
54237
|
"""
|
@@ -53658,6 +54247,8 @@ class GetBackendServiceCdnPolicyResult(dict):
|
|
53658
54247
|
:param builtins.bool negative_caching: Negative caching allows per-status code TTLs to be set, in order to apply fine-grained caching for common errors or redirects.
|
53659
54248
|
:param Sequence['GetBackendServiceCdnPolicyNegativeCachingPolicyArgs'] negative_caching_policies: Sets a cache TTL for the specified HTTP status code. negativeCaching must be enabled to configure negativeCachingPolicy.
|
53660
54249
|
Omitting the policy and leaving negativeCaching enabled will use Cloud CDN's default cache TTLs.
|
54250
|
+
:param builtins.bool request_coalescing: If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
|
54251
|
+
to the origin.
|
53661
54252
|
:param 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.
|
53662
54253
|
:param builtins.int signed_url_cache_max_age_sec: Maximum number of seconds the response to a signed URL request
|
53663
54254
|
will be considered fresh, defaults to 1hr (3600s). After this
|
@@ -53678,6 +54269,7 @@ class GetBackendServiceCdnPolicyResult(dict):
|
|
53678
54269
|
pulumi.set(__self__, "max_ttl", max_ttl)
|
53679
54270
|
pulumi.set(__self__, "negative_caching", negative_caching)
|
53680
54271
|
pulumi.set(__self__, "negative_caching_policies", negative_caching_policies)
|
54272
|
+
pulumi.set(__self__, "request_coalescing", request_coalescing)
|
53681
54273
|
pulumi.set(__self__, "serve_while_stale", serve_while_stale)
|
53682
54274
|
pulumi.set(__self__, "signed_url_cache_max_age_sec", signed_url_cache_max_age_sec)
|
53683
54275
|
|
@@ -53749,6 +54341,15 @@ class GetBackendServiceCdnPolicyResult(dict):
|
|
53749
54341
|
"""
|
53750
54342
|
return pulumi.get(self, "negative_caching_policies")
|
53751
54343
|
|
54344
|
+
@property
|
54345
|
+
@pulumi.getter(name="requestCoalescing")
|
54346
|
+
def request_coalescing(self) -> builtins.bool:
|
54347
|
+
"""
|
54348
|
+
If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests
|
54349
|
+
to the origin.
|
54350
|
+
"""
|
54351
|
+
return pulumi.get(self, "request_coalescing")
|
54352
|
+
|
53752
54353
|
@property
|
53753
54354
|
@pulumi.getter(name="serveWhileStale")
|
53754
54355
|
def serve_while_stale(self) -> builtins.int:
|
@@ -54383,15 +54984,24 @@ class GetBackendServiceLocalityLbPolicyPolicyResult(dict):
|
|
54383
54984
|
class GetBackendServiceLogConfigResult(dict):
|
54384
54985
|
def __init__(__self__, *,
|
54385
54986
|
enable: builtins.bool,
|
54987
|
+
optional_fields: Sequence[builtins.str],
|
54988
|
+
optional_mode: builtins.str,
|
54386
54989
|
sample_rate: builtins.float):
|
54387
54990
|
"""
|
54388
54991
|
:param builtins.bool enable: Whether to enable logging for the load balancer traffic served by this backend service.
|
54992
|
+
:param Sequence[builtins.str] optional_fields: This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
|
54993
|
+
was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
|
54994
|
+
For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
|
54995
|
+
:param builtins.str optional_mode: Specifies the optional logging mode for the load balancer traffic.
|
54996
|
+
Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM. Possible values: ["INCLUDE_ALL_OPTIONAL", "EXCLUDE_ALL_OPTIONAL", "CUSTOM"]
|
54389
54997
|
:param builtins.float sample_rate: This field can only be specified if logging is enabled for this backend service. The value of
|
54390
54998
|
the field must be in [0, 1]. This configures the sampling rate of requests to the load balancer
|
54391
54999
|
where 1.0 means all logged requests are reported and 0.0 means no logged requests are reported.
|
54392
55000
|
The default value is 1.0.
|
54393
55001
|
"""
|
54394
55002
|
pulumi.set(__self__, "enable", enable)
|
55003
|
+
pulumi.set(__self__, "optional_fields", optional_fields)
|
55004
|
+
pulumi.set(__self__, "optional_mode", optional_mode)
|
54395
55005
|
pulumi.set(__self__, "sample_rate", sample_rate)
|
54396
55006
|
|
54397
55007
|
@property
|
@@ -54402,6 +55012,25 @@ class GetBackendServiceLogConfigResult(dict):
|
|
54402
55012
|
"""
|
54403
55013
|
return pulumi.get(self, "enable")
|
54404
55014
|
|
55015
|
+
@property
|
55016
|
+
@pulumi.getter(name="optionalFields")
|
55017
|
+
def optional_fields(self) -> Sequence[builtins.str]:
|
55018
|
+
"""
|
55019
|
+
This field can only be specified if logging is enabled for this backend service and "logConfig.optionalMode"
|
55020
|
+
was set to CUSTOM. Contains a list of optional fields you want to include in the logs.
|
55021
|
+
For example: serverInstance, serverGkeDetails.cluster, serverGkeDetails.pod.podNamespace
|
55022
|
+
"""
|
55023
|
+
return pulumi.get(self, "optional_fields")
|
55024
|
+
|
55025
|
+
@property
|
55026
|
+
@pulumi.getter(name="optionalMode")
|
55027
|
+
def optional_mode(self) -> builtins.str:
|
55028
|
+
"""
|
55029
|
+
Specifies the optional logging mode for the load balancer traffic.
|
55030
|
+
Supported values: INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM. Possible values: ["INCLUDE_ALL_OPTIONAL", "EXCLUDE_ALL_OPTIONAL", "CUSTOM"]
|
55031
|
+
"""
|
55032
|
+
return pulumi.get(self, "optional_mode")
|
55033
|
+
|
54405
55034
|
@property
|
54406
55035
|
@pulumi.getter(name="sampleRate")
|
54407
55036
|
def sample_rate(self) -> builtins.float:
|
@@ -54414,6 +55043,39 @@ class GetBackendServiceLogConfigResult(dict):
|
|
54414
55043
|
return pulumi.get(self, "sample_rate")
|
54415
55044
|
|
54416
55045
|
|
55046
|
+
@pulumi.output_type
|
55047
|
+
class GetBackendServiceMaxStreamDurationResult(dict):
|
55048
|
+
def __init__(__self__, *,
|
55049
|
+
nanos: builtins.int,
|
55050
|
+
seconds: builtins.str):
|
55051
|
+
"""
|
55052
|
+
:param builtins.int nanos: Span of time that's a fraction of a second at nanosecond resolution.
|
55053
|
+
Durations less than one second are represented with a 0 seconds field and a positive nanos field.
|
55054
|
+
Must be from 0 to 999,999,999 inclusive.
|
55055
|
+
:param builtins.str seconds: Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
|
55056
|
+
"""
|
55057
|
+
pulumi.set(__self__, "nanos", nanos)
|
55058
|
+
pulumi.set(__self__, "seconds", seconds)
|
55059
|
+
|
55060
|
+
@property
|
55061
|
+
@pulumi.getter
|
55062
|
+
def nanos(self) -> builtins.int:
|
55063
|
+
"""
|
55064
|
+
Span of time that's a fraction of a second at nanosecond resolution.
|
55065
|
+
Durations less than one second are represented with a 0 seconds field and a positive nanos field.
|
55066
|
+
Must be from 0 to 999,999,999 inclusive.
|
55067
|
+
"""
|
55068
|
+
return pulumi.get(self, "nanos")
|
55069
|
+
|
55070
|
+
@property
|
55071
|
+
@pulumi.getter
|
55072
|
+
def seconds(self) -> builtins.str:
|
55073
|
+
"""
|
55074
|
+
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. (int64 format)
|
55075
|
+
"""
|
55076
|
+
return pulumi.get(self, "seconds")
|
55077
|
+
|
55078
|
+
|
54417
55079
|
@pulumi.output_type
|
54418
55080
|
class GetBackendServiceOutlierDetectionResult(dict):
|
54419
55081
|
def __init__(__self__, *,
|
@@ -68334,6 +68996,84 @@ class GetSnapshotSourceDiskEncryptionKeyResult(dict):
|
|
68334
68996
|
return pulumi.get(self, "rsa_encrypted_key")
|
68335
68997
|
|
68336
68998
|
|
68999
|
+
@pulumi.output_type
|
69000
|
+
class GetStoragePoolTypesDeprecatedResult(dict):
|
69001
|
+
def __init__(__self__, *,
|
69002
|
+
deleted: builtins.str,
|
69003
|
+
deprecated: builtins.str,
|
69004
|
+
obsolete: builtins.str,
|
69005
|
+
replacement: builtins.str,
|
69006
|
+
state: builtins.str):
|
69007
|
+
"""
|
69008
|
+
:param builtins.str deleted: An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DELETED.
|
69009
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69010
|
+
:param builtins.str deprecated: An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DEPRECATED.
|
69011
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69012
|
+
:param builtins.str obsolete: An optional RFC3339 timestamp on or after which the state of this resource is intended to change to OBSOLETE.
|
69013
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69014
|
+
:param builtins.str replacement: The URL of the suggested replacement for a deprecated resource.
|
69015
|
+
The suggested replacement resource must be the same kind of resource as the deprecated resource.
|
69016
|
+
:param builtins.str state: The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED.
|
69017
|
+
Operations which communicate the end of life date for an image, can use ACTIVE.
|
69018
|
+
Operations which create a new resource using a DEPRECATED resource will return successfully,
|
69019
|
+
but with a warning indicating the deprecated resource and recommending its replacement.
|
69020
|
+
Operations which use OBSOLETE or DELETED resources will be rejected and result in an error.
|
69021
|
+
"""
|
69022
|
+
pulumi.set(__self__, "deleted", deleted)
|
69023
|
+
pulumi.set(__self__, "deprecated", deprecated)
|
69024
|
+
pulumi.set(__self__, "obsolete", obsolete)
|
69025
|
+
pulumi.set(__self__, "replacement", replacement)
|
69026
|
+
pulumi.set(__self__, "state", state)
|
69027
|
+
|
69028
|
+
@property
|
69029
|
+
@pulumi.getter
|
69030
|
+
def deleted(self) -> builtins.str:
|
69031
|
+
"""
|
69032
|
+
An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DELETED.
|
69033
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69034
|
+
"""
|
69035
|
+
return pulumi.get(self, "deleted")
|
69036
|
+
|
69037
|
+
@property
|
69038
|
+
@pulumi.getter
|
69039
|
+
def deprecated(self) -> builtins.str:
|
69040
|
+
"""
|
69041
|
+
An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DEPRECATED.
|
69042
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69043
|
+
"""
|
69044
|
+
return pulumi.get(self, "deprecated")
|
69045
|
+
|
69046
|
+
@property
|
69047
|
+
@pulumi.getter
|
69048
|
+
def obsolete(self) -> builtins.str:
|
69049
|
+
"""
|
69050
|
+
An optional RFC3339 timestamp on or after which the state of this resource is intended to change to OBSOLETE.
|
69051
|
+
This is only informational and the status will not change unless the client explicitly changes it.
|
69052
|
+
"""
|
69053
|
+
return pulumi.get(self, "obsolete")
|
69054
|
+
|
69055
|
+
@property
|
69056
|
+
@pulumi.getter
|
69057
|
+
def replacement(self) -> builtins.str:
|
69058
|
+
"""
|
69059
|
+
The URL of the suggested replacement for a deprecated resource.
|
69060
|
+
The suggested replacement resource must be the same kind of resource as the deprecated resource.
|
69061
|
+
"""
|
69062
|
+
return pulumi.get(self, "replacement")
|
69063
|
+
|
69064
|
+
@property
|
69065
|
+
@pulumi.getter
|
69066
|
+
def state(self) -> builtins.str:
|
69067
|
+
"""
|
69068
|
+
The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED.
|
69069
|
+
Operations which communicate the end of life date for an image, can use ACTIVE.
|
69070
|
+
Operations which create a new resource using a DEPRECATED resource will return successfully,
|
69071
|
+
but with a warning indicating the deprecated resource and recommending its replacement.
|
69072
|
+
Operations which use OBSOLETE or DELETED resources will be rejected and result in an error.
|
69073
|
+
"""
|
69074
|
+
return pulumi.get(self, "state")
|
69075
|
+
|
69076
|
+
|
68337
69077
|
@pulumi.output_type
|
68338
69078
|
class GetSubnetworkSecondaryIpRangeResult(dict):
|
68339
69079
|
def __init__(__self__, *,
|