pulumi-gcp 8.11.0a1734157575__py3-none-any.whl → 8.11.0a1734385115__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. pulumi_gcp/__init__.py +91 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
  3. pulumi_gcp/accesscontextmanager/outputs.py +18 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
  8. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
  9. pulumi_gcp/apigee/app_group.py +7 -7
  10. pulumi_gcp/applicationintegration/client.py +8 -6
  11. pulumi_gcp/artifactregistry/_inputs.py +24 -15
  12. pulumi_gcp/artifactregistry/outputs.py +32 -20
  13. pulumi_gcp/artifactregistry/repository.py +128 -0
  14. pulumi_gcp/assuredworkloads/workload.py +7 -7
  15. pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
  16. pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
  17. pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
  18. pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
  19. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
  20. pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
  21. pulumi_gcp/bigquery/app_profile.py +75 -0
  22. pulumi_gcp/billing/_inputs.py +6 -6
  23. pulumi_gcp/billing/outputs.py +4 -4
  24. pulumi_gcp/certificateauthority/_inputs.py +9 -9
  25. pulumi_gcp/certificateauthority/outputs.py +8 -8
  26. pulumi_gcp/cloudbuild/_inputs.py +53 -0
  27. pulumi_gcp/cloudbuild/outputs.py +50 -0
  28. pulumi_gcp/cloudbuild/worker_pool.py +47 -0
  29. pulumi_gcp/clouddeploy/_inputs.py +254 -0
  30. pulumi_gcp/clouddeploy/outputs.py +211 -0
  31. pulumi_gcp/clouddeploy/target.py +47 -0
  32. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
  33. pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
  34. pulumi_gcp/cloudrunv2/job.py +4 -4
  35. pulumi_gcp/cloudrunv2/service.py +4 -4
  36. pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
  37. pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
  38. pulumi_gcp/composer/user_workloads_config_map.py +14 -0
  39. pulumi_gcp/composer/user_workloads_secret.py +6 -0
  40. pulumi_gcp/compute/_inputs.py +566 -25
  41. pulumi_gcp/compute/disk.py +21 -7
  42. pulumi_gcp/compute/firewall_policy_rule.py +12 -0
  43. pulumi_gcp/compute/get_forwarding_rules.py +2 -2
  44. pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
  45. pulumi_gcp/compute/get_instance_group_manager.py +12 -1
  46. pulumi_gcp/compute/get_network.py +35 -1
  47. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  48. pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
  49. pulumi_gcp/compute/global_forwarding_rule.py +28 -0
  50. pulumi_gcp/compute/instance_group_manager.py +28 -0
  51. pulumi_gcp/compute/network.py +75 -0
  52. pulumi_gcp/compute/outputs.py +655 -26
  53. pulumi_gcp/compute/region_health_check.py +28 -0
  54. pulumi_gcp/compute/region_instance_group_manager.py +28 -0
  55. pulumi_gcp/compute/region_network_endpoint.py +28 -0
  56. pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
  57. pulumi_gcp/compute/subnetwork.py +30 -2
  58. pulumi_gcp/compute/url_map.py +7 -7
  59. pulumi_gcp/config/__init__.pyi +2 -0
  60. pulumi_gcp/config/vars.py +4 -0
  61. pulumi_gcp/container/_inputs.py +201 -3
  62. pulumi_gcp/container/cluster.py +68 -14
  63. pulumi_gcp/container/get_cluster.py +12 -1
  64. pulumi_gcp/container/outputs.py +249 -3
  65. pulumi_gcp/dataproc/_inputs.py +209 -1
  66. pulumi_gcp/dataproc/batch.py +76 -0
  67. pulumi_gcp/dataproc/outputs.py +169 -3
  68. pulumi_gcp/diagflow/_inputs.py +3 -3
  69. pulumi_gcp/diagflow/outputs.py +2 -2
  70. pulumi_gcp/discoveryengine/search_engine.py +7 -7
  71. pulumi_gcp/firebaserules/release.py +76 -0
  72. pulumi_gcp/firestore/field.py +4 -4
  73. pulumi_gcp/gemini/__init__.py +15 -0
  74. pulumi_gcp/gemini/_inputs.py +183 -0
  75. pulumi_gcp/gemini/code_repository_index.py +659 -0
  76. pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
  77. pulumi_gcp/gemini/outputs.py +130 -0
  78. pulumi_gcp/gemini/repository_group.py +586 -0
  79. pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
  80. pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
  81. pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
  82. pulumi_gcp/gkehub/_inputs.py +30 -10
  83. pulumi_gcp/gkehub/membership_binding.py +6 -6
  84. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  85. pulumi_gcp/gkehub/namespace.py +4 -4
  86. pulumi_gcp/gkehub/outputs.py +21 -7
  87. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  88. pulumi_gcp/iam/__init__.py +1 -0
  89. pulumi_gcp/iam/_inputs.py +137 -0
  90. pulumi_gcp/iam/folders_policy_binding.py +16 -0
  91. pulumi_gcp/iam/organizations_policy_binding.py +16 -0
  92. pulumi_gcp/iam/outputs.py +99 -0
  93. pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
  94. pulumi_gcp/iam/projects_policy_binding.py +917 -0
  95. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  96. pulumi_gcp/integrationconnectors/_inputs.py +15 -15
  97. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  98. pulumi_gcp/integrationconnectors/outputs.py +10 -10
  99. pulumi_gcp/monitoring/_inputs.py +13 -6
  100. pulumi_gcp/monitoring/outputs.py +10 -4
  101. pulumi_gcp/netapp/_inputs.py +3 -3
  102. pulumi_gcp/netapp/active_directory.py +7 -7
  103. pulumi_gcp/netapp/outputs.py +2 -2
  104. pulumi_gcp/netapp/volume.py +11 -11
  105. pulumi_gcp/networkconnectivity/spoke.py +10 -10
  106. pulumi_gcp/networksecurity/__init__.py +4 -0
  107. pulumi_gcp/networksecurity/_inputs.py +115 -0
  108. pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
  109. pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
  110. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
  111. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
  112. pulumi_gcp/networksecurity/outputs.py +70 -0
  113. pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
  114. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
  115. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
  116. pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
  117. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
  118. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
  119. pulumi_gcp/oracledatabase/outputs.py +21 -0
  120. pulumi_gcp/orgpolicy/policy.py +2 -2
  121. pulumi_gcp/parallelstore/instance.py +4 -0
  122. pulumi_gcp/provider.py +20 -0
  123. pulumi_gcp/pubsub/subscription.py +6 -6
  124. pulumi_gcp/pulumi-plugin.json +1 -1
  125. pulumi_gcp/redis/_inputs.py +435 -3
  126. pulumi_gcp/redis/cluster.py +287 -16
  127. pulumi_gcp/redis/outputs.py +304 -2
  128. pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
  129. pulumi_gcp/serviceaccount/get_account_key.py +2 -2
  130. pulumi_gcp/storage/get_bucket.py +2 -2
  131. pulumi_gcp/storage/get_bucket_object_content.py +2 -2
  132. pulumi_gcp/tpu/__init__.py +1 -0
  133. pulumi_gcp/tpu/_inputs.py +188 -6
  134. pulumi_gcp/tpu/outputs.py +164 -4
  135. pulumi_gcp/tpu/v2_queued_resource.py +434 -0
  136. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  137. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  138. pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
  139. {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +3 -3
  140. {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
  141. {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
  142. {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
@@ -253,7 +253,7 @@ class TunnelDestGroup(pulumi.CustomResource):
253
253
 
254
254
  dest_group = gcp.iap.TunnelDestGroup("dest_group",
255
255
  region="us-central1",
256
- group_name="testgroup_87786",
256
+ group_name="testgroup_2067",
257
257
  cidrs=[
258
258
  "10.1.0.0/16",
259
259
  "192.168.10.0/24",
@@ -339,7 +339,7 @@ class TunnelDestGroup(pulumi.CustomResource):
339
339
 
340
340
  dest_group = gcp.iap.TunnelDestGroup("dest_group",
341
341
  region="us-central1",
342
- group_name="testgroup_87786",
342
+ group_name="testgroup_2067",
343
343
  cidrs=[
344
344
  "10.1.0.0/16",
345
345
  "192.168.10.0/24",
@@ -319,7 +319,7 @@ if not MYPY:
319
319
  """
320
320
  encryption_key_value: NotRequired[pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgsDict']]
321
321
  """
322
- Encription key value of configVariable.
322
+ Encryption key value of configVariable.
323
323
  Structure is documented below.
324
324
  """
325
325
  integer_value: NotRequired[pulumi.Input[int]]
@@ -350,7 +350,7 @@ class ConnectionAuthConfigAdditionalVariableArgs:
350
350
  """
351
351
  :param pulumi.Input[str] key: Key for the configVariable
352
352
  :param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
353
- :param pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encription key value of configVariable.
353
+ :param pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
354
354
  Structure is documented below.
355
355
  :param pulumi.Input[int] integer_value: Integer Value of configVariable.
356
356
  :param pulumi.Input['ConnectionAuthConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
@@ -397,7 +397,7 @@ class ConnectionAuthConfigAdditionalVariableArgs:
397
397
  @pulumi.getter(name="encryptionKeyValue")
398
398
  def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs']]:
399
399
  """
400
- Encription key value of configVariable.
400
+ Encryption key value of configVariable.
401
401
  Structure is documented below.
402
402
  """
403
403
  return pulumi.get(self, "encryption_key_value")
@@ -1207,7 +1207,7 @@ if not MYPY:
1207
1207
  """
1208
1208
  encryption_key_value: NotRequired[pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgsDict']]
1209
1209
  """
1210
- Encription key value of configVariable.
1210
+ Encryption key value of configVariable.
1211
1211
  Structure is documented below.
1212
1212
  """
1213
1213
  integer_value: NotRequired[pulumi.Input[int]]
@@ -1238,7 +1238,7 @@ class ConnectionConfigVariableArgs:
1238
1238
  """
1239
1239
  :param pulumi.Input[str] key: Key for the configVariable
1240
1240
  :param pulumi.Input[bool] boolean_value: Boolean Value of configVariable
1241
- :param pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs'] encryption_key_value: Encription key value of configVariable.
1241
+ :param pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
1242
1242
  Structure is documented below.
1243
1243
  :param pulumi.Input[int] integer_value: Integer Value of configVariable
1244
1244
  :param pulumi.Input['ConnectionConfigVariableSecretValueArgs'] secret_value: Secret value of configVariable.
@@ -1285,7 +1285,7 @@ class ConnectionConfigVariableArgs:
1285
1285
  @pulumi.getter(name="encryptionKeyValue")
1286
1286
  def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs']]:
1287
1287
  """
1288
- Encription key value of configVariable.
1288
+ Encryption key value of configVariable.
1289
1289
  Structure is documented below.
1290
1290
  """
1291
1291
  return pulumi.get(self, "encryption_key_value")
@@ -1696,7 +1696,7 @@ if not MYPY:
1696
1696
  """
1697
1697
  encryption_key_value: NotRequired[pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgsDict']]
1698
1698
  """
1699
- Encription key value of configVariable.
1699
+ Encryption key value of configVariable.
1700
1700
  Structure is documented below.
1701
1701
  """
1702
1702
  integer_value: NotRequired[pulumi.Input[int]]
@@ -1727,7 +1727,7 @@ class ConnectionEventingConfigAdditionalVariableArgs:
1727
1727
  """
1728
1728
  :param pulumi.Input[str] key: Key for the configVariable
1729
1729
  :param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
1730
- :param pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encription key value of configVariable.
1730
+ :param pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
1731
1731
  Structure is documented below.
1732
1732
  :param pulumi.Input[int] integer_value: Integer Value of configVariable.
1733
1733
  :param pulumi.Input['ConnectionEventingConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
@@ -1774,7 +1774,7 @@ class ConnectionEventingConfigAdditionalVariableArgs:
1774
1774
  @pulumi.getter(name="encryptionKeyValue")
1775
1775
  def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs']]:
1776
1776
  """
1777
- Encription key value of configVariable.
1777
+ Encryption key value of configVariable.
1778
1778
  Structure is documented below.
1779
1779
  """
1780
1780
  return pulumi.get(self, "encryption_key_value")
@@ -2024,7 +2024,7 @@ if not MYPY:
2024
2024
  """
2025
2025
  encryption_key_value: NotRequired[pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgsDict']]
2026
2026
  """
2027
- Encription key value of configVariable.
2027
+ Encryption key value of configVariable.
2028
2028
  Structure is documented below.
2029
2029
  """
2030
2030
  integer_value: NotRequired[pulumi.Input[int]]
@@ -2055,7 +2055,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariableArgs:
2055
2055
  """
2056
2056
  :param pulumi.Input[str] key: Key for the configVariable
2057
2057
  :param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
2058
- :param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encription key value of configVariable.
2058
+ :param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
2059
2059
  Structure is documented below.
2060
2060
  :param pulumi.Input[int] integer_value: Integer Value of configVariable.
2061
2061
  :param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
@@ -2102,7 +2102,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariableArgs:
2102
2102
  @pulumi.getter(name="encryptionKeyValue")
2103
2103
  def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs']]:
2104
2104
  """
2105
- Encription key value of configVariable.
2105
+ Encryption key value of configVariable.
2106
2106
  Structure is documented below.
2107
2107
  """
2108
2108
  return pulumi.get(self, "encryption_key_value")
@@ -2954,7 +2954,7 @@ if not MYPY:
2954
2954
  """
2955
2955
  encryption_key_value: NotRequired[pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgsDict']]
2956
2956
  """
2957
- Encription key value of configVariable.
2957
+ Encryption key value of configVariable.
2958
2958
  Structure is documented below.
2959
2959
  """
2960
2960
  integer_value: NotRequired[pulumi.Input[int]]
@@ -2985,7 +2985,7 @@ class ConnectionSslConfigAdditionalVariableArgs:
2985
2985
  """
2986
2986
  :param pulumi.Input[str] key: Key for the configVariable
2987
2987
  :param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
2988
- :param pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encription key value of configVariable.
2988
+ :param pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
2989
2989
  Structure is documented below.
2990
2990
  :param pulumi.Input[int] integer_value: Integer Value of configVariable.
2991
2991
  :param pulumi.Input['ConnectionSslConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
@@ -3032,7 +3032,7 @@ class ConnectionSslConfigAdditionalVariableArgs:
3032
3032
  @pulumi.getter(name="encryptionKeyValue")
3033
3033
  def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs']]:
3034
3034
  """
3035
- Encription key value of configVariable.
3035
+ Encryption key value of configVariable.
3036
3036
  Structure is documented below.
3037
3037
  """
3038
3038
  return pulumi.get(self, "encryption_key_value")
@@ -378,8 +378,8 @@ class ManagedZone(pulumi.CustomResource):
378
378
  import pulumi_gcp as gcp
379
379
 
380
380
  target_project = gcp.organizations.Project("target_project",
381
- project_id="tf-test_2067",
382
- name="tf-test_40785",
381
+ project_id="tf-test_40785",
382
+ name="tf-test_79169",
383
383
  org_id="123456789",
384
384
  billing_account="000000-0000000-0000000-000000",
385
385
  deletion_policy="DELETE")
@@ -400,8 +400,8 @@ class ManagedZone(pulumi.CustomResource):
400
400
  auto_create_subnetworks=False,
401
401
  opts = pulumi.ResourceOptions(depends_on=[compute]))
402
402
  zone = gcp.dns.ManagedZone("zone",
403
- name="tf-test-dns_79169",
404
- dns_name="private_56529.example.com.",
403
+ name="tf-test-dns_56529",
404
+ dns_name="private_75413.example.com.",
405
405
  visibility="private",
406
406
  private_visibility_config={
407
407
  "networks": [{
@@ -489,8 +489,8 @@ class ManagedZone(pulumi.CustomResource):
489
489
  import pulumi_gcp as gcp
490
490
 
491
491
  target_project = gcp.organizations.Project("target_project",
492
- project_id="tf-test_2067",
493
- name="tf-test_40785",
492
+ project_id="tf-test_40785",
493
+ name="tf-test_79169",
494
494
  org_id="123456789",
495
495
  billing_account="000000-0000000-0000000-000000",
496
496
  deletion_policy="DELETE")
@@ -511,8 +511,8 @@ class ManagedZone(pulumi.CustomResource):
511
511
  auto_create_subnetworks=False,
512
512
  opts = pulumi.ResourceOptions(depends_on=[compute]))
513
513
  zone = gcp.dns.ManagedZone("zone",
514
- name="tf-test-dns_79169",
515
- dns_name="private_56529.example.com.",
514
+ name="tf-test-dns_56529",
515
+ dns_name="private_75413.example.com.",
516
516
  visibility="private",
517
517
  private_visibility_config={
518
518
  "networks": [{
@@ -250,7 +250,7 @@ class ConnectionAuthConfigAdditionalVariable(dict):
250
250
  """
251
251
  :param str key: Key for the configVariable
252
252
  :param bool boolean_value: Boolean Value of configVariable.
253
- :param 'ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encription key value of configVariable.
253
+ :param 'ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
254
254
  Structure is documented below.
255
255
  :param int integer_value: Integer Value of configVariable.
256
256
  :param 'ConnectionAuthConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
@@ -289,7 +289,7 @@ class ConnectionAuthConfigAdditionalVariable(dict):
289
289
  @pulumi.getter(name="encryptionKeyValue")
290
290
  def encryption_key_value(self) -> Optional['outputs.ConnectionAuthConfigAdditionalVariableEncryptionKeyValue']:
291
291
  """
292
- Encription key value of configVariable.
292
+ Encryption key value of configVariable.
293
293
  Structure is documented below.
294
294
  """
295
295
  return pulumi.get(self, "encryption_key_value")
@@ -1022,7 +1022,7 @@ class ConnectionConfigVariable(dict):
1022
1022
  """
1023
1023
  :param str key: Key for the configVariable
1024
1024
  :param bool boolean_value: Boolean Value of configVariable
1025
- :param 'ConnectionConfigVariableEncryptionKeyValueArgs' encryption_key_value: Encription key value of configVariable.
1025
+ :param 'ConnectionConfigVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
1026
1026
  Structure is documented below.
1027
1027
  :param int integer_value: Integer Value of configVariable
1028
1028
  :param 'ConnectionConfigVariableSecretValueArgs' secret_value: Secret value of configVariable.
@@ -1061,7 +1061,7 @@ class ConnectionConfigVariable(dict):
1061
1061
  @pulumi.getter(name="encryptionKeyValue")
1062
1062
  def encryption_key_value(self) -> Optional['outputs.ConnectionConfigVariableEncryptionKeyValue']:
1063
1063
  """
1064
- Encription key value of configVariable.
1064
+ Encryption key value of configVariable.
1065
1065
  Structure is documented below.
1066
1066
  """
1067
1067
  return pulumi.get(self, "encryption_key_value")
@@ -1430,7 +1430,7 @@ class ConnectionEventingConfigAdditionalVariable(dict):
1430
1430
  """
1431
1431
  :param str key: Key for the configVariable
1432
1432
  :param bool boolean_value: Boolean Value of configVariable.
1433
- :param 'ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encription key value of configVariable.
1433
+ :param 'ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
1434
1434
  Structure is documented below.
1435
1435
  :param int integer_value: Integer Value of configVariable.
1436
1436
  :param 'ConnectionEventingConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
@@ -1469,7 +1469,7 @@ class ConnectionEventingConfigAdditionalVariable(dict):
1469
1469
  @pulumi.getter(name="encryptionKeyValue")
1470
1470
  def encryption_key_value(self) -> Optional['outputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValue']:
1471
1471
  """
1472
- Encription key value of configVariable.
1472
+ Encryption key value of configVariable.
1473
1473
  Structure is documented below.
1474
1474
  """
1475
1475
  return pulumi.get(self, "encryption_key_value")
@@ -1708,7 +1708,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariable(dict):
1708
1708
  """
1709
1709
  :param str key: Key for the configVariable
1710
1710
  :param bool boolean_value: Boolean Value of configVariable.
1711
- :param 'ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encription key value of configVariable.
1711
+ :param 'ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
1712
1712
  Structure is documented below.
1713
1713
  :param int integer_value: Integer Value of configVariable.
1714
1714
  :param 'ConnectionEventingConfigAuthConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
@@ -1747,7 +1747,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariable(dict):
1747
1747
  @pulumi.getter(name="encryptionKeyValue")
1748
1748
  def encryption_key_value(self) -> Optional['outputs.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValue']:
1749
1749
  """
1750
- Encription key value of configVariable.
1750
+ Encryption key value of configVariable.
1751
1751
  Structure is documented below.
1752
1752
  """
1753
1753
  return pulumi.get(self, "encryption_key_value")
@@ -2427,7 +2427,7 @@ class ConnectionSslConfigAdditionalVariable(dict):
2427
2427
  """
2428
2428
  :param str key: Key for the configVariable
2429
2429
  :param bool boolean_value: Boolean Value of configVariable.
2430
- :param 'ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encription key value of configVariable.
2430
+ :param 'ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
2431
2431
  Structure is documented below.
2432
2432
  :param int integer_value: Integer Value of configVariable.
2433
2433
  :param 'ConnectionSslConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
@@ -2466,7 +2466,7 @@ class ConnectionSslConfigAdditionalVariable(dict):
2466
2466
  @pulumi.getter(name="encryptionKeyValue")
2467
2467
  def encryption_key_value(self) -> Optional['outputs.ConnectionSslConfigAdditionalVariableEncryptionKeyValue']:
2468
2468
  """
2469
- Encription key value of configVariable.
2469
+ Encryption key value of configVariable.
2470
2470
  Structure is documented below.
2471
2471
  """
2472
2472
  return pulumi.get(self, "encryption_key_value")
@@ -1419,9 +1419,8 @@ if not MYPY:
1419
1419
  in the future.
1420
1420
  This field is optional. If this field is not empty, then it must be a
1421
1421
  valid Prometheus label name.
1422
-
1423
- - - -
1424
1422
  """
1423
+ disable_metric_validation: NotRequired[pulumi.Input[bool]]
1425
1424
  duration: NotRequired[pulumi.Input[str]]
1426
1425
  """
1427
1426
  Alerts are considered firing once their PromQL expression evaluated
@@ -1464,6 +1463,7 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1464
1463
  def __init__(__self__, *,
1465
1464
  query: pulumi.Input[str],
1466
1465
  alert_rule: Optional[pulumi.Input[str]] = None,
1466
+ disable_metric_validation: Optional[pulumi.Input[bool]] = None,
1467
1467
  duration: Optional[pulumi.Input[str]] = None,
1468
1468
  evaluation_interval: Optional[pulumi.Input[str]] = None,
1469
1469
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1481,8 +1481,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1481
1481
  in the future.
1482
1482
  This field is optional. If this field is not empty, then it must be a
1483
1483
  valid Prometheus label name.
1484
-
1485
- - - -
1486
1484
  :param pulumi.Input[str] duration: Alerts are considered firing once their PromQL expression evaluated
1487
1485
  to be "true" for this long. Alerts whose PromQL expression was not
1488
1486
  evaluated to be "true" for long enough are considered pending. The
@@ -1509,6 +1507,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1509
1507
  pulumi.set(__self__, "query", query)
1510
1508
  if alert_rule is not None:
1511
1509
  pulumi.set(__self__, "alert_rule", alert_rule)
1510
+ if disable_metric_validation is not None:
1511
+ pulumi.set(__self__, "disable_metric_validation", disable_metric_validation)
1512
1512
  if duration is not None:
1513
1513
  pulumi.set(__self__, "duration", duration)
1514
1514
  if evaluation_interval is not None:
@@ -1545,8 +1545,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1545
1545
  in the future.
1546
1546
  This field is optional. If this field is not empty, then it must be a
1547
1547
  valid Prometheus label name.
1548
-
1549
- - - -
1550
1548
  """
1551
1549
  return pulumi.get(self, "alert_rule")
1552
1550
 
@@ -1554,6 +1552,15 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
1554
1552
  def alert_rule(self, value: Optional[pulumi.Input[str]]):
1555
1553
  pulumi.set(self, "alert_rule", value)
1556
1554
 
1555
+ @property
1556
+ @pulumi.getter(name="disableMetricValidation")
1557
+ def disable_metric_validation(self) -> Optional[pulumi.Input[bool]]:
1558
+ return pulumi.get(self, "disable_metric_validation")
1559
+
1560
+ @disable_metric_validation.setter
1561
+ def disable_metric_validation(self, value: Optional[pulumi.Input[bool]]):
1562
+ pulumi.set(self, "disable_metric_validation", value)
1563
+
1557
1564
  @property
1558
1565
  @pulumi.getter
1559
1566
  def duration(self) -> Optional[pulumi.Input[str]]:
@@ -1004,6 +1004,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1004
1004
  suggest = None
1005
1005
  if key == "alertRule":
1006
1006
  suggest = "alert_rule"
1007
+ elif key == "disableMetricValidation":
1008
+ suggest = "disable_metric_validation"
1007
1009
  elif key == "evaluationInterval":
1008
1010
  suggest = "evaluation_interval"
1009
1011
  elif key == "ruleGroup":
@@ -1023,6 +1025,7 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1023
1025
  def __init__(__self__, *,
1024
1026
  query: str,
1025
1027
  alert_rule: Optional[str] = None,
1028
+ disable_metric_validation: Optional[bool] = None,
1026
1029
  duration: Optional[str] = None,
1027
1030
  evaluation_interval: Optional[str] = None,
1028
1031
  labels: Optional[Mapping[str, str]] = None,
@@ -1040,8 +1043,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1040
1043
  in the future.
1041
1044
  This field is optional. If this field is not empty, then it must be a
1042
1045
  valid Prometheus label name.
1043
-
1044
- - - -
1045
1046
  :param str duration: Alerts are considered firing once their PromQL expression evaluated
1046
1047
  to be "true" for this long. Alerts whose PromQL expression was not
1047
1048
  evaluated to be "true" for long enough are considered pending. The
@@ -1068,6 +1069,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1068
1069
  pulumi.set(__self__, "query", query)
1069
1070
  if alert_rule is not None:
1070
1071
  pulumi.set(__self__, "alert_rule", alert_rule)
1072
+ if disable_metric_validation is not None:
1073
+ pulumi.set(__self__, "disable_metric_validation", disable_metric_validation)
1071
1074
  if duration is not None:
1072
1075
  pulumi.set(__self__, "duration", duration)
1073
1076
  if evaluation_interval is not None:
@@ -1100,11 +1103,14 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
1100
1103
  in the future.
1101
1104
  This field is optional. If this field is not empty, then it must be a
1102
1105
  valid Prometheus label name.
1103
-
1104
- - - -
1105
1106
  """
1106
1107
  return pulumi.get(self, "alert_rule")
1107
1108
 
1109
+ @property
1110
+ @pulumi.getter(name="disableMetricValidation")
1111
+ def disable_metric_validation(self) -> Optional[bool]:
1112
+ return pulumi.get(self, "disable_metric_validation")
1113
+
1108
1114
  @property
1109
1115
  @pulumi.getter
1110
1116
  def duration(self) -> Optional[str]:
@@ -163,7 +163,7 @@ if not MYPY:
163
163
  """
164
164
  allowed_clients: NotRequired[pulumi.Input[str]]
165
165
  """
166
- Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
166
+ Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
167
167
  """
168
168
  has_root_access: NotRequired[pulumi.Input[str]]
169
169
  """
@@ -221,7 +221,7 @@ class VolumeExportPolicyRuleArgs:
221
221
  """
222
222
  :param pulumi.Input[str] access_type: Defines the access type for clients matching the `allowedClients` specification.
223
223
  Possible values are: `READ_ONLY`, `READ_WRITE`, `READ_NONE`.
224
- :param pulumi.Input[str] allowed_clients: Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
224
+ :param pulumi.Input[str] allowed_clients: Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
225
225
  :param pulumi.Input[str] has_root_access: If enabled, the root user (UID = 0) of the specified clients doesn't get mapped to nobody (UID = 65534). This is also known as no_root_squash.
226
226
  :param pulumi.Input[bool] kerberos5_read_only: If enabled (true) the rule defines a read only access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode.
227
227
  :param pulumi.Input[bool] kerberos5_read_write: If enabled (true) the rule defines read and write access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode. The 'kerberos5ReadOnly' value is ignored if this is enabled.
@@ -272,7 +272,7 @@ class VolumeExportPolicyRuleArgs:
272
272
  @pulumi.getter(name="allowedClients")
273
273
  def allowed_clients(self) -> Optional[pulumi.Input[str]]:
274
274
  """
275
- Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
275
+ Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
276
276
  """
277
277
  return pulumi.get(self, "allowed_clients")
278
278
 
@@ -54,7 +54,7 @@ class ActiveDirectoryArgs:
54
54
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_operators: Domain user/group accounts to be added to the Backup Operators group of the SMB service. The Backup Operators group allows members to backup and restore files regardless of whether they have read or write access to the files. Comma-separated list.
55
55
  :param pulumi.Input[str] description: An optional description of this resource.
56
56
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
57
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
57
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
58
58
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
59
59
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
60
60
 
@@ -247,7 +247,7 @@ class ActiveDirectoryArgs:
247
247
  @pulumi.getter(name="kdcHostname")
248
248
  def kdc_hostname(self) -> Optional[pulumi.Input[str]]:
249
249
  """
250
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
250
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
251
251
  """
252
252
  return pulumi.get(self, "kdc_hostname")
253
253
 
@@ -414,7 +414,7 @@ class _ActiveDirectoryState:
414
414
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
415
415
  :param pulumi.Input[Mapping[str, pulumi.Input[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.
416
416
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
417
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
417
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
418
418
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
419
419
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
420
420
 
@@ -609,7 +609,7 @@ class _ActiveDirectoryState:
609
609
  @pulumi.getter(name="kdcHostname")
610
610
  def kdc_hostname(self) -> Optional[pulumi.Input[str]]:
611
611
  """
612
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
612
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
613
613
  """
614
614
  return pulumi.get(self, "kdc_hostname")
615
615
 
@@ -931,7 +931,7 @@ class ActiveDirectory(pulumi.CustomResource):
931
931
  :param pulumi.Input[str] dns: Comma separated list of DNS server IP addresses for the Active Directory domain.
932
932
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
933
933
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
934
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
934
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
935
935
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
936
936
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
937
937
 
@@ -1175,7 +1175,7 @@ class ActiveDirectory(pulumi.CustomResource):
1175
1175
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
1176
1176
  :param pulumi.Input[Mapping[str, pulumi.Input[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.
1177
1177
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
1178
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
1178
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
1179
1179
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
1180
1180
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
1181
1181
 
@@ -1313,7 +1313,7 @@ class ActiveDirectory(pulumi.CustomResource):
1313
1313
  @pulumi.getter(name="kdcHostname")
1314
1314
  def kdc_hostname(self) -> pulumi.Output[Optional[str]]:
1315
1315
  """
1316
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
1316
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
1317
1317
  """
1318
1318
  return pulumi.get(self, "kdc_hostname")
1319
1319
 
@@ -167,7 +167,7 @@ class VolumeExportPolicyRule(dict):
167
167
  """
168
168
  :param str access_type: Defines the access type for clients matching the `allowedClients` specification.
169
169
  Possible values are: `READ_ONLY`, `READ_WRITE`, `READ_NONE`.
170
- :param str allowed_clients: Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
170
+ :param str allowed_clients: Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
171
171
  :param str has_root_access: If enabled, the root user (UID = 0) of the specified clients doesn't get mapped to nobody (UID = 65534). This is also known as no_root_squash.
172
172
  :param bool kerberos5_read_only: If enabled (true) the rule defines a read only access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode.
173
173
  :param bool kerberos5_read_write: If enabled (true) the rule defines read and write access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode. The 'kerberos5ReadOnly' value is ignored if this is enabled.
@@ -214,7 +214,7 @@ class VolumeExportPolicyRule(dict):
214
214
  @pulumi.getter(name="allowedClients")
215
215
  def allowed_clients(self) -> Optional[str]:
216
216
  """
217
- Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
217
+ Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
218
218
  """
219
219
  return pulumi.get(self, "allowed_clients")
220
220
 
@@ -51,7 +51,7 @@ class VolumeArgs:
51
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] protocols: The protocol of the volume. Allowed combinations are `['NFSV3']`, `['NFSV4']`, `['SMB']`, `['NFSV3', 'NFSV4']`, `['SMB', 'NFSV3']` and `['SMB', 'NFSV4']`.
52
52
  Each value may be one of: `NFSV3`, `NFSV4`, `SMB`.
53
53
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
54
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
54
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
55
55
  :param pulumi.Input['VolumeBackupConfigArgs'] backup_config: Backup configuration for the volume.
56
56
  Structure is documented below.
57
57
  :param pulumi.Input[str] deletion_policy: Policy to determine if the volume should be deleted forcefully.
@@ -187,7 +187,7 @@ class VolumeArgs:
187
187
  @pulumi.getter(name="storagePool")
188
188
  def storage_pool(self) -> pulumi.Input[str]:
189
189
  """
190
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
190
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
191
191
  """
192
192
  return pulumi.get(self, "storage_pool")
193
193
 
@@ -528,7 +528,7 @@ class _VolumeState:
528
528
  :param pulumi.Input[str] security_style: Security Style of the Volume. Use UNIX to use UNIX or NFSV4 ACLs for file permissions.
529
529
  Use NTFS to use NTFS ACLs for file permissions. Can only be set for volumes which use SMB together with NFS as protocol.
530
530
  Possible values are: `NTFS`, `UNIX`.
531
- :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
531
+ :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
532
532
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
533
533
  :param pulumi.Input[Sequence[pulumi.Input[str]]] smb_settings: Settings for volumes with SMB access.
534
534
  Each value may be one of: `ENCRYPT_DATA`, `BROWSABLE`, `CHANGE_NOTIFY`, `NON_BROWSABLE`, `OPLOCKS`, `SHOW_SNAPSHOT`, `SHOW_PREVIOUS_VERSIONS`, `ACCESS_BASED_ENUMERATION`, `CONTINUOUSLY_AVAILABLE`.
@@ -538,7 +538,7 @@ class _VolumeState:
538
538
  Structure is documented below.
539
539
  :param pulumi.Input[str] state: State of the volume.
540
540
  :param pulumi.Input[str] state_details: State details of the volume.
541
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
541
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
542
542
  :param pulumi.Input['VolumeTieringPolicyArgs'] tiering_policy: Tiering policy for the volume.
543
543
  Structure is documented below.
544
544
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1000,7 +1000,7 @@ class _VolumeState:
1000
1000
  @pulumi.getter(name="serviceLevel")
1001
1001
  def service_level(self) -> Optional[pulumi.Input[str]]:
1002
1002
  """
1003
- Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1003
+ Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1004
1004
  """
1005
1005
  return pulumi.get(self, "service_level")
1006
1006
 
@@ -1087,7 +1087,7 @@ class _VolumeState:
1087
1087
  @pulumi.getter(name="storagePool")
1088
1088
  def storage_pool(self) -> Optional[pulumi.Input[str]]:
1089
1089
  """
1090
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1090
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1091
1091
  """
1092
1092
  return pulumi.get(self, "storage_pool")
1093
1093
 
@@ -1280,7 +1280,7 @@ class Volume(pulumi.CustomResource):
1280
1280
  :param pulumi.Input[Union['VolumeSnapshotPolicyArgs', 'VolumeSnapshotPolicyArgsDict']] snapshot_policy: Snapshot policy defines the schedule for automatic snapshot creation.
1281
1281
  To disable automatic snapshot creation you have to remove the whole snapshot_policy block.
1282
1282
  Structure is documented below.
1283
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1283
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1284
1284
  :param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
1285
1285
  Structure is documented below.
1286
1286
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1561,7 +1561,7 @@ class Volume(pulumi.CustomResource):
1561
1561
  :param pulumi.Input[str] security_style: Security Style of the Volume. Use UNIX to use UNIX or NFSV4 ACLs for file permissions.
1562
1562
  Use NTFS to use NTFS ACLs for file permissions. Can only be set for volumes which use SMB together with NFS as protocol.
1563
1563
  Possible values are: `NTFS`, `UNIX`.
1564
- :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1564
+ :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1565
1565
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
1566
1566
  :param pulumi.Input[Sequence[pulumi.Input[str]]] smb_settings: Settings for volumes with SMB access.
1567
1567
  Each value may be one of: `ENCRYPT_DATA`, `BROWSABLE`, `CHANGE_NOTIFY`, `NON_BROWSABLE`, `OPLOCKS`, `SHOW_SNAPSHOT`, `SHOW_PREVIOUS_VERSIONS`, `ACCESS_BASED_ENUMERATION`, `CONTINUOUSLY_AVAILABLE`.
@@ -1571,7 +1571,7 @@ class Volume(pulumi.CustomResource):
1571
1571
  Structure is documented below.
1572
1572
  :param pulumi.Input[str] state: State of the volume.
1573
1573
  :param pulumi.Input[str] state_details: State details of the volume.
1574
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1574
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1575
1575
  :param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
1576
1576
  Structure is documented below.
1577
1577
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1881,7 +1881,7 @@ class Volume(pulumi.CustomResource):
1881
1881
  @pulumi.getter(name="serviceLevel")
1882
1882
  def service_level(self) -> pulumi.Output[str]:
1883
1883
  """
1884
- Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1884
+ Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1885
1885
  """
1886
1886
  return pulumi.get(self, "service_level")
1887
1887
 
@@ -1940,7 +1940,7 @@ class Volume(pulumi.CustomResource):
1940
1940
  @pulumi.getter(name="storagePool")
1941
1941
  def storage_pool(self) -> pulumi.Output[str]:
1942
1942
  """
1943
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1943
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1944
1944
  """
1945
1945
  return pulumi.get(self, "storage_pool")
1946
1946