pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731584999__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 +0 -24
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
- pulumi_gcp/accesscontextmanager/outputs.py +36 -60
- pulumi_gcp/artifactregistry/_inputs.py +0 -56
- pulumi_gcp/artifactregistry/outputs.py +0 -65
- pulumi_gcp/artifactregistry/repository.py +0 -48
- pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
- pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
- pulumi_gcp/certificateauthority/authority.py +138 -28
- pulumi_gcp/cloudrun/service.py +10 -0
- pulumi_gcp/cloudrunv2/get_service.py +4 -15
- pulumi_gcp/cloudrunv2/service.py +2 -30
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -490
- pulumi_gcp/dataproc/outputs.py +0 -385
- pulumi_gcp/filestore/_inputs.py +0 -152
- pulumi_gcp/filestore/get_instance.py +1 -12
- pulumi_gcp/filestore/instance.py +0 -47
- pulumi_gcp/filestore/outputs.py +0 -229
- pulumi_gcp/iam/__init__.py +0 -2
- pulumi_gcp/iam/_inputs.py +0 -274
- pulumi_gcp/iam/outputs.py +0 -198
- pulumi_gcp/managedkafka/cluster.py +0 -4
- pulumi_gcp/managedkafka/topic.py +0 -4
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +0 -213
- pulumi_gcp/redis/cluster.py +0 -289
- pulumi_gcp/redis/outputs.py +0 -185
- pulumi_gcp/securesourcemanager/_inputs.py +0 -33
- pulumi_gcp/securesourcemanager/instance.py +3 -90
- pulumi_gcp/securesourcemanager/outputs.py +0 -19
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +0 -73
- pulumi_gcp/sql/database_instance.py +0 -60
- pulumi_gcp/sql/outputs.py +0 -146
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- pulumi_gcp/vertex/ai_endpoint.py +29 -22
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/RECORD +47 -52
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/WHEEL +1 -1
- pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
- pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
- pulumi_gcp/iam/folders_policy_binding.py +0 -917
- pulumi_gcp/iam/organizations_policy_binding.py +0 -901
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/top_level.txt +0 -0
pulumi_gcp/filestore/instance.py
CHANGED
@@ -31,7 +31,6 @@ 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,
|
35
34
|
project: Optional[pulumi.Input[str]] = None,
|
36
35
|
protocol: Optional[pulumi.Input[str]] = None,
|
37
36
|
zone: Optional[pulumi.Input[str]] = None):
|
@@ -54,7 +53,6 @@ class InstanceArgs:
|
|
54
53
|
resource.
|
55
54
|
:param pulumi.Input[str] location: The name of the location of the instance. This can be a region for ENTERPRISE tier instances.
|
56
55
|
: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.
|
58
56
|
: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
|
59
57
|
protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
|
60
58
|
"NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
|
@@ -77,8 +75,6 @@ class InstanceArgs:
|
|
77
75
|
pulumi.set(__self__, "location", location)
|
78
76
|
if name is not None:
|
79
77
|
pulumi.set(__self__, "name", name)
|
80
|
-
if performance_config is not None:
|
81
|
-
pulumi.set(__self__, "performance_config", performance_config)
|
82
78
|
if project is not None:
|
83
79
|
pulumi.set(__self__, "project", project)
|
84
80
|
if protocol is not None:
|
@@ -216,18 +212,6 @@ class InstanceArgs:
|
|
216
212
|
def name(self, value: Optional[pulumi.Input[str]]):
|
217
213
|
pulumi.set(self, "name", value)
|
218
214
|
|
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
|
-
|
231
215
|
@property
|
232
216
|
@pulumi.getter
|
233
217
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -280,7 +264,6 @@ class _InstanceState:
|
|
280
264
|
location: Optional[pulumi.Input[str]] = None,
|
281
265
|
name: Optional[pulumi.Input[str]] = None,
|
282
266
|
networks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]]] = None,
|
283
|
-
performance_config: Optional[pulumi.Input['InstancePerformanceConfigArgs']] = None,
|
284
267
|
project: Optional[pulumi.Input[str]] = None,
|
285
268
|
protocol: Optional[pulumi.Input[str]] = None,
|
286
269
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -307,7 +290,6 @@ class _InstanceState:
|
|
307
290
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]] networks: VPC networks to which the instance is connected. For this version,
|
308
291
|
only a single network is supported.
|
309
292
|
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.
|
311
293
|
: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
|
312
294
|
protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
|
313
295
|
"NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
|
@@ -341,8 +323,6 @@ class _InstanceState:
|
|
341
323
|
pulumi.set(__self__, "name", name)
|
342
324
|
if networks is not None:
|
343
325
|
pulumi.set(__self__, "networks", networks)
|
344
|
-
if performance_config is not None:
|
345
|
-
pulumi.set(__self__, "performance_config", performance_config)
|
346
326
|
if project is not None:
|
347
327
|
pulumi.set(__self__, "project", project)
|
348
328
|
if protocol is not None:
|
@@ -508,18 +488,6 @@ class _InstanceState:
|
|
508
488
|
def networks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceNetworkArgs']]]]):
|
509
489
|
pulumi.set(self, "networks", value)
|
510
490
|
|
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
|
-
|
523
491
|
@property
|
524
492
|
@pulumi.getter
|
525
493
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -597,7 +565,6 @@ class Instance(pulumi.CustomResource):
|
|
597
565
|
location: Optional[pulumi.Input[str]] = None,
|
598
566
|
name: Optional[pulumi.Input[str]] = None,
|
599
567
|
networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
|
600
|
-
performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
|
601
568
|
project: Optional[pulumi.Input[str]] = None,
|
602
569
|
protocol: Optional[pulumi.Input[str]] = None,
|
603
570
|
tier: Optional[pulumi.Input[str]] = None,
|
@@ -757,7 +724,6 @@ class Instance(pulumi.CustomResource):
|
|
757
724
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]] networks: VPC networks to which the instance is connected. For this version,
|
758
725
|
only a single network is supported.
|
759
726
|
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.
|
761
727
|
: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
|
762
728
|
protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
|
763
729
|
"NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
|
@@ -932,7 +898,6 @@ class Instance(pulumi.CustomResource):
|
|
932
898
|
location: Optional[pulumi.Input[str]] = None,
|
933
899
|
name: Optional[pulumi.Input[str]] = None,
|
934
900
|
networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
|
935
|
-
performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
|
936
901
|
project: Optional[pulumi.Input[str]] = None,
|
937
902
|
protocol: Optional[pulumi.Input[str]] = None,
|
938
903
|
tier: Optional[pulumi.Input[str]] = None,
|
@@ -959,7 +924,6 @@ class Instance(pulumi.CustomResource):
|
|
959
924
|
if networks is None and not opts.urn:
|
960
925
|
raise TypeError("Missing required property 'networks'")
|
961
926
|
__props__.__dict__["networks"] = networks
|
962
|
-
__props__.__dict__["performance_config"] = performance_config
|
963
927
|
__props__.__dict__["project"] = project
|
964
928
|
__props__.__dict__["protocol"] = protocol
|
965
929
|
if tier is None and not opts.urn:
|
@@ -994,7 +958,6 @@ class Instance(pulumi.CustomResource):
|
|
994
958
|
location: Optional[pulumi.Input[str]] = None,
|
995
959
|
name: Optional[pulumi.Input[str]] = None,
|
996
960
|
networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]]] = None,
|
997
|
-
performance_config: Optional[pulumi.Input[Union['InstancePerformanceConfigArgs', 'InstancePerformanceConfigArgsDict']]] = None,
|
998
961
|
project: Optional[pulumi.Input[str]] = None,
|
999
962
|
protocol: Optional[pulumi.Input[str]] = None,
|
1000
963
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1026,7 +989,6 @@ class Instance(pulumi.CustomResource):
|
|
1026
989
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceNetworkArgs', 'InstanceNetworkArgsDict']]]] networks: VPC networks to which the instance is connected. For this version,
|
1027
990
|
only a single network is supported.
|
1028
991
|
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.
|
1030
992
|
: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
|
1031
993
|
protocol. NFSv4.1 can be used with HIGH_SCALE_SSD, ZONAL, REGIONAL and ENTERPRISE. The default is NFSv3. Default value:
|
1032
994
|
"NFS_V3" Possible values: ["NFS_V3", "NFS_V4_1"]
|
@@ -1052,7 +1014,6 @@ class Instance(pulumi.CustomResource):
|
|
1052
1014
|
__props__.__dict__["location"] = location
|
1053
1015
|
__props__.__dict__["name"] = name
|
1054
1016
|
__props__.__dict__["networks"] = networks
|
1055
|
-
__props__.__dict__["performance_config"] = performance_config
|
1056
1017
|
__props__.__dict__["project"] = project
|
1057
1018
|
__props__.__dict__["protocol"] = protocol
|
1058
1019
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
@@ -1163,14 +1124,6 @@ class Instance(pulumi.CustomResource):
|
|
1163
1124
|
"""
|
1164
1125
|
return pulumi.get(self, "networks")
|
1165
1126
|
|
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
|
-
|
1174
1127
|
@property
|
1175
1128
|
@pulumi.getter
|
1176
1129
|
def project(self) -> pulumi.Output[str]:
|
pulumi_gcp/filestore/outputs.py
CHANGED
@@ -19,15 +19,9 @@ __all__ = [
|
|
19
19
|
'InstanceFileShares',
|
20
20
|
'InstanceFileSharesNfsExportOption',
|
21
21
|
'InstanceNetwork',
|
22
|
-
'InstancePerformanceConfig',
|
23
|
-
'InstancePerformanceConfigFixedIops',
|
24
|
-
'InstancePerformanceConfigIopsPerTb',
|
25
22
|
'GetInstanceFileShareResult',
|
26
23
|
'GetInstanceFileShareNfsExportOptionResult',
|
27
24
|
'GetInstanceNetworkResult',
|
28
|
-
'GetInstancePerformanceConfigResult',
|
29
|
-
'GetInstancePerformanceConfigFixedIopResult',
|
30
|
-
'GetInstancePerformanceConfigIopsPerTbResult',
|
31
25
|
]
|
32
26
|
|
33
27
|
@pulumi.output_type
|
@@ -336,148 +330,6 @@ class InstanceNetwork(dict):
|
|
336
330
|
return pulumi.get(self, "reserved_ip_range")
|
337
331
|
|
338
332
|
|
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
|
-
|
481
333
|
@pulumi.output_type
|
482
334
|
class GetInstanceFileShareResult(dict):
|
483
335
|
def __init__(__self__, *,
|
@@ -689,84 +541,3 @@ class GetInstanceNetworkResult(dict):
|
|
689
541
|
return pulumi.get(self, "reserved_ip_range")
|
690
542
|
|
691
543
|
|
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
|
-
|
pulumi_gcp/iam/__init__.py
CHANGED
@@ -7,12 +7,10 @@ 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 *
|
11
10
|
from .get_rule import *
|
12
11
|
from .get_testable_permissions import *
|
13
12
|
from .get_workload_identity_pool import *
|
14
13
|
from .get_workload_identity_pool_provider import *
|
15
|
-
from .organizations_policy_binding import *
|
16
14
|
from .principal_access_boundary_policy import *
|
17
15
|
from .workforce_pool import *
|
18
16
|
from .workforce_pool_provider import *
|