pulumi-gcp 9.3.0a1759561069__py3-none-any.whl → 9.4.0a1759906655__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 +32 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/api_deployment.py +372 -0
- pulumi_gcp/apihub/plugin.py +1 -1
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/get_maven_artifacts.py +164 -0
- pulumi_gcp/artifactregistry/get_npm_packages.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +165 -0
- pulumi_gcp/cloudrunv2/_inputs.py +823 -15
- pulumi_gcp/cloudrunv2/outputs.py +1749 -743
- pulumi_gcp/cloudrunv2/worker_pool.py +110 -0
- pulumi_gcp/compute/_inputs.py +28 -0
- pulumi_gcp/compute/outputs.py +20 -1
- pulumi_gcp/compute/vpn_tunnel.py +97 -23
- pulumi_gcp/compute/wire_group.py +2 -0
- pulumi_gcp/dataloss/_inputs.py +970 -30
- pulumi_gcp/dataloss/outputs.py +850 -20
- pulumi_gcp/dataloss/prevention_discovery_config.py +54 -0
- pulumi_gcp/diagflow/_inputs.py +66 -0
- pulumi_gcp/diagflow/conversation_profile.py +84 -0
- pulumi_gcp/diagflow/outputs.py +57 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +187 -0
- pulumi_gcp/discoveryengine/data_connector.py +1368 -0
- pulumi_gcp/discoveryengine/outputs.py +135 -0
- pulumi_gcp/discoveryengine/search_engine.py +47 -0
- pulumi_gcp/gkebackup/_inputs.py +111 -0
- pulumi_gcp/gkebackup/backup_plan.py +72 -0
- pulumi_gcp/gkebackup/outputs.py +84 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +43 -0
- pulumi_gcp/kms/organization_kaj_policy_config.py +290 -0
- pulumi_gcp/kms/outputs.py +43 -0
- pulumi_gcp/logging/metric.py +2 -2
- pulumi_gcp/looker/instance.py +51 -0
- pulumi_gcp/managedkafka/connect_cluster.py +20 -82
- pulumi_gcp/managedkafka/connector.py +24 -94
- pulumi_gcp/netapp/_inputs.py +28 -5
- pulumi_gcp/netapp/outputs.py +19 -3
- pulumi_gcp/netapp/storage_pool.py +56 -0
- pulumi_gcp/netapp/volume.py +28 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +211 -23
- pulumi_gcp/oracledatabase/odb_network.py +101 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/privilegedaccessmanager/_inputs.py +27 -4
- pulumi_gcp/privilegedaccessmanager/outputs.py +31 -6
- pulumi_gcp/pubsub/get_subscription.py +12 -1
- pulumi_gcp/pubsub/get_topic.py +15 -4
- pulumi_gcp/pubsub/subscription.py +153 -7
- pulumi_gcp/pubsub/topic.py +145 -3
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/saasruntime/__init__.py +1 -0
- pulumi_gcp/saasruntime/_inputs.py +60 -0
- pulumi_gcp/saasruntime/outputs.py +55 -0
- pulumi_gcp/saasruntime/rollout_kind.py +1086 -0
- pulumi_gcp/sql/_inputs.py +122 -3
- pulumi_gcp/sql/database_instance.py +47 -0
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +233 -2
- pulumi_gcp/storage/bucket.py +52 -24
- pulumi_gcp/storage/get_insights_dataset_config.py +12 -1
- pulumi_gcp/storage/insights_dataset_config.py +49 -0
- pulumi_gcp/storage/insights_report_config.py +47 -0
- pulumi_gcp/vertex/_inputs.py +339 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +102 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index.py +74 -2
- pulumi_gcp/vertex/ai_index_endpoint.py +54 -0
- pulumi_gcp/vertex/get_ai_index.py +12 -1
- pulumi_gcp/vertex/outputs.py +303 -1
- {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/METADATA +1 -1
- {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/RECORD +76 -70
- {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/WHEEL +0 -0
- {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/top_level.txt +0 -0
@@ -379,12 +379,14 @@ class _StoragePoolState:
|
|
379
379
|
allow_auto_tiering: Optional[pulumi.Input[_builtins.bool]] = None,
|
380
380
|
available_throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
381
381
|
capacity_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
382
|
+
cold_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
382
383
|
custom_performance_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
383
384
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
384
385
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
385
386
|
enable_hot_tier_auto_resize: Optional[pulumi.Input[_builtins.bool]] = None,
|
386
387
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
387
388
|
hot_tier_size_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
389
|
+
hot_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
388
390
|
kms_config: Optional[pulumi.Input[_builtins.str]] = None,
|
389
391
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
390
392
|
ldap_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -409,6 +411,7 @@ class _StoragePoolState:
|
|
409
411
|
Auto-tiering can be enabled after storage pool creation but it can't be disabled once enabled.
|
410
412
|
:param pulumi.Input[_builtins.float] available_throughput_mibps: Available throughput of the storage pool (in MiB/s).
|
411
413
|
:param pulumi.Input[_builtins.str] capacity_gib: Capacity of the storage pool (in GiB).
|
414
|
+
:param pulumi.Input[_builtins.str] cold_tier_size_used_gib: Total cold tier data rounded down to the nearest GiB used by the storage pool.
|
412
415
|
:param pulumi.Input[_builtins.bool] custom_performance_enabled: Optional. True if using Independent Scaling of capacity and performance (Hyperdisk). Default is false.
|
413
416
|
:param pulumi.Input[_builtins.str] description: An optional description of this resource.
|
414
417
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
@@ -417,6 +420,7 @@ class _StoragePoolState:
|
|
417
420
|
:param pulumi.Input[_builtins.str] encryption_type: Reports if volumes in the pool are encrypted using a Google-managed encryption key or CMEK.
|
418
421
|
:param pulumi.Input[_builtins.str] hot_tier_size_gib: Total hot tier capacity for the Storage Pool. It is applicable only to Flex service level.
|
419
422
|
It should be less than the minimum storage pool size and cannot be more than the current storage pool size. It cannot be decreased once set.
|
423
|
+
:param pulumi.Input[_builtins.str] hot_tier_size_used_gib: Total hot tier data rounded down to the nearest GiB used by the storage pool.
|
420
424
|
:param pulumi.Input[_builtins.str] kms_config: Specifies the CMEK policy to be used for volume encryption. Format: `projects/{{project}}/locations/{{location}}/kmsConfigs/{{name}}`.
|
421
425
|
The policy needs to be in the same location as the storage pool.
|
422
426
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
|
@@ -455,6 +459,8 @@ class _StoragePoolState:
|
|
455
459
|
pulumi.set(__self__, "available_throughput_mibps", available_throughput_mibps)
|
456
460
|
if capacity_gib is not None:
|
457
461
|
pulumi.set(__self__, "capacity_gib", capacity_gib)
|
462
|
+
if cold_tier_size_used_gib is not None:
|
463
|
+
pulumi.set(__self__, "cold_tier_size_used_gib", cold_tier_size_used_gib)
|
458
464
|
if custom_performance_enabled is not None:
|
459
465
|
pulumi.set(__self__, "custom_performance_enabled", custom_performance_enabled)
|
460
466
|
if description is not None:
|
@@ -467,6 +473,8 @@ class _StoragePoolState:
|
|
467
473
|
pulumi.set(__self__, "encryption_type", encryption_type)
|
468
474
|
if hot_tier_size_gib is not None:
|
469
475
|
pulumi.set(__self__, "hot_tier_size_gib", hot_tier_size_gib)
|
476
|
+
if hot_tier_size_used_gib is not None:
|
477
|
+
pulumi.set(__self__, "hot_tier_size_used_gib", hot_tier_size_used_gib)
|
470
478
|
if kms_config is not None:
|
471
479
|
pulumi.set(__self__, "kms_config", kms_config)
|
472
480
|
if labels is not None:
|
@@ -550,6 +558,18 @@ class _StoragePoolState:
|
|
550
558
|
def capacity_gib(self, value: Optional[pulumi.Input[_builtins.str]]):
|
551
559
|
pulumi.set(self, "capacity_gib", value)
|
552
560
|
|
561
|
+
@_builtins.property
|
562
|
+
@pulumi.getter(name="coldTierSizeUsedGib")
|
563
|
+
def cold_tier_size_used_gib(self) -> Optional[pulumi.Input[_builtins.str]]:
|
564
|
+
"""
|
565
|
+
Total cold tier data rounded down to the nearest GiB used by the storage pool.
|
566
|
+
"""
|
567
|
+
return pulumi.get(self, "cold_tier_size_used_gib")
|
568
|
+
|
569
|
+
@cold_tier_size_used_gib.setter
|
570
|
+
def cold_tier_size_used_gib(self, value: Optional[pulumi.Input[_builtins.str]]):
|
571
|
+
pulumi.set(self, "cold_tier_size_used_gib", value)
|
572
|
+
|
553
573
|
@_builtins.property
|
554
574
|
@pulumi.getter(name="customPerformanceEnabled")
|
555
575
|
def custom_performance_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -624,6 +644,18 @@ class _StoragePoolState:
|
|
624
644
|
def hot_tier_size_gib(self, value: Optional[pulumi.Input[_builtins.str]]):
|
625
645
|
pulumi.set(self, "hot_tier_size_gib", value)
|
626
646
|
|
647
|
+
@_builtins.property
|
648
|
+
@pulumi.getter(name="hotTierSizeUsedGib")
|
649
|
+
def hot_tier_size_used_gib(self) -> Optional[pulumi.Input[_builtins.str]]:
|
650
|
+
"""
|
651
|
+
Total hot tier data rounded down to the nearest GiB used by the storage pool.
|
652
|
+
"""
|
653
|
+
return pulumi.get(self, "hot_tier_size_used_gib")
|
654
|
+
|
655
|
+
@hot_tier_size_used_gib.setter
|
656
|
+
def hot_tier_size_used_gib(self, value: Optional[pulumi.Input[_builtins.str]]):
|
657
|
+
pulumi.set(self, "hot_tier_size_used_gib", value)
|
658
|
+
|
627
659
|
@_builtins.property
|
628
660
|
@pulumi.getter(name="kmsConfig")
|
629
661
|
def kms_config(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -1107,8 +1139,10 @@ class StoragePool(pulumi.CustomResource):
|
|
1107
1139
|
__props__.__dict__["total_throughput_mibps"] = total_throughput_mibps
|
1108
1140
|
__props__.__dict__["zone"] = zone
|
1109
1141
|
__props__.__dict__["available_throughput_mibps"] = None
|
1142
|
+
__props__.__dict__["cold_tier_size_used_gib"] = None
|
1110
1143
|
__props__.__dict__["effective_labels"] = None
|
1111
1144
|
__props__.__dict__["encryption_type"] = None
|
1145
|
+
__props__.__dict__["hot_tier_size_used_gib"] = None
|
1112
1146
|
__props__.__dict__["pulumi_labels"] = None
|
1113
1147
|
__props__.__dict__["volume_capacity_gib"] = None
|
1114
1148
|
__props__.__dict__["volume_count"] = None
|
@@ -1128,12 +1162,14 @@ class StoragePool(pulumi.CustomResource):
|
|
1128
1162
|
allow_auto_tiering: Optional[pulumi.Input[_builtins.bool]] = None,
|
1129
1163
|
available_throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
1130
1164
|
capacity_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1165
|
+
cold_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1131
1166
|
custom_performance_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
1132
1167
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
1133
1168
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1134
1169
|
enable_hot_tier_auto_resize: Optional[pulumi.Input[_builtins.bool]] = None,
|
1135
1170
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
1136
1171
|
hot_tier_size_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1172
|
+
hot_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1137
1173
|
kms_config: Optional[pulumi.Input[_builtins.str]] = None,
|
1138
1174
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1139
1175
|
ldap_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -1163,6 +1199,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1163
1199
|
Auto-tiering can be enabled after storage pool creation but it can't be disabled once enabled.
|
1164
1200
|
:param pulumi.Input[_builtins.float] available_throughput_mibps: Available throughput of the storage pool (in MiB/s).
|
1165
1201
|
:param pulumi.Input[_builtins.str] capacity_gib: Capacity of the storage pool (in GiB).
|
1202
|
+
:param pulumi.Input[_builtins.str] cold_tier_size_used_gib: Total cold tier data rounded down to the nearest GiB used by the storage pool.
|
1166
1203
|
:param pulumi.Input[_builtins.bool] custom_performance_enabled: Optional. True if using Independent Scaling of capacity and performance (Hyperdisk). Default is false.
|
1167
1204
|
:param pulumi.Input[_builtins.str] description: An optional description of this resource.
|
1168
1205
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
@@ -1171,6 +1208,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1171
1208
|
:param pulumi.Input[_builtins.str] encryption_type: Reports if volumes in the pool are encrypted using a Google-managed encryption key or CMEK.
|
1172
1209
|
:param pulumi.Input[_builtins.str] hot_tier_size_gib: Total hot tier capacity for the Storage Pool. It is applicable only to Flex service level.
|
1173
1210
|
It should be less than the minimum storage pool size and cannot be more than the current storage pool size. It cannot be decreased once set.
|
1211
|
+
:param pulumi.Input[_builtins.str] hot_tier_size_used_gib: Total hot tier data rounded down to the nearest GiB used by the storage pool.
|
1174
1212
|
:param pulumi.Input[_builtins.str] kms_config: Specifies the CMEK policy to be used for volume encryption. Format: `projects/{{project}}/locations/{{location}}/kmsConfigs/{{name}}`.
|
1175
1213
|
The policy needs to be in the same location as the storage pool.
|
1176
1214
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
|
@@ -1209,12 +1247,14 @@ class StoragePool(pulumi.CustomResource):
|
|
1209
1247
|
__props__.__dict__["allow_auto_tiering"] = allow_auto_tiering
|
1210
1248
|
__props__.__dict__["available_throughput_mibps"] = available_throughput_mibps
|
1211
1249
|
__props__.__dict__["capacity_gib"] = capacity_gib
|
1250
|
+
__props__.__dict__["cold_tier_size_used_gib"] = cold_tier_size_used_gib
|
1212
1251
|
__props__.__dict__["custom_performance_enabled"] = custom_performance_enabled
|
1213
1252
|
__props__.__dict__["description"] = description
|
1214
1253
|
__props__.__dict__["effective_labels"] = effective_labels
|
1215
1254
|
__props__.__dict__["enable_hot_tier_auto_resize"] = enable_hot_tier_auto_resize
|
1216
1255
|
__props__.__dict__["encryption_type"] = encryption_type
|
1217
1256
|
__props__.__dict__["hot_tier_size_gib"] = hot_tier_size_gib
|
1257
|
+
__props__.__dict__["hot_tier_size_used_gib"] = hot_tier_size_used_gib
|
1218
1258
|
__props__.__dict__["kms_config"] = kms_config
|
1219
1259
|
__props__.__dict__["labels"] = labels
|
1220
1260
|
__props__.__dict__["ldap_enabled"] = ldap_enabled
|
@@ -1267,6 +1307,14 @@ class StoragePool(pulumi.CustomResource):
|
|
1267
1307
|
"""
|
1268
1308
|
return pulumi.get(self, "capacity_gib")
|
1269
1309
|
|
1310
|
+
@_builtins.property
|
1311
|
+
@pulumi.getter(name="coldTierSizeUsedGib")
|
1312
|
+
def cold_tier_size_used_gib(self) -> pulumi.Output[_builtins.str]:
|
1313
|
+
"""
|
1314
|
+
Total cold tier data rounded down to the nearest GiB used by the storage pool.
|
1315
|
+
"""
|
1316
|
+
return pulumi.get(self, "cold_tier_size_used_gib")
|
1317
|
+
|
1270
1318
|
@_builtins.property
|
1271
1319
|
@pulumi.getter(name="customPerformanceEnabled")
|
1272
1320
|
def custom_performance_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
@@ -1317,6 +1365,14 @@ class StoragePool(pulumi.CustomResource):
|
|
1317
1365
|
"""
|
1318
1366
|
return pulumi.get(self, "hot_tier_size_gib")
|
1319
1367
|
|
1368
|
+
@_builtins.property
|
1369
|
+
@pulumi.getter(name="hotTierSizeUsedGib")
|
1370
|
+
def hot_tier_size_used_gib(self) -> pulumi.Output[_builtins.str]:
|
1371
|
+
"""
|
1372
|
+
Total hot tier data rounded down to the nearest GiB used by the storage pool.
|
1373
|
+
"""
|
1374
|
+
return pulumi.get(self, "hot_tier_size_used_gib")
|
1375
|
+
|
1320
1376
|
@_builtins.property
|
1321
1377
|
@pulumi.getter(name="kmsConfig")
|
1322
1378
|
def kms_config(self) -> pulumi.Output[Optional[_builtins.str]]:
|
pulumi_gcp/netapp/volume.py
CHANGED
@@ -475,6 +475,7 @@ class _VolumeState:
|
|
475
475
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
476
476
|
export_policy: Optional[pulumi.Input['VolumeExportPolicyArgs']] = None,
|
477
477
|
has_replication: Optional[pulumi.Input[_builtins.bool]] = None,
|
478
|
+
hot_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
478
479
|
hybrid_replication_parameters: Optional[pulumi.Input['VolumeHybridReplicationParametersArgs']] = None,
|
479
480
|
kerberos_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
480
481
|
kms_config: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -525,6 +526,7 @@ class _VolumeState:
|
|
525
526
|
:param pulumi.Input['VolumeExportPolicyArgs'] export_policy: Export policy of the volume for NFSV3 and/or NFSV4.1 access.
|
526
527
|
Structure is documented below.
|
527
528
|
:param pulumi.Input[_builtins.bool] has_replication: Indicates whether the volume is part of a volume replication relationship.
|
529
|
+
:param pulumi.Input[_builtins.str] hot_tier_size_used_gib: Total hot tier data rounded down to the nearest GiB used by the volume. This field is only used for flex Service Level
|
528
530
|
:param pulumi.Input['VolumeHybridReplicationParametersArgs'] hybrid_replication_parameters: The Hybrid Replication parameters for the volume.
|
529
531
|
Structure is documented below.
|
530
532
|
:param pulumi.Input[_builtins.bool] kerberos_enabled: Flag indicating if the volume is a kerberos volume or not, export policy rules control kerberos security modes (krb5, krb5i, krb5p).
|
@@ -597,6 +599,8 @@ class _VolumeState:
|
|
597
599
|
pulumi.set(__self__, "export_policy", export_policy)
|
598
600
|
if has_replication is not None:
|
599
601
|
pulumi.set(__self__, "has_replication", has_replication)
|
602
|
+
if hot_tier_size_used_gib is not None:
|
603
|
+
pulumi.set(__self__, "hot_tier_size_used_gib", hot_tier_size_used_gib)
|
600
604
|
if hybrid_replication_parameters is not None:
|
601
605
|
pulumi.set(__self__, "hybrid_replication_parameters", hybrid_replication_parameters)
|
602
606
|
if kerberos_enabled is not None:
|
@@ -799,6 +803,18 @@ class _VolumeState:
|
|
799
803
|
def has_replication(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
800
804
|
pulumi.set(self, "has_replication", value)
|
801
805
|
|
806
|
+
@_builtins.property
|
807
|
+
@pulumi.getter(name="hotTierSizeUsedGib")
|
808
|
+
def hot_tier_size_used_gib(self) -> Optional[pulumi.Input[_builtins.str]]:
|
809
|
+
"""
|
810
|
+
Total hot tier data rounded down to the nearest GiB used by the volume. This field is only used for flex Service Level
|
811
|
+
"""
|
812
|
+
return pulumi.get(self, "hot_tier_size_used_gib")
|
813
|
+
|
814
|
+
@hot_tier_size_used_gib.setter
|
815
|
+
def hot_tier_size_used_gib(self, value: Optional[pulumi.Input[_builtins.str]]):
|
816
|
+
pulumi.set(self, "hot_tier_size_used_gib", value)
|
817
|
+
|
802
818
|
@_builtins.property
|
803
819
|
@pulumi.getter(name="hybridReplicationParameters")
|
804
820
|
def hybrid_replication_parameters(self) -> Optional[pulumi.Input['VolumeHybridReplicationParametersArgs']]:
|
@@ -1503,6 +1519,7 @@ class Volume(pulumi.CustomResource):
|
|
1503
1519
|
__props__.__dict__["effective_labels"] = None
|
1504
1520
|
__props__.__dict__["encryption_type"] = None
|
1505
1521
|
__props__.__dict__["has_replication"] = None
|
1522
|
+
__props__.__dict__["hot_tier_size_used_gib"] = None
|
1506
1523
|
__props__.__dict__["kms_config"] = None
|
1507
1524
|
__props__.__dict__["ldap_enabled"] = None
|
1508
1525
|
__props__.__dict__["mount_options"] = None
|
@@ -1538,6 +1555,7 @@ class Volume(pulumi.CustomResource):
|
|
1538
1555
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
1539
1556
|
export_policy: Optional[pulumi.Input[Union['VolumeExportPolicyArgs', 'VolumeExportPolicyArgsDict']]] = None,
|
1540
1557
|
has_replication: Optional[pulumi.Input[_builtins.bool]] = None,
|
1558
|
+
hot_tier_size_used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1541
1559
|
hybrid_replication_parameters: Optional[pulumi.Input[Union['VolumeHybridReplicationParametersArgs', 'VolumeHybridReplicationParametersArgsDict']]] = None,
|
1542
1560
|
kerberos_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
1543
1561
|
kms_config: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1593,6 +1611,7 @@ class Volume(pulumi.CustomResource):
|
|
1593
1611
|
:param pulumi.Input[Union['VolumeExportPolicyArgs', 'VolumeExportPolicyArgsDict']] export_policy: Export policy of the volume for NFSV3 and/or NFSV4.1 access.
|
1594
1612
|
Structure is documented below.
|
1595
1613
|
:param pulumi.Input[_builtins.bool] has_replication: Indicates whether the volume is part of a volume replication relationship.
|
1614
|
+
:param pulumi.Input[_builtins.str] hot_tier_size_used_gib: Total hot tier data rounded down to the nearest GiB used by the volume. This field is only used for flex Service Level
|
1596
1615
|
:param pulumi.Input[Union['VolumeHybridReplicationParametersArgs', 'VolumeHybridReplicationParametersArgsDict']] hybrid_replication_parameters: The Hybrid Replication parameters for the volume.
|
1597
1616
|
Structure is documented below.
|
1598
1617
|
:param pulumi.Input[_builtins.bool] kerberos_enabled: Flag indicating if the volume is a kerberos volume or not, export policy rules control kerberos security modes (krb5, krb5i, krb5p).
|
@@ -1658,6 +1677,7 @@ class Volume(pulumi.CustomResource):
|
|
1658
1677
|
__props__.__dict__["encryption_type"] = encryption_type
|
1659
1678
|
__props__.__dict__["export_policy"] = export_policy
|
1660
1679
|
__props__.__dict__["has_replication"] = has_replication
|
1680
|
+
__props__.__dict__["hot_tier_size_used_gib"] = hot_tier_size_used_gib
|
1661
1681
|
__props__.__dict__["hybrid_replication_parameters"] = hybrid_replication_parameters
|
1662
1682
|
__props__.__dict__["kerberos_enabled"] = kerberos_enabled
|
1663
1683
|
__props__.__dict__["kms_config"] = kms_config
|
@@ -1785,6 +1805,14 @@ class Volume(pulumi.CustomResource):
|
|
1785
1805
|
"""
|
1786
1806
|
return pulumi.get(self, "has_replication")
|
1787
1807
|
|
1808
|
+
@_builtins.property
|
1809
|
+
@pulumi.getter(name="hotTierSizeUsedGib")
|
1810
|
+
def hot_tier_size_used_gib(self) -> pulumi.Output[_builtins.str]:
|
1811
|
+
"""
|
1812
|
+
Total hot tier data rounded down to the nearest GiB used by the volume. This field is only used for flex Service Level
|
1813
|
+
"""
|
1814
|
+
return pulumi.get(self, "hot_tier_size_used_gib")
|
1815
|
+
|
1788
1816
|
@_builtins.property
|
1789
1817
|
@pulumi.getter(name="hybridReplicationParameters")
|
1790
1818
|
def hybrid_replication_parameters(self) -> pulumi.Output[Optional['outputs.VolumeHybridReplicationParameters']]:
|
@@ -676,15 +676,15 @@ class Spoke(pulumi.CustomResource):
|
|
676
676
|
import pulumi_gcp as gcp
|
677
677
|
|
678
678
|
network = gcp.compute.Network("network",
|
679
|
-
name="tf-test-
|
679
|
+
name="tf-test-network_60365",
|
680
680
|
auto_create_subnetworks=False)
|
681
681
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
682
|
-
name="tf-test-
|
682
|
+
name="tf-test-subnet_80215",
|
683
683
|
ip_cidr_range="10.0.0.0/28",
|
684
684
|
region="us-central1",
|
685
685
|
network=network.self_link)
|
686
686
|
instance = gcp.compute.Instance("instance",
|
687
|
-
name="tf-test-
|
687
|
+
name="tf-test-instance_59033",
|
688
688
|
machine_type="e2-medium",
|
689
689
|
can_ip_forward=True,
|
690
690
|
zone="us-central1-a",
|
@@ -701,13 +701,13 @@ class Spoke(pulumi.CustomResource):
|
|
701
701
|
}],
|
702
702
|
}])
|
703
703
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
704
|
-
name="tf-test-
|
704
|
+
name="tf-test-hub_32081",
|
705
705
|
description="A sample hub",
|
706
706
|
labels={
|
707
707
|
"label-two": "value-one",
|
708
708
|
})
|
709
709
|
primary = gcp.networkconnectivity.Spoke("primary",
|
710
|
-
name="tf-test-
|
710
|
+
name="tf-test-name_10393",
|
711
711
|
location="us-central1",
|
712
712
|
description="A sample spoke with a linked routher appliance instance",
|
713
713
|
labels={
|
@@ -939,8 +939,8 @@ class Spoke(pulumi.CustomResource):
|
|
939
939
|
hub=star_hub.id,
|
940
940
|
auto_accept={
|
941
941
|
"auto_accept_projects": [
|
942
|
-
"
|
943
|
-
"
|
942
|
+
"foo_33052",
|
943
|
+
"bar_3684",
|
944
944
|
],
|
945
945
|
})
|
946
946
|
primary = gcp.networkconnectivity.Spoke("primary",
|
@@ -1134,15 +1134,15 @@ class Spoke(pulumi.CustomResource):
|
|
1134
1134
|
import pulumi_gcp as gcp
|
1135
1135
|
|
1136
1136
|
network = gcp.compute.Network("network",
|
1137
|
-
name="tf-test-
|
1137
|
+
name="tf-test-network_60365",
|
1138
1138
|
auto_create_subnetworks=False)
|
1139
1139
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
1140
|
-
name="tf-test-
|
1140
|
+
name="tf-test-subnet_80215",
|
1141
1141
|
ip_cidr_range="10.0.0.0/28",
|
1142
1142
|
region="us-central1",
|
1143
1143
|
network=network.self_link)
|
1144
1144
|
instance = gcp.compute.Instance("instance",
|
1145
|
-
name="tf-test-
|
1145
|
+
name="tf-test-instance_59033",
|
1146
1146
|
machine_type="e2-medium",
|
1147
1147
|
can_ip_forward=True,
|
1148
1148
|
zone="us-central1-a",
|
@@ -1159,13 +1159,13 @@ class Spoke(pulumi.CustomResource):
|
|
1159
1159
|
}],
|
1160
1160
|
}])
|
1161
1161
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
1162
|
-
name="tf-test-
|
1162
|
+
name="tf-test-hub_32081",
|
1163
1163
|
description="A sample hub",
|
1164
1164
|
labels={
|
1165
1165
|
"label-two": "value-one",
|
1166
1166
|
})
|
1167
1167
|
primary = gcp.networkconnectivity.Spoke("primary",
|
1168
|
-
name="tf-test-
|
1168
|
+
name="tf-test-name_10393",
|
1169
1169
|
location="us-central1",
|
1170
1170
|
description="A sample spoke with a linked routher appliance instance",
|
1171
1171
|
labels={
|
@@ -1397,8 +1397,8 @@ class Spoke(pulumi.CustomResource):
|
|
1397
1397
|
hub=star_hub.id,
|
1398
1398
|
auto_accept={
|
1399
1399
|
"auto_accept_projects": [
|
1400
|
-
"
|
1401
|
-
"
|
1400
|
+
"foo_33052",
|
1401
|
+
"bar_3684",
|
1402
1402
|
],
|
1403
1403
|
})
|
1404
1404
|
primary = gcp.networkconnectivity.Spoke("primary",
|