pulumi-gcp 8.9.3a1731934815__py3-none-any.whl → 8.10.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.
Files changed (51) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/accesscontextmanager/__init__.py +1 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +90 -54
  4. pulumi_gcp/accesscontextmanager/get_access_policy.py +158 -0
  5. pulumi_gcp/accesscontextmanager/outputs.py +60 -36
  6. pulumi_gcp/artifactregistry/_inputs.py +56 -0
  7. pulumi_gcp/artifactregistry/outputs.py +65 -0
  8. pulumi_gcp/artifactregistry/repository.py +48 -0
  9. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_vault.py +63 -0
  11. pulumi_gcp/backupdisasterrecovery/get_data_source.py +263 -0
  12. pulumi_gcp/backupdisasterrecovery/outputs.py +402 -0
  13. pulumi_gcp/certificateauthority/authority.py +28 -138
  14. pulumi_gcp/cloudrun/service.py +0 -10
  15. pulumi_gcp/cloudrunv2/get_service.py +15 -4
  16. pulumi_gcp/cloudrunv2/service.py +30 -2
  17. pulumi_gcp/compute/_inputs.py +12 -12
  18. pulumi_gcp/compute/outputs.py +10 -10
  19. pulumi_gcp/dataproc/__init__.py +1 -0
  20. pulumi_gcp/dataproc/_inputs.py +490 -0
  21. pulumi_gcp/dataproc/gdc_spark_application.py +1658 -0
  22. pulumi_gcp/dataproc/outputs.py +385 -0
  23. pulumi_gcp/filestore/_inputs.py +152 -0
  24. pulumi_gcp/filestore/get_instance.py +12 -1
  25. pulumi_gcp/filestore/instance.py +47 -0
  26. pulumi_gcp/filestore/outputs.py +229 -0
  27. pulumi_gcp/iam/__init__.py +2 -0
  28. pulumi_gcp/iam/_inputs.py +274 -0
  29. pulumi_gcp/iam/folders_policy_binding.py +917 -0
  30. pulumi_gcp/iam/organizations_policy_binding.py +901 -0
  31. pulumi_gcp/iam/outputs.py +198 -0
  32. pulumi_gcp/managedkafka/cluster.py +4 -0
  33. pulumi_gcp/managedkafka/topic.py +4 -0
  34. pulumi_gcp/pubsub/subscription.py +8 -8
  35. pulumi_gcp/pulumi-plugin.json +1 -1
  36. pulumi_gcp/redis/_inputs.py +213 -0
  37. pulumi_gcp/redis/cluster.py +289 -0
  38. pulumi_gcp/redis/outputs.py +185 -0
  39. pulumi_gcp/securesourcemanager/_inputs.py +33 -0
  40. pulumi_gcp/securesourcemanager/instance.py +90 -3
  41. pulumi_gcp/securesourcemanager/outputs.py +19 -0
  42. pulumi_gcp/spanner/database.py +14 -14
  43. pulumi_gcp/sql/_inputs.py +73 -0
  44. pulumi_gcp/sql/database_instance.py +60 -0
  45. pulumi_gcp/sql/outputs.py +146 -0
  46. pulumi_gcp/sql/user.py +2 -2
  47. pulumi_gcp/tags/location_tag_binding.py +8 -8
  48. {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/METADATA +5 -5
  49. {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/RECORD +51 -46
  50. {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/WHEEL +1 -1
  51. {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,7 @@ class InstanceArgs:
31
31
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
32
  location: Optional[pulumi.Input[str]] = None,
33
33
  name: Optional[pulumi.Input[str]] = None,
34
+ performance_config: Optional[pulumi.Input['InstancePerformanceConfigArgs']] = None,
34
35
  project: Optional[pulumi.Input[str]] = None,
35
36
  protocol: Optional[pulumi.Input[str]] = None,
36
37
  zone: Optional[pulumi.Input[str]] = None):
@@ -53,6 +54,7 @@ class InstanceArgs:
53
54
  resource.
54
55
  :param pulumi.Input[str] location: The name of the location of the instance. This can be a region for ENTERPRISE tier instances.
55
56
  :param pulumi.Input[str] name: The resource name of the instance.
57
+ :param pulumi.Input['InstancePerformanceConfigArgs'] performance_config: Performance configuration for the instance. If not provided, the default performance settings will be used.
56
58
  :param pulumi.Input[str] protocol: Either NFSv3, for using NFS version 3 as file sharing protocol, or NFSv4.1, for using NFS version 4.1 as file sharing
57
59
  protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
58
60
  "NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
@@ -75,6 +77,8 @@ class InstanceArgs:
75
77
  pulumi.set(__self__, "location", location)
76
78
  if name is not None:
77
79
  pulumi.set(__self__, "name", name)
80
+ if performance_config is not None:
81
+ pulumi.set(__self__, "performance_config", performance_config)
78
82
  if project is not None:
79
83
  pulumi.set(__self__, "project", project)
80
84
  if protocol is not None:
@@ -212,6 +216,18 @@ class InstanceArgs:
212
216
  def name(self, value: Optional[pulumi.Input[str]]):
213
217
  pulumi.set(self, "name", value)
214
218
 
219
+ @property
220
+ @pulumi.getter(name="performanceConfig")
221
+ def performance_config(self) -> Optional[pulumi.Input['InstancePerformanceConfigArgs']]:
222
+ """
223
+ Performance configuration for the instance. If not provided, the default performance settings will be used.
224
+ """
225
+ return pulumi.get(self, "performance_config")
226
+
227
+ @performance_config.setter
228
+ def performance_config(self, value: Optional[pulumi.Input['InstancePerformanceConfigArgs']]):
229
+ pulumi.set(self, "performance_config", value)
230
+
215
231
  @property
216
232
  @pulumi.getter
217
233
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -264,6 +280,7 @@ class _InstanceState:
264
280
  location: Optional[pulumi.Input[str]] = None,
265
281
  name: Optional[pulumi.Input[str]] = None,
266
282
  networks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]]] = None,
283
+ performance_config: Optional[pulumi.Input['InstancePerformanceConfigArgs']] = None,
267
284
  project: Optional[pulumi.Input[str]] = None,
268
285
  protocol: Optional[pulumi.Input[str]] = None,
269
286
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -290,6 +307,7 @@ class _InstanceState:
290
307
  :param pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]] networks: VPC networks to which the instance is connected. For this version,
291
308
  only a single network is supported.
292
309
  Structure is documented below.
310
+ :param pulumi.Input['InstancePerformanceConfigArgs'] performance_config: Performance configuration for the instance. If not provided, the default performance settings will be used.
293
311
  :param pulumi.Input[str] protocol: Either NFSv3, for using NFS version 3 as file sharing protocol, or NFSv4.1, for using NFS version 4.1 as file sharing
294
312
  protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
295
313
  "NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
@@ -323,6 +341,8 @@ class _InstanceState:
323
341
  pulumi.set(__self__, "name", name)
324
342
  if networks is not None:
325
343
  pulumi.set(__self__, "networks", networks)
344
+ if performance_config is not None:
345
+ pulumi.set(__self__, "performance_config", performance_config)
326
346
  if project is not None:
327
347
  pulumi.set(__self__, "project", project)
328
348
  if protocol is not None:
@@ -488,6 +508,18 @@ class _InstanceState:
488
508
  def networks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]]]):
489
509
  pulumi.set(self, "networks", value)
490
510
 
511
+ @property
512
+ @pulumi.getter(name="performanceConfig")
513
+ def performance_config(self) -> Optional[pulumi.Input['InstancePerformanceConfigArgs']]:
514
+ """
515
+ Performance configuration for the instance. If not provided, the default performance settings will be used.
516
+ """
517
+ return pulumi.get(self, "performance_config")
518
+
519
+ @performance_config.setter
520
+ def performance_config(self, value: Optional[pulumi.Input['InstancePerformanceConfigArgs']]):
521
+ pulumi.set(self, "performance_config", value)
522
+
491
523
  @property
492
524
  @pulumi.getter
493
525
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -565,6 +597,7 @@ class Instance(pulumi.CustomResource):
565
597
  location: Optional[pulumi.Input[str]] = None,
566
598
  name: Optional[pulumi.Input[str]] = None,
567
599
  networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
600
+ performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
568
601
  project: Optional[pulumi.Input[str]] = None,
569
602
  protocol: Optional[pulumi.Input[str]] = None,
570
603
  tier: Optional[pulumi.Input[str]] = None,
@@ -724,6 +757,7 @@ class Instance(pulumi.CustomResource):
724
757
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]] networks: VPC networks to which the instance is connected. For this version,
725
758
  only a single network is supported.
726
759
  Structure is documented below.
760
+ :param pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']] performance_config: Performance configuration for the instance. If not provided, the default performance settings will be used.
727
761
  :param pulumi.Input[str] protocol: Either NFSv3, for using NFS version 3 as file sharing protocol, or NFSv4.1, for using NFS version 4.1 as file sharing
728
762
  protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
729
763
  "NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
@@ -898,6 +932,7 @@ class Instance(pulumi.CustomResource):
898
932
  location: Optional[pulumi.Input[str]] = None,
899
933
  name: Optional[pulumi.Input[str]] = None,
900
934
  networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
935
+ performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
901
936
  project: Optional[pulumi.Input[str]] = None,
902
937
  protocol: Optional[pulumi.Input[str]] = None,
903
938
  tier: Optional[pulumi.Input[str]] = None,
@@ -924,6 +959,7 @@ class Instance(pulumi.CustomResource):
924
959
  if networks is None and not opts.urn:
925
960
  raise TypeError("Missing required property 'networks'")
926
961
  __props__.__dict__["networks"] = networks
962
+ __props__.__dict__["performance_config"] = performance_config
927
963
  __props__.__dict__["project"] = project
928
964
  __props__.__dict__["protocol"] = protocol
929
965
  if tier is None and not opts.urn:
@@ -958,6 +994,7 @@ class Instance(pulumi.CustomResource):
958
994
  location: Optional[pulumi.Input[str]] = None,
959
995
  name: Optional[pulumi.Input[str]] = None,
960
996
  networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
997
+ performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
961
998
  project: Optional[pulumi.Input[str]] = None,
962
999
  protocol: Optional[pulumi.Input[str]] = None,
963
1000
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -989,6 +1026,7 @@ class Instance(pulumi.CustomResource):
989
1026
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]] networks: VPC networks to which the instance is connected. For this version,
990
1027
  only a single network is supported.
991
1028
  Structure is documented below.
1029
+ :param pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']] performance_config: Performance configuration for the instance. If not provided, the default performance settings will be used.
992
1030
  :param pulumi.Input[str] protocol: Either NFSv3, for using NFS version 3 as file sharing protocol, or NFSv4.1, for using NFS version 4.1 as file sharing
993
1031
  protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
994
1032
  "NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
@@ -1014,6 +1052,7 @@ class Instance(pulumi.CustomResource):
1014
1052
  __props__.__dict__["location"] = location
1015
1053
  __props__.__dict__["name"] = name
1016
1054
  __props__.__dict__["networks"] = networks
1055
+ __props__.__dict__["performance_config"] = performance_config
1017
1056
  __props__.__dict__["project"] = project
1018
1057
  __props__.__dict__["protocol"] = protocol
1019
1058
  __props__.__dict__["pulumi_labels"] = pulumi_labels
@@ -1124,6 +1163,14 @@ class Instance(pulumi.CustomResource):
1124
1163
  """
1125
1164
  return pulumi.get(self, "networks")
1126
1165
 
1166
+ @property
1167
+ @pulumi.getter(name="performanceConfig")
1168
+ def performance_config(self) -> pulumi.Output[Optional['outputs.InstancePerformanceConfig']]:
1169
+ """
1170
+ Performance configuration for the instance. If not provided, the default performance settings will be used.
1171
+ """
1172
+ return pulumi.get(self, "performance_config")
1173
+
1127
1174
  @property
1128
1175
  @pulumi.getter
1129
1176
  def project(self) -> pulumi.Output[str]:
@@ -19,9 +19,15 @@ __all__ = [
19
19
  'InstanceFileShares',
20
20
  'InstanceFileSharesNfsExportOption',
21
21
  'InstanceNetwork',
22
+ 'InstancePerformanceConfig',
23
+ 'InstancePerformanceConfigFixedIops',
24
+ 'InstancePerformanceConfigIopsPerTb',
22
25
  'GetInstanceFileShareResult',
23
26
  'GetInstanceFileShareNfsExportOptionResult',
24
27
  'GetInstanceNetworkResult',
28
+ 'GetInstancePerformanceConfigResult',
29
+ 'GetInstancePerformanceConfigFixedIopResult',
30
+ 'GetInstancePerformanceConfigIopsPerTbResult',
25
31
  ]
26
32
 
27
33
  @pulumi.output_type
@@ -330,6 +336,148 @@ class InstanceNetwork(dict):
330
336
  return pulumi.get(self, "reserved_ip_range")
331
337
 
332
338
 
339
+ @pulumi.output_type
340
+ class InstancePerformanceConfig(dict):
341
+ @staticmethod
342
+ def __key_warning(key: str):
343
+ suggest = None
344
+ if key == "fixedIops":
345
+ suggest = "fixed_iops"
346
+ elif key == "iopsPerTb":
347
+ suggest = "iops_per_tb"
348
+
349
+ if suggest:
350
+ pulumi.log.warn(f"Key '{key}' not found in InstancePerformanceConfig. Access the value via the '{suggest}' property getter instead.")
351
+
352
+ def __getitem__(self, key: str) -> Any:
353
+ InstancePerformanceConfig.__key_warning(key)
354
+ return super().__getitem__(key)
355
+
356
+ def get(self, key: str, default = None) -> Any:
357
+ InstancePerformanceConfig.__key_warning(key)
358
+ return super().get(key, default)
359
+
360
+ def __init__(__self__, *,
361
+ fixed_iops: Optional['outputs.InstancePerformanceConfigFixedIops'] = None,
362
+ iops_per_tb: Optional['outputs.InstancePerformanceConfigIopsPerTb'] = None):
363
+ """
364
+ :param 'InstancePerformanceConfigFixedIopsArgs' fixed_iops: The instance will have a fixed provisioned IOPS value,
365
+ which will remain constant regardless of instance
366
+ capacity.
367
+ Structure is documented below.
368
+ :param 'InstancePerformanceConfigIopsPerTbArgs' iops_per_tb: The instance provisioned IOPS will change dynamically
369
+ based on the capacity of the instance.
370
+ Structure is documented below.
371
+ """
372
+ if fixed_iops is not None:
373
+ pulumi.set(__self__, "fixed_iops", fixed_iops)
374
+ if iops_per_tb is not None:
375
+ pulumi.set(__self__, "iops_per_tb", iops_per_tb)
376
+
377
+ @property
378
+ @pulumi.getter(name="fixedIops")
379
+ def fixed_iops(self) -> Optional['outputs.InstancePerformanceConfigFixedIops']:
380
+ """
381
+ The instance will have a fixed provisioned IOPS value,
382
+ which will remain constant regardless of instance
383
+ capacity.
384
+ Structure is documented below.
385
+ """
386
+ return pulumi.get(self, "fixed_iops")
387
+
388
+ @property
389
+ @pulumi.getter(name="iopsPerTb")
390
+ def iops_per_tb(self) -> Optional['outputs.InstancePerformanceConfigIopsPerTb']:
391
+ """
392
+ The instance provisioned IOPS will change dynamically
393
+ based on the capacity of the instance.
394
+ Structure is documented below.
395
+ """
396
+ return pulumi.get(self, "iops_per_tb")
397
+
398
+
399
+ @pulumi.output_type
400
+ class InstancePerformanceConfigFixedIops(dict):
401
+ @staticmethod
402
+ def __key_warning(key: str):
403
+ suggest = None
404
+ if key == "maxIops":
405
+ suggest = "max_iops"
406
+
407
+ if suggest:
408
+ pulumi.log.warn(f"Key '{key}' not found in InstancePerformanceConfigFixedIops. Access the value via the '{suggest}' property getter instead.")
409
+
410
+ def __getitem__(self, key: str) -> Any:
411
+ InstancePerformanceConfigFixedIops.__key_warning(key)
412
+ return super().__getitem__(key)
413
+
414
+ def get(self, key: str, default = None) -> Any:
415
+ InstancePerformanceConfigFixedIops.__key_warning(key)
416
+ return super().get(key, default)
417
+
418
+ def __init__(__self__, *,
419
+ max_iops: Optional[int] = None):
420
+ """
421
+ :param int max_iops: The number of IOPS to provision for the instance.
422
+ max_iops must be in multiple of 1000.
423
+ """
424
+ if max_iops is not None:
425
+ pulumi.set(__self__, "max_iops", max_iops)
426
+
427
+ @property
428
+ @pulumi.getter(name="maxIops")
429
+ def max_iops(self) -> Optional[int]:
430
+ """
431
+ The number of IOPS to provision for the instance.
432
+ max_iops must be in multiple of 1000.
433
+ """
434
+ return pulumi.get(self, "max_iops")
435
+
436
+
437
+ @pulumi.output_type
438
+ class InstancePerformanceConfigIopsPerTb(dict):
439
+ @staticmethod
440
+ def __key_warning(key: str):
441
+ suggest = None
442
+ if key == "maxIopsPerTb":
443
+ suggest = "max_iops_per_tb"
444
+
445
+ if suggest:
446
+ pulumi.log.warn(f"Key '{key}' not found in InstancePerformanceConfigIopsPerTb. Access the value via the '{suggest}' property getter instead.")
447
+
448
+ def __getitem__(self, key: str) -> Any:
449
+ InstancePerformanceConfigIopsPerTb.__key_warning(key)
450
+ return super().__getitem__(key)
451
+
452
+ def get(self, key: str, default = None) -> Any:
453
+ InstancePerformanceConfigIopsPerTb.__key_warning(key)
454
+ return super().get(key, default)
455
+
456
+ def __init__(__self__, *,
457
+ max_iops_per_tb: Optional[int] = None):
458
+ """
459
+ :param int max_iops_per_tb: The instance max IOPS will be calculated by multiplying
460
+ the capacity of the instance (TB) by max_iops_per_tb,
461
+ and rounding to the nearest 1000. The instance max IOPS
462
+ will be changed dynamically based on the instance
463
+ capacity.
464
+ """
465
+ if max_iops_per_tb is not None:
466
+ pulumi.set(__self__, "max_iops_per_tb", max_iops_per_tb)
467
+
468
+ @property
469
+ @pulumi.getter(name="maxIopsPerTb")
470
+ def max_iops_per_tb(self) -> Optional[int]:
471
+ """
472
+ The instance max IOPS will be calculated by multiplying
473
+ the capacity of the instance (TB) by max_iops_per_tb,
474
+ and rounding to the nearest 1000. The instance max IOPS
475
+ will be changed dynamically based on the instance
476
+ capacity.
477
+ """
478
+ return pulumi.get(self, "max_iops_per_tb")
479
+
480
+
333
481
  @pulumi.output_type
334
482
  class GetInstanceFileShareResult(dict):
335
483
  def __init__(__self__, *,
@@ -541,3 +689,84 @@ class GetInstanceNetworkResult(dict):
541
689
  return pulumi.get(self, "reserved_ip_range")
542
690
 
543
691
 
692
+ @pulumi.output_type
693
+ class GetInstancePerformanceConfigResult(dict):
694
+ def __init__(__self__, *,
695
+ fixed_iops: Sequence['outputs.GetInstancePerformanceConfigFixedIopResult'],
696
+ iops_per_tbs: Sequence['outputs.GetInstancePerformanceConfigIopsPerTbResult']):
697
+ """
698
+ :param Sequence['GetInstancePerformanceConfigFixedIopArgs'] fixed_iops: The instance will have a fixed provisioned IOPS value,
699
+ which will remain constant regardless of instance
700
+ capacity.
701
+ :param Sequence['GetInstancePerformanceConfigIopsPerTbArgs'] iops_per_tbs: The instance provisioned IOPS will change dynamically
702
+ based on the capacity of the instance.
703
+ """
704
+ pulumi.set(__self__, "fixed_iops", fixed_iops)
705
+ pulumi.set(__self__, "iops_per_tbs", iops_per_tbs)
706
+
707
+ @property
708
+ @pulumi.getter(name="fixedIops")
709
+ def fixed_iops(self) -> Sequence['outputs.GetInstancePerformanceConfigFixedIopResult']:
710
+ """
711
+ The instance will have a fixed provisioned IOPS value,
712
+ which will remain constant regardless of instance
713
+ capacity.
714
+ """
715
+ return pulumi.get(self, "fixed_iops")
716
+
717
+ @property
718
+ @pulumi.getter(name="iopsPerTbs")
719
+ def iops_per_tbs(self) -> Sequence['outputs.GetInstancePerformanceConfigIopsPerTbResult']:
720
+ """
721
+ The instance provisioned IOPS will change dynamically
722
+ based on the capacity of the instance.
723
+ """
724
+ return pulumi.get(self, "iops_per_tbs")
725
+
726
+
727
+ @pulumi.output_type
728
+ class GetInstancePerformanceConfigFixedIopResult(dict):
729
+ def __init__(__self__, *,
730
+ max_iops: int):
731
+ """
732
+ :param int max_iops: The number of IOPS to provision for the instance.
733
+ max_iops must be in multiple of 1000.
734
+ """
735
+ pulumi.set(__self__, "max_iops", max_iops)
736
+
737
+ @property
738
+ @pulumi.getter(name="maxIops")
739
+ def max_iops(self) -> int:
740
+ """
741
+ The number of IOPS to provision for the instance.
742
+ max_iops must be in multiple of 1000.
743
+ """
744
+ return pulumi.get(self, "max_iops")
745
+
746
+
747
+ @pulumi.output_type
748
+ class GetInstancePerformanceConfigIopsPerTbResult(dict):
749
+ def __init__(__self__, *,
750
+ max_iops_per_tb: int):
751
+ """
752
+ :param int max_iops_per_tb: The instance max IOPS will be calculated by multiplying
753
+ the capacity of the instance (TB) by max_iops_per_tb,
754
+ and rounding to the nearest 1000. The instance max IOPS
755
+ will be changed dynamically based on the instance
756
+ capacity.
757
+ """
758
+ pulumi.set(__self__, "max_iops_per_tb", max_iops_per_tb)
759
+
760
+ @property
761
+ @pulumi.getter(name="maxIopsPerTb")
762
+ def max_iops_per_tb(self) -> int:
763
+ """
764
+ The instance max IOPS will be calculated by multiplying
765
+ the capacity of the instance (TB) by max_iops_per_tb,
766
+ and rounding to the nearest 1000. The instance max IOPS
767
+ will be changed dynamically based on the instance
768
+ capacity.
769
+ """
770
+ return pulumi.get(self, "max_iops_per_tb")
771
+
772
+
@@ -7,10 +7,12 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .access_boundary_policy import *
9
9
  from .deny_policy import *
10
+ from .folders_policy_binding import *
10
11
  from .get_rule import *
11
12
  from .get_testable_permissions import *
12
13
  from .get_workload_identity_pool import *
13
14
  from .get_workload_identity_pool_provider import *
15
+ from .organizations_policy_binding import *
14
16
  from .principal_access_boundary_policy import *
15
17
  from .workforce_pool import *
16
18
  from .workforce_pool_provider import *