pulumi-gcp 8.42.0a1758133038__py3-none-any.whl → 9.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
@@ -34,6 +34,7 @@ class StoragePoolArgs:
|
|
34
34
|
ldap_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
35
35
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
36
36
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
37
|
+
qos_type: Optional[pulumi.Input[_builtins.str]] = None,
|
37
38
|
replica_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
38
39
|
total_iops: Optional[pulumi.Input[_builtins.str]] = None,
|
39
40
|
total_throughput_mibps: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -66,6 +67,9 @@ class StoragePoolArgs:
|
|
66
67
|
:param pulumi.Input[_builtins.str] name: The resource name of the storage pool. Needs to be unique per location/region.
|
67
68
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
68
69
|
If it is not provided, the provider project is used.
|
70
|
+
:param pulumi.Input[_builtins.str] qos_type: QoS (Quality of Service) type of the storage pool.
|
71
|
+
Possible values are: AUTO, MANUAL.
|
72
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
69
73
|
:param pulumi.Input[_builtins.str] replica_zone: Specifies the replica zone for regional Flex pools. `zone` and `replica_zone` values can be swapped to initiate a
|
70
74
|
[zone switch](https://cloud.google.com/netapp/volumes/docs/configure-and-use/storage-pools/edit-or-delete-storage-pool#switch_active_and_replica_zones).
|
71
75
|
:param pulumi.Input[_builtins.str] total_iops: Optional. Custom Performance Total IOPS of the pool If not provided, it will be calculated based on the totalThroughputMibps
|
@@ -100,6 +104,8 @@ class StoragePoolArgs:
|
|
100
104
|
pulumi.set(__self__, "name", name)
|
101
105
|
if project is not None:
|
102
106
|
pulumi.set(__self__, "project", project)
|
107
|
+
if qos_type is not None:
|
108
|
+
pulumi.set(__self__, "qos_type", qos_type)
|
103
109
|
if replica_zone is not None:
|
104
110
|
pulumi.set(__self__, "replica_zone", replica_zone)
|
105
111
|
if total_iops is not None:
|
@@ -300,6 +306,20 @@ class StoragePoolArgs:
|
|
300
306
|
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
301
307
|
pulumi.set(self, "project", value)
|
302
308
|
|
309
|
+
@_builtins.property
|
310
|
+
@pulumi.getter(name="qosType")
|
311
|
+
def qos_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
312
|
+
"""
|
313
|
+
QoS (Quality of Service) type of the storage pool.
|
314
|
+
Possible values are: AUTO, MANUAL.
|
315
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
316
|
+
"""
|
317
|
+
return pulumi.get(self, "qos_type")
|
318
|
+
|
319
|
+
@qos_type.setter
|
320
|
+
def qos_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
321
|
+
pulumi.set(self, "qos_type", value)
|
322
|
+
|
303
323
|
@_builtins.property
|
304
324
|
@pulumi.getter(name="replicaZone")
|
305
325
|
def replica_zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -357,6 +377,7 @@ class _StoragePoolState:
|
|
357
377
|
def __init__(__self__, *,
|
358
378
|
active_directory: Optional[pulumi.Input[_builtins.str]] = None,
|
359
379
|
allow_auto_tiering: Optional[pulumi.Input[_builtins.bool]] = None,
|
380
|
+
available_throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
360
381
|
capacity_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
361
382
|
custom_performance_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
362
383
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -372,6 +393,7 @@ class _StoragePoolState:
|
|
372
393
|
network: Optional[pulumi.Input[_builtins.str]] = None,
|
373
394
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
374
395
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
396
|
+
qos_type: Optional[pulumi.Input[_builtins.str]] = None,
|
375
397
|
replica_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
376
398
|
service_level: Optional[pulumi.Input[_builtins.str]] = None,
|
377
399
|
total_iops: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -385,6 +407,7 @@ class _StoragePoolState:
|
|
385
407
|
The policy needs to be in the same location as the storage pool.
|
386
408
|
:param pulumi.Input[_builtins.bool] allow_auto_tiering: Optional. True if the storage pool supports Auto Tiering enabled volumes. Default is false.
|
387
409
|
Auto-tiering can be enabled after storage pool creation but it can't be disabled once enabled.
|
410
|
+
:param pulumi.Input[_builtins.float] available_throughput_mibps: Available throughput of the storage pool (in MiB/s).
|
388
411
|
:param pulumi.Input[_builtins.str] capacity_gib: Capacity of the storage pool (in GiB).
|
389
412
|
:param pulumi.Input[_builtins.bool] custom_performance_enabled: Optional. True if using Independent Scaling of capacity and performance (Hyperdisk). Default is false.
|
390
413
|
:param pulumi.Input[_builtins.str] description: An optional description of this resource.
|
@@ -409,6 +432,9 @@ class _StoragePoolState:
|
|
409
432
|
If it is not provided, the provider project is used.
|
410
433
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
411
434
|
and default labels configured on the provider.
|
435
|
+
:param pulumi.Input[_builtins.str] qos_type: QoS (Quality of Service) type of the storage pool.
|
436
|
+
Possible values are: AUTO, MANUAL.
|
437
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
412
438
|
:param pulumi.Input[_builtins.str] replica_zone: Specifies the replica zone for regional Flex pools. `zone` and `replica_zone` values can be swapped to initiate a
|
413
439
|
[zone switch](https://cloud.google.com/netapp/volumes/docs/configure-and-use/storage-pools/edit-or-delete-storage-pool#switch_active_and_replica_zones).
|
414
440
|
:param pulumi.Input[_builtins.str] service_level: Service level of the storage pool.
|
@@ -425,6 +451,8 @@ class _StoragePoolState:
|
|
425
451
|
pulumi.set(__self__, "active_directory", active_directory)
|
426
452
|
if allow_auto_tiering is not None:
|
427
453
|
pulumi.set(__self__, "allow_auto_tiering", allow_auto_tiering)
|
454
|
+
if available_throughput_mibps is not None:
|
455
|
+
pulumi.set(__self__, "available_throughput_mibps", available_throughput_mibps)
|
428
456
|
if capacity_gib is not None:
|
429
457
|
pulumi.set(__self__, "capacity_gib", capacity_gib)
|
430
458
|
if custom_performance_enabled is not None:
|
@@ -455,6 +483,8 @@ class _StoragePoolState:
|
|
455
483
|
pulumi.set(__self__, "project", project)
|
456
484
|
if pulumi_labels is not None:
|
457
485
|
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
486
|
+
if qos_type is not None:
|
487
|
+
pulumi.set(__self__, "qos_type", qos_type)
|
458
488
|
if replica_zone is not None:
|
459
489
|
pulumi.set(__self__, "replica_zone", replica_zone)
|
460
490
|
if service_level is not None:
|
@@ -496,6 +526,18 @@ class _StoragePoolState:
|
|
496
526
|
def allow_auto_tiering(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
497
527
|
pulumi.set(self, "allow_auto_tiering", value)
|
498
528
|
|
529
|
+
@_builtins.property
|
530
|
+
@pulumi.getter(name="availableThroughputMibps")
|
531
|
+
def available_throughput_mibps(self) -> Optional[pulumi.Input[_builtins.float]]:
|
532
|
+
"""
|
533
|
+
Available throughput of the storage pool (in MiB/s).
|
534
|
+
"""
|
535
|
+
return pulumi.get(self, "available_throughput_mibps")
|
536
|
+
|
537
|
+
@available_throughput_mibps.setter
|
538
|
+
def available_throughput_mibps(self, value: Optional[pulumi.Input[_builtins.float]]):
|
539
|
+
pulumi.set(self, "available_throughput_mibps", value)
|
540
|
+
|
499
541
|
@_builtins.property
|
500
542
|
@pulumi.getter(name="capacityGib")
|
501
543
|
def capacity_gib(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -685,6 +727,20 @@ class _StoragePoolState:
|
|
685
727
|
def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
686
728
|
pulumi.set(self, "pulumi_labels", value)
|
687
729
|
|
730
|
+
@_builtins.property
|
731
|
+
@pulumi.getter(name="qosType")
|
732
|
+
def qos_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
733
|
+
"""
|
734
|
+
QoS (Quality of Service) type of the storage pool.
|
735
|
+
Possible values are: AUTO, MANUAL.
|
736
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
737
|
+
"""
|
738
|
+
return pulumi.get(self, "qos_type")
|
739
|
+
|
740
|
+
@qos_type.setter
|
741
|
+
def qos_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
742
|
+
pulumi.set(self, "qos_type", value)
|
743
|
+
|
688
744
|
@_builtins.property
|
689
745
|
@pulumi.getter(name="replicaZone")
|
690
746
|
def replica_zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -794,6 +850,7 @@ class StoragePool(pulumi.CustomResource):
|
|
794
850
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
795
851
|
network: Optional[pulumi.Input[_builtins.str]] = None,
|
796
852
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
853
|
+
qos_type: Optional[pulumi.Input[_builtins.str]] = None,
|
797
854
|
replica_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
798
855
|
service_level: Optional[pulumi.Input[_builtins.str]] = None,
|
799
856
|
total_iops: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -892,6 +949,9 @@ class StoragePool(pulumi.CustomResource):
|
|
892
949
|
:param pulumi.Input[_builtins.str] network: VPC network name with format: `projects/{{project}}/global/networks/{{network}}`
|
893
950
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
894
951
|
If it is not provided, the provider project is used.
|
952
|
+
:param pulumi.Input[_builtins.str] qos_type: QoS (Quality of Service) type of the storage pool.
|
953
|
+
Possible values are: AUTO, MANUAL.
|
954
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
895
955
|
:param pulumi.Input[_builtins.str] replica_zone: Specifies the replica zone for regional Flex pools. `zone` and `replica_zone` values can be swapped to initiate a
|
896
956
|
[zone switch](https://cloud.google.com/netapp/volumes/docs/configure-and-use/storage-pools/edit-or-delete-storage-pool#switch_active_and_replica_zones).
|
897
957
|
:param pulumi.Input[_builtins.str] service_level: Service level of the storage pool.
|
@@ -1003,6 +1063,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1003
1063
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
1004
1064
|
network: Optional[pulumi.Input[_builtins.str]] = None,
|
1005
1065
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
1066
|
+
qos_type: Optional[pulumi.Input[_builtins.str]] = None,
|
1006
1067
|
replica_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
1007
1068
|
service_level: Optional[pulumi.Input[_builtins.str]] = None,
|
1008
1069
|
total_iops: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1037,6 +1098,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1037
1098
|
raise TypeError("Missing required property 'network'")
|
1038
1099
|
__props__.__dict__["network"] = network
|
1039
1100
|
__props__.__dict__["project"] = project
|
1101
|
+
__props__.__dict__["qos_type"] = qos_type
|
1040
1102
|
__props__.__dict__["replica_zone"] = replica_zone
|
1041
1103
|
if service_level is None and not opts.urn:
|
1042
1104
|
raise TypeError("Missing required property 'service_level'")
|
@@ -1044,6 +1106,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1044
1106
|
__props__.__dict__["total_iops"] = total_iops
|
1045
1107
|
__props__.__dict__["total_throughput_mibps"] = total_throughput_mibps
|
1046
1108
|
__props__.__dict__["zone"] = zone
|
1109
|
+
__props__.__dict__["available_throughput_mibps"] = None
|
1047
1110
|
__props__.__dict__["effective_labels"] = None
|
1048
1111
|
__props__.__dict__["encryption_type"] = None
|
1049
1112
|
__props__.__dict__["pulumi_labels"] = None
|
@@ -1063,6 +1126,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1063
1126
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1064
1127
|
active_directory: Optional[pulumi.Input[_builtins.str]] = None,
|
1065
1128
|
allow_auto_tiering: Optional[pulumi.Input[_builtins.bool]] = None,
|
1129
|
+
available_throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
1066
1130
|
capacity_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
1067
1131
|
custom_performance_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
1068
1132
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1078,6 +1142,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1078
1142
|
network: Optional[pulumi.Input[_builtins.str]] = None,
|
1079
1143
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
1080
1144
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1145
|
+
qos_type: Optional[pulumi.Input[_builtins.str]] = None,
|
1081
1146
|
replica_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
1082
1147
|
service_level: Optional[pulumi.Input[_builtins.str]] = None,
|
1083
1148
|
total_iops: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1096,6 +1161,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1096
1161
|
The policy needs to be in the same location as the storage pool.
|
1097
1162
|
:param pulumi.Input[_builtins.bool] allow_auto_tiering: Optional. True if the storage pool supports Auto Tiering enabled volumes. Default is false.
|
1098
1163
|
Auto-tiering can be enabled after storage pool creation but it can't be disabled once enabled.
|
1164
|
+
:param pulumi.Input[_builtins.float] available_throughput_mibps: Available throughput of the storage pool (in MiB/s).
|
1099
1165
|
:param pulumi.Input[_builtins.str] capacity_gib: Capacity of the storage pool (in GiB).
|
1100
1166
|
:param pulumi.Input[_builtins.bool] custom_performance_enabled: Optional. True if using Independent Scaling of capacity and performance (Hyperdisk). Default is false.
|
1101
1167
|
:param pulumi.Input[_builtins.str] description: An optional description of this resource.
|
@@ -1120,6 +1186,9 @@ class StoragePool(pulumi.CustomResource):
|
|
1120
1186
|
If it is not provided, the provider project is used.
|
1121
1187
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
1122
1188
|
and default labels configured on the provider.
|
1189
|
+
:param pulumi.Input[_builtins.str] qos_type: QoS (Quality of Service) type of the storage pool.
|
1190
|
+
Possible values are: AUTO, MANUAL.
|
1191
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
1123
1192
|
:param pulumi.Input[_builtins.str] replica_zone: Specifies the replica zone for regional Flex pools. `zone` and `replica_zone` values can be swapped to initiate a
|
1124
1193
|
[zone switch](https://cloud.google.com/netapp/volumes/docs/configure-and-use/storage-pools/edit-or-delete-storage-pool#switch_active_and_replica_zones).
|
1125
1194
|
:param pulumi.Input[_builtins.str] service_level: Service level of the storage pool.
|
@@ -1138,6 +1207,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1138
1207
|
|
1139
1208
|
__props__.__dict__["active_directory"] = active_directory
|
1140
1209
|
__props__.__dict__["allow_auto_tiering"] = allow_auto_tiering
|
1210
|
+
__props__.__dict__["available_throughput_mibps"] = available_throughput_mibps
|
1141
1211
|
__props__.__dict__["capacity_gib"] = capacity_gib
|
1142
1212
|
__props__.__dict__["custom_performance_enabled"] = custom_performance_enabled
|
1143
1213
|
__props__.__dict__["description"] = description
|
@@ -1153,6 +1223,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1153
1223
|
__props__.__dict__["network"] = network
|
1154
1224
|
__props__.__dict__["project"] = project
|
1155
1225
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
1226
|
+
__props__.__dict__["qos_type"] = qos_type
|
1156
1227
|
__props__.__dict__["replica_zone"] = replica_zone
|
1157
1228
|
__props__.__dict__["service_level"] = service_level
|
1158
1229
|
__props__.__dict__["total_iops"] = total_iops
|
@@ -1180,6 +1251,14 @@ class StoragePool(pulumi.CustomResource):
|
|
1180
1251
|
"""
|
1181
1252
|
return pulumi.get(self, "allow_auto_tiering")
|
1182
1253
|
|
1254
|
+
@_builtins.property
|
1255
|
+
@pulumi.getter(name="availableThroughputMibps")
|
1256
|
+
def available_throughput_mibps(self) -> pulumi.Output[_builtins.float]:
|
1257
|
+
"""
|
1258
|
+
Available throughput of the storage pool (in MiB/s).
|
1259
|
+
"""
|
1260
|
+
return pulumi.get(self, "available_throughput_mibps")
|
1261
|
+
|
1183
1262
|
@_builtins.property
|
1184
1263
|
@pulumi.getter(name="capacityGib")
|
1185
1264
|
def capacity_gib(self) -> pulumi.Output[_builtins.str]:
|
@@ -1309,6 +1388,16 @@ class StoragePool(pulumi.CustomResource):
|
|
1309
1388
|
"""
|
1310
1389
|
return pulumi.get(self, "pulumi_labels")
|
1311
1390
|
|
1391
|
+
@_builtins.property
|
1392
|
+
@pulumi.getter(name="qosType")
|
1393
|
+
def qos_type(self) -> pulumi.Output[Optional[_builtins.str]]:
|
1394
|
+
"""
|
1395
|
+
QoS (Quality of Service) type of the storage pool.
|
1396
|
+
Possible values are: AUTO, MANUAL.
|
1397
|
+
Possible values are: `QOS_TYPE_UNSPECIFIED`, `AUTO`, `MANUAL`.
|
1398
|
+
"""
|
1399
|
+
return pulumi.get(self, "qos_type")
|
1400
|
+
|
1312
1401
|
@_builtins.property
|
1313
1402
|
@pulumi.getter(name="replicaZone")
|
1314
1403
|
def replica_zone(self) -> pulumi.Output[Optional[_builtins.str]]:
|
@@ -1329,7 +1418,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1329
1418
|
|
1330
1419
|
@_builtins.property
|
1331
1420
|
@pulumi.getter(name="totalIops")
|
1332
|
-
def total_iops(self) -> pulumi.Output[
|
1421
|
+
def total_iops(self) -> pulumi.Output[_builtins.str]:
|
1333
1422
|
"""
|
1334
1423
|
Optional. Custom Performance Total IOPS of the pool If not provided, it will be calculated based on the totalThroughputMibps
|
1335
1424
|
"""
|
@@ -1337,7 +1426,7 @@ class StoragePool(pulumi.CustomResource):
|
|
1337
1426
|
|
1338
1427
|
@_builtins.property
|
1339
1428
|
@pulumi.getter(name="totalThroughputMibps")
|
1340
|
-
def total_throughput_mibps(self) -> pulumi.Output[
|
1429
|
+
def total_throughput_mibps(self) -> pulumi.Output[_builtins.str]:
|
1341
1430
|
"""
|
1342
1431
|
Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
1343
1432
|
"""
|
pulumi_gcp/netapp/volume.py
CHANGED
@@ -43,6 +43,7 @@ class VolumeArgs:
|
|
43
43
|
smb_settings: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
44
44
|
snapshot_directory: Optional[pulumi.Input[_builtins.bool]] = None,
|
45
45
|
snapshot_policy: Optional[pulumi.Input['VolumeSnapshotPolicyArgs']] = None,
|
46
|
+
throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
46
47
|
tiering_policy: Optional[pulumi.Input['VolumeTieringPolicyArgs']] = None,
|
47
48
|
unix_permissions: Optional[pulumi.Input[_builtins.str]] = None):
|
48
49
|
"""
|
@@ -88,6 +89,7 @@ class VolumeArgs:
|
|
88
89
|
:param pulumi.Input['VolumeSnapshotPolicyArgs'] snapshot_policy: Snapshot policy defines the schedule for automatic snapshot creation.
|
89
90
|
To disable automatic snapshot creation you have to remove the whole snapshot_policy block.
|
90
91
|
Structure is documented below.
|
92
|
+
:param pulumi.Input[_builtins.float] throughput_mibps: Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
91
93
|
:param pulumi.Input['VolumeTieringPolicyArgs'] tiering_policy: Tiering policy for the volume.
|
92
94
|
Structure is documented below.
|
93
95
|
:param pulumi.Input[_builtins.str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
|
@@ -131,6 +133,8 @@ class VolumeArgs:
|
|
131
133
|
pulumi.set(__self__, "snapshot_directory", snapshot_directory)
|
132
134
|
if snapshot_policy is not None:
|
133
135
|
pulumi.set(__self__, "snapshot_policy", snapshot_policy)
|
136
|
+
if throughput_mibps is not None:
|
137
|
+
pulumi.set(__self__, "throughput_mibps", throughput_mibps)
|
134
138
|
if tiering_policy is not None:
|
135
139
|
pulumi.set(__self__, "tiering_policy", tiering_policy)
|
136
140
|
if unix_permissions is not None:
|
@@ -419,6 +423,18 @@ class VolumeArgs:
|
|
419
423
|
def snapshot_policy(self, value: Optional[pulumi.Input['VolumeSnapshotPolicyArgs']]):
|
420
424
|
pulumi.set(self, "snapshot_policy", value)
|
421
425
|
|
426
|
+
@_builtins.property
|
427
|
+
@pulumi.getter(name="throughputMibps")
|
428
|
+
def throughput_mibps(self) -> Optional[pulumi.Input[_builtins.float]]:
|
429
|
+
"""
|
430
|
+
Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "throughput_mibps")
|
433
|
+
|
434
|
+
@throughput_mibps.setter
|
435
|
+
def throughput_mibps(self, value: Optional[pulumi.Input[_builtins.float]]):
|
436
|
+
pulumi.set(self, "throughput_mibps", value)
|
437
|
+
|
422
438
|
@_builtins.property
|
423
439
|
@pulumi.getter(name="tieringPolicy")
|
424
440
|
def tiering_policy(self) -> Optional[pulumi.Input['VolumeTieringPolicyArgs']]:
|
@@ -486,6 +502,7 @@ class _VolumeState:
|
|
486
502
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
487
503
|
state_details: Optional[pulumi.Input[_builtins.str]] = None,
|
488
504
|
storage_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
505
|
+
throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
489
506
|
tiering_policy: Optional[pulumi.Input['VolumeTieringPolicyArgs']] = None,
|
490
507
|
unix_permissions: Optional[pulumi.Input[_builtins.str]] = None,
|
491
508
|
used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -551,6 +568,7 @@ class _VolumeState:
|
|
551
568
|
:param pulumi.Input[_builtins.str] state: State of the volume.
|
552
569
|
:param pulumi.Input[_builtins.str] state_details: State details of the volume.
|
553
570
|
:param pulumi.Input[_builtins.str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
|
571
|
+
:param pulumi.Input[_builtins.float] throughput_mibps: Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
554
572
|
:param pulumi.Input['VolumeTieringPolicyArgs'] tiering_policy: Tiering policy for the volume.
|
555
573
|
Structure is documented below.
|
556
574
|
:param pulumi.Input[_builtins.str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
|
@@ -633,6 +651,8 @@ class _VolumeState:
|
|
633
651
|
pulumi.set(__self__, "state_details", state_details)
|
634
652
|
if storage_pool is not None:
|
635
653
|
pulumi.set(__self__, "storage_pool", storage_pool)
|
654
|
+
if throughput_mibps is not None:
|
655
|
+
pulumi.set(__self__, "throughput_mibps", throughput_mibps)
|
636
656
|
if tiering_policy is not None:
|
637
657
|
pulumi.set(__self__, "tiering_policy", tiering_policy)
|
638
658
|
if unix_permissions is not None:
|
@@ -1119,6 +1139,18 @@ class _VolumeState:
|
|
1119
1139
|
def storage_pool(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1120
1140
|
pulumi.set(self, "storage_pool", value)
|
1121
1141
|
|
1142
|
+
@_builtins.property
|
1143
|
+
@pulumi.getter(name="throughputMibps")
|
1144
|
+
def throughput_mibps(self) -> Optional[pulumi.Input[_builtins.float]]:
|
1145
|
+
"""
|
1146
|
+
Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
1147
|
+
"""
|
1148
|
+
return pulumi.get(self, "throughput_mibps")
|
1149
|
+
|
1150
|
+
@throughput_mibps.setter
|
1151
|
+
def throughput_mibps(self, value: Optional[pulumi.Input[_builtins.float]]):
|
1152
|
+
pulumi.set(self, "throughput_mibps", value)
|
1153
|
+
|
1122
1154
|
@_builtins.property
|
1123
1155
|
@pulumi.getter(name="tieringPolicy")
|
1124
1156
|
def tiering_policy(self) -> Optional[pulumi.Input['VolumeTieringPolicyArgs']]:
|
@@ -1197,6 +1229,7 @@ class Volume(pulumi.CustomResource):
|
|
1197
1229
|
snapshot_directory: Optional[pulumi.Input[_builtins.bool]] = None,
|
1198
1230
|
snapshot_policy: Optional[pulumi.Input[Union['VolumeSnapshotPolicyArgs', 'VolumeSnapshotPolicyArgsDict']]] = None,
|
1199
1231
|
storage_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
1232
|
+
throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
1200
1233
|
tiering_policy: Optional[pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']]] = None,
|
1201
1234
|
unix_permissions: Optional[pulumi.Input[_builtins.str]] = None,
|
1202
1235
|
__props__=None):
|
@@ -1306,6 +1339,7 @@ class Volume(pulumi.CustomResource):
|
|
1306
1339
|
To disable automatic snapshot creation you have to remove the whole snapshot_policy block.
|
1307
1340
|
Structure is documented below.
|
1308
1341
|
:param pulumi.Input[_builtins.str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
|
1342
|
+
:param pulumi.Input[_builtins.float] throughput_mibps: Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
1309
1343
|
:param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
|
1310
1344
|
Structure is documented below.
|
1311
1345
|
:param pulumi.Input[_builtins.str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
|
@@ -1416,6 +1450,7 @@ class Volume(pulumi.CustomResource):
|
|
1416
1450
|
snapshot_directory: Optional[pulumi.Input[_builtins.bool]] = None,
|
1417
1451
|
snapshot_policy: Optional[pulumi.Input[Union['VolumeSnapshotPolicyArgs', 'VolumeSnapshotPolicyArgsDict']]] = None,
|
1418
1452
|
storage_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
1453
|
+
throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
1419
1454
|
tiering_policy: Optional[pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']]] = None,
|
1420
1455
|
unix_permissions: Optional[pulumi.Input[_builtins.str]] = None,
|
1421
1456
|
__props__=None):
|
@@ -1459,6 +1494,7 @@ class Volume(pulumi.CustomResource):
|
|
1459
1494
|
if storage_pool is None and not opts.urn:
|
1460
1495
|
raise TypeError("Missing required property 'storage_pool'")
|
1461
1496
|
__props__.__dict__["storage_pool"] = storage_pool
|
1497
|
+
__props__.__dict__["throughput_mibps"] = throughput_mibps
|
1462
1498
|
__props__.__dict__["tiering_policy"] = tiering_policy
|
1463
1499
|
__props__.__dict__["unix_permissions"] = unix_permissions
|
1464
1500
|
__props__.__dict__["active_directory"] = None
|
@@ -1529,6 +1565,7 @@ class Volume(pulumi.CustomResource):
|
|
1529
1565
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
1530
1566
|
state_details: Optional[pulumi.Input[_builtins.str]] = None,
|
1531
1567
|
storage_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
1568
|
+
throughput_mibps: Optional[pulumi.Input[_builtins.float]] = None,
|
1532
1569
|
tiering_policy: Optional[pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']]] = None,
|
1533
1570
|
unix_permissions: Optional[pulumi.Input[_builtins.str]] = None,
|
1534
1571
|
used_gib: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1599,6 +1636,7 @@ class Volume(pulumi.CustomResource):
|
|
1599
1636
|
:param pulumi.Input[_builtins.str] state: State of the volume.
|
1600
1637
|
:param pulumi.Input[_builtins.str] state_details: State details of the volume.
|
1601
1638
|
:param pulumi.Input[_builtins.str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
|
1639
|
+
:param pulumi.Input[_builtins.float] throughput_mibps: Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
1602
1640
|
:param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
|
1603
1641
|
Structure is documented below.
|
1604
1642
|
:param pulumi.Input[_builtins.str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
|
@@ -1647,6 +1685,7 @@ class Volume(pulumi.CustomResource):
|
|
1647
1685
|
__props__.__dict__["state"] = state
|
1648
1686
|
__props__.__dict__["state_details"] = state_details
|
1649
1687
|
__props__.__dict__["storage_pool"] = storage_pool
|
1688
|
+
__props__.__dict__["throughput_mibps"] = throughput_mibps
|
1650
1689
|
__props__.__dict__["tiering_policy"] = tiering_policy
|
1651
1690
|
__props__.__dict__["unix_permissions"] = unix_permissions
|
1652
1691
|
__props__.__dict__["used_gib"] = used_gib
|
@@ -1978,6 +2017,14 @@ class Volume(pulumi.CustomResource):
|
|
1978
2017
|
"""
|
1979
2018
|
return pulumi.get(self, "storage_pool")
|
1980
2019
|
|
2020
|
+
@_builtins.property
|
2021
|
+
@pulumi.getter(name="throughputMibps")
|
2022
|
+
def throughput_mibps(self) -> pulumi.Output[_builtins.float]:
|
2023
|
+
"""
|
2024
|
+
Optional. Custom Performance Total Throughput of the pool (in MiB/s).
|
2025
|
+
"""
|
2026
|
+
return pulumi.get(self, "throughput_mibps")
|
2027
|
+
|
1981
2028
|
@_builtins.property
|
1982
2029
|
@pulumi.getter(name="tieringPolicy")
|
1983
2030
|
def tiering_policy(self) -> pulumi.Output[Optional['outputs.VolumeTieringPolicy']]:
|
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
# Export this package's modules as members:
|
9
9
|
from .connectivity_test import *
|
10
10
|
from .get_connectivity_test_run import *
|
11
|
+
from .organization_vpc_flow_logs_config import *
|
11
12
|
from .vpc_flow_logs_config import *
|
12
13
|
from ._inputs import *
|
13
14
|
from . import outputs
|