pulumi-gcp 8.5.0__py3-none-any.whl → 8.5.0a1727969630__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/assuredworkloads/workload.py +7 -7
- pulumi_gcp/bigtable/gc_policy.py +0 -7
- pulumi_gcp/compute/_inputs.py +15 -299
- pulumi_gcp/compute/backend_service.py +7 -111
- pulumi_gcp/compute/get_backend_service.py +1 -11
- pulumi_gcp/compute/network.py +0 -236
- pulumi_gcp/compute/outputs.py +14 -399
- pulumi_gcp/compute/region_backend_service.py +7 -115
- pulumi_gcp/compute/route.py +0 -92
- pulumi_gcp/compute/subnetwork.py +2 -2
- pulumi_gcp/container/_inputs.py +0 -94
- pulumi_gcp/container/aws_node_pool.py +0 -59
- pulumi_gcp/container/outputs.py +0 -79
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -1394
- pulumi_gcp/dataproc/outputs.py +0 -1127
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/healthcare/__init__.py +0 -1
- pulumi_gcp/healthcare/_inputs.py +0 -538
- pulumi_gcp/healthcare/outputs.py +0 -467
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/logging/log_scope.py +7 -7
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +1 -333
- pulumi_gcp/pubsub/outputs.py +2 -410
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +0 -44
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/repository.py +2 -0
- pulumi_gcp/securityposture/posture.py +2 -0
- pulumi_gcp/securityposture/posture_deployment.py +2 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +2 -0
- pulumi_gcp/siteverification/__init__.py +0 -1
- pulumi_gcp/sourcerepo/get_repository.py +1 -11
- pulumi_gcp/sourcerepo/repository.py +0 -47
- pulumi_gcp/tags/tag_key.py +7 -7
- pulumi_gcp/tags/tag_value.py +7 -7
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/RECORD +49 -52
- pulumi_gcp/dataproc/batch.py +0 -1514
- pulumi_gcp/healthcare/pipeline_job.py +0 -1233
- pulumi_gcp/siteverification/owner.py +0 -398
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,6 @@ class AwsNodePoolArgs:
|
|
29
29
|
subnet_id: pulumi.Input[str],
|
30
30
|
version: pulumi.Input[str],
|
31
31
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
-
kubelet_config: Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']] = None,
|
33
32
|
management: Optional[pulumi.Input['AwsNodePoolManagementArgs']] = None,
|
34
33
|
name: Optional[pulumi.Input[str]] = None,
|
35
34
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -49,7 +48,6 @@ class AwsNodePoolArgs:
|
|
49
48
|
alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between. **Note**: This field is
|
50
49
|
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
51
50
|
`effective_annotations` for all of the annotations present on the resource.
|
52
|
-
:param pulumi.Input['AwsNodePoolKubeletConfigArgs'] kubelet_config: The kubelet configuration for the node pool.
|
53
51
|
:param pulumi.Input['AwsNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
54
52
|
:param pulumi.Input[str] name: The name of this resource.
|
55
53
|
:param pulumi.Input[str] project: The project for the resource
|
@@ -64,8 +62,6 @@ class AwsNodePoolArgs:
|
|
64
62
|
pulumi.set(__self__, "version", version)
|
65
63
|
if annotations is not None:
|
66
64
|
pulumi.set(__self__, "annotations", annotations)
|
67
|
-
if kubelet_config is not None:
|
68
|
-
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
69
65
|
if management is not None:
|
70
66
|
pulumi.set(__self__, "management", management)
|
71
67
|
if name is not None:
|
@@ -176,18 +172,6 @@ class AwsNodePoolArgs:
|
|
176
172
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
177
173
|
pulumi.set(self, "annotations", value)
|
178
174
|
|
179
|
-
@property
|
180
|
-
@pulumi.getter(name="kubeletConfig")
|
181
|
-
def kubelet_config(self) -> Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']]:
|
182
|
-
"""
|
183
|
-
The kubelet configuration for the node pool.
|
184
|
-
"""
|
185
|
-
return pulumi.get(self, "kubelet_config")
|
186
|
-
|
187
|
-
@kubelet_config.setter
|
188
|
-
def kubelet_config(self, value: Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']]):
|
189
|
-
pulumi.set(self, "kubelet_config", value)
|
190
|
-
|
191
175
|
@property
|
192
176
|
@pulumi.getter
|
193
177
|
def management(self) -> Optional[pulumi.Input['AwsNodePoolManagementArgs']]:
|
@@ -247,7 +231,6 @@ class _AwsNodePoolState:
|
|
247
231
|
create_time: Optional[pulumi.Input[str]] = None,
|
248
232
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
249
233
|
etag: Optional[pulumi.Input[str]] = None,
|
250
|
-
kubelet_config: Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']] = None,
|
251
234
|
location: Optional[pulumi.Input[str]] = None,
|
252
235
|
management: Optional[pulumi.Input['AwsNodePoolManagementArgs']] = None,
|
253
236
|
max_pods_constraint: Optional[pulumi.Input['AwsNodePoolMaxPodsConstraintArgs']] = None,
|
@@ -273,7 +256,6 @@ class _AwsNodePoolState:
|
|
273
256
|
:param pulumi.Input['AwsNodePoolConfigArgs'] config: The configuration of the node pool.
|
274
257
|
:param pulumi.Input[str] create_time: Output only. The time at which this node pool was created.
|
275
258
|
:param pulumi.Input[str] etag: Allows clients to perform consistent read-modify-writes through optimistic concurrency control. May be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
276
|
-
:param pulumi.Input['AwsNodePoolKubeletConfigArgs'] kubelet_config: The kubelet configuration for the node pool.
|
277
259
|
:param pulumi.Input[str] location: The location for the resource
|
278
260
|
:param pulumi.Input['AwsNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
279
261
|
:param pulumi.Input['AwsNodePoolMaxPodsConstraintArgs'] max_pods_constraint: The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.
|
@@ -301,8 +283,6 @@ class _AwsNodePoolState:
|
|
301
283
|
pulumi.set(__self__, "effective_annotations", effective_annotations)
|
302
284
|
if etag is not None:
|
303
285
|
pulumi.set(__self__, "etag", etag)
|
304
|
-
if kubelet_config is not None:
|
305
|
-
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
306
286
|
if location is not None:
|
307
287
|
pulumi.set(__self__, "location", location)
|
308
288
|
if management is not None:
|
@@ -414,18 +394,6 @@ class _AwsNodePoolState:
|
|
414
394
|
def etag(self, value: Optional[pulumi.Input[str]]):
|
415
395
|
pulumi.set(self, "etag", value)
|
416
396
|
|
417
|
-
@property
|
418
|
-
@pulumi.getter(name="kubeletConfig")
|
419
|
-
def kubelet_config(self) -> Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']]:
|
420
|
-
"""
|
421
|
-
The kubelet configuration for the node pool.
|
422
|
-
"""
|
423
|
-
return pulumi.get(self, "kubelet_config")
|
424
|
-
|
425
|
-
@kubelet_config.setter
|
426
|
-
def kubelet_config(self, value: Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']]):
|
427
|
-
pulumi.set(self, "kubelet_config", value)
|
428
|
-
|
429
397
|
@property
|
430
398
|
@pulumi.getter
|
431
399
|
def location(self) -> Optional[pulumi.Input[str]]:
|
@@ -580,7 +548,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
580
548
|
autoscaling: Optional[pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']]] = None,
|
581
549
|
cluster: Optional[pulumi.Input[str]] = None,
|
582
550
|
config: Optional[pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']]] = None,
|
583
|
-
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
584
551
|
location: Optional[pulumi.Input[str]] = None,
|
585
552
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
586
553
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -717,12 +684,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
717
684
|
management={
|
718
685
|
"auto_repair": True,
|
719
686
|
},
|
720
|
-
kubelet_config={
|
721
|
-
"cpu_manager_policy": "none",
|
722
|
-
"cpu_cfs_quota": True,
|
723
|
-
"cpu_cfs_quota_period": "100ms",
|
724
|
-
"pod_pids_limit": 1024,
|
725
|
-
},
|
726
687
|
project="my-project-name")
|
727
688
|
```
|
728
689
|
### Basic_enum_aws_cluster
|
@@ -1003,7 +964,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1003
964
|
:param pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']] autoscaling: Autoscaler configuration for this node pool.
|
1004
965
|
:param pulumi.Input[str] cluster: The awsCluster for the resource
|
1005
966
|
:param pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']] config: The configuration of the node pool.
|
1006
|
-
:param pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']] kubelet_config: The kubelet configuration for the node pool.
|
1007
967
|
:param pulumi.Input[str] location: The location for the resource
|
1008
968
|
:param pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']] management: The Management configuration for this node pool.
|
1009
969
|
:param pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']] max_pods_constraint: The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.
|
@@ -1146,12 +1106,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1146
1106
|
management={
|
1147
1107
|
"auto_repair": True,
|
1148
1108
|
},
|
1149
|
-
kubelet_config={
|
1150
|
-
"cpu_manager_policy": "none",
|
1151
|
-
"cpu_cfs_quota": True,
|
1152
|
-
"cpu_cfs_quota_period": "100ms",
|
1153
|
-
"pod_pids_limit": 1024,
|
1154
|
-
},
|
1155
1109
|
project="my-project-name")
|
1156
1110
|
```
|
1157
1111
|
### Basic_enum_aws_cluster
|
@@ -1440,7 +1394,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1440
1394
|
autoscaling: Optional[pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']]] = None,
|
1441
1395
|
cluster: Optional[pulumi.Input[str]] = None,
|
1442
1396
|
config: Optional[pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']]] = None,
|
1443
|
-
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
1444
1397
|
location: Optional[pulumi.Input[str]] = None,
|
1445
1398
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
1446
1399
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -1468,7 +1421,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1468
1421
|
if config is None and not opts.urn:
|
1469
1422
|
raise TypeError("Missing required property 'config'")
|
1470
1423
|
__props__.__dict__["config"] = config
|
1471
|
-
__props__.__dict__["kubelet_config"] = kubelet_config
|
1472
1424
|
if location is None and not opts.urn:
|
1473
1425
|
raise TypeError("Missing required property 'location'")
|
1474
1426
|
__props__.__dict__["location"] = location
|
@@ -1509,7 +1461,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1509
1461
|
create_time: Optional[pulumi.Input[str]] = None,
|
1510
1462
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1511
1463
|
etag: Optional[pulumi.Input[str]] = None,
|
1512
|
-
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
1513
1464
|
location: Optional[pulumi.Input[str]] = None,
|
1514
1465
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
1515
1466
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -1540,7 +1491,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1540
1491
|
:param pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']] config: The configuration of the node pool.
|
1541
1492
|
:param pulumi.Input[str] create_time: Output only. The time at which this node pool was created.
|
1542
1493
|
:param pulumi.Input[str] etag: Allows clients to perform consistent read-modify-writes through optimistic concurrency control. May be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
1543
|
-
:param pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']] kubelet_config: The kubelet configuration for the node pool.
|
1544
1494
|
:param pulumi.Input[str] location: The location for the resource
|
1545
1495
|
:param pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']] management: The Management configuration for this node pool.
|
1546
1496
|
:param pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']] max_pods_constraint: The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.
|
@@ -1565,7 +1515,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1565
1515
|
__props__.__dict__["create_time"] = create_time
|
1566
1516
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
1567
1517
|
__props__.__dict__["etag"] = etag
|
1568
|
-
__props__.__dict__["kubelet_config"] = kubelet_config
|
1569
1518
|
__props__.__dict__["location"] = location
|
1570
1519
|
__props__.__dict__["management"] = management
|
1571
1520
|
__props__.__dict__["max_pods_constraint"] = max_pods_constraint
|
@@ -1638,14 +1587,6 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1638
1587
|
"""
|
1639
1588
|
return pulumi.get(self, "etag")
|
1640
1589
|
|
1641
|
-
@property
|
1642
|
-
@pulumi.getter(name="kubeletConfig")
|
1643
|
-
def kubelet_config(self) -> pulumi.Output['outputs.AwsNodePoolKubeletConfig']:
|
1644
|
-
"""
|
1645
|
-
The kubelet configuration for the node pool.
|
1646
|
-
"""
|
1647
|
-
return pulumi.get(self, "kubelet_config")
|
1648
|
-
|
1649
1590
|
@property
|
1650
1591
|
@pulumi.getter
|
1651
1592
|
def location(self) -> pulumi.Output[str]:
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -57,7 +57,6 @@ __all__ = [
|
|
57
57
|
'AwsNodePoolConfigSpotConfig',
|
58
58
|
'AwsNodePoolConfigSshConfig',
|
59
59
|
'AwsNodePoolConfigTaint',
|
60
|
-
'AwsNodePoolKubeletConfig',
|
61
60
|
'AwsNodePoolManagement',
|
62
61
|
'AwsNodePoolMaxPodsConstraint',
|
63
62
|
'AwsNodePoolUpdateSettings',
|
@@ -2509,84 +2508,6 @@ class AwsNodePoolConfigTaint(dict):
|
|
2509
2508
|
return pulumi.get(self, "value")
|
2510
2509
|
|
2511
2510
|
|
2512
|
-
@pulumi.output_type
|
2513
|
-
class AwsNodePoolKubeletConfig(dict):
|
2514
|
-
@staticmethod
|
2515
|
-
def __key_warning(key: str):
|
2516
|
-
suggest = None
|
2517
|
-
if key == "cpuCfsQuota":
|
2518
|
-
suggest = "cpu_cfs_quota"
|
2519
|
-
elif key == "cpuCfsQuotaPeriod":
|
2520
|
-
suggest = "cpu_cfs_quota_period"
|
2521
|
-
elif key == "cpuManagerPolicy":
|
2522
|
-
suggest = "cpu_manager_policy"
|
2523
|
-
elif key == "podPidsLimit":
|
2524
|
-
suggest = "pod_pids_limit"
|
2525
|
-
|
2526
|
-
if suggest:
|
2527
|
-
pulumi.log.warn(f"Key '{key}' not found in AwsNodePoolKubeletConfig. Access the value via the '{suggest}' property getter instead.")
|
2528
|
-
|
2529
|
-
def __getitem__(self, key: str) -> Any:
|
2530
|
-
AwsNodePoolKubeletConfig.__key_warning(key)
|
2531
|
-
return super().__getitem__(key)
|
2532
|
-
|
2533
|
-
def get(self, key: str, default = None) -> Any:
|
2534
|
-
AwsNodePoolKubeletConfig.__key_warning(key)
|
2535
|
-
return super().get(key, default)
|
2536
|
-
|
2537
|
-
def __init__(__self__, *,
|
2538
|
-
cpu_cfs_quota: Optional[bool] = None,
|
2539
|
-
cpu_cfs_quota_period: Optional[str] = None,
|
2540
|
-
cpu_manager_policy: Optional[str] = None,
|
2541
|
-
pod_pids_limit: Optional[int] = None):
|
2542
|
-
"""
|
2543
|
-
:param bool cpu_cfs_quota: Whether or not to enable CPU CFS quota. Defaults to true.
|
2544
|
-
:param str cpu_cfs_quota_period: Optional. The CPU CFS quota period to use for the node. Defaults to "100ms".
|
2545
|
-
:param str cpu_manager_policy: The CpuManagerPolicy to use for the node. Defaults to "none".
|
2546
|
-
:param int pod_pids_limit: Optional. The maximum number of PIDs in each pod running on the node. The limit scales automatically based on underlying machine size if left unset.
|
2547
|
-
"""
|
2548
|
-
if cpu_cfs_quota is not None:
|
2549
|
-
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
2550
|
-
if cpu_cfs_quota_period is not None:
|
2551
|
-
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
2552
|
-
if cpu_manager_policy is not None:
|
2553
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
2554
|
-
if pod_pids_limit is not None:
|
2555
|
-
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
2556
|
-
|
2557
|
-
@property
|
2558
|
-
@pulumi.getter(name="cpuCfsQuota")
|
2559
|
-
def cpu_cfs_quota(self) -> Optional[bool]:
|
2560
|
-
"""
|
2561
|
-
Whether or not to enable CPU CFS quota. Defaults to true.
|
2562
|
-
"""
|
2563
|
-
return pulumi.get(self, "cpu_cfs_quota")
|
2564
|
-
|
2565
|
-
@property
|
2566
|
-
@pulumi.getter(name="cpuCfsQuotaPeriod")
|
2567
|
-
def cpu_cfs_quota_period(self) -> Optional[str]:
|
2568
|
-
"""
|
2569
|
-
Optional. The CPU CFS quota period to use for the node. Defaults to "100ms".
|
2570
|
-
"""
|
2571
|
-
return pulumi.get(self, "cpu_cfs_quota_period")
|
2572
|
-
|
2573
|
-
@property
|
2574
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
2575
|
-
def cpu_manager_policy(self) -> Optional[str]:
|
2576
|
-
"""
|
2577
|
-
The CpuManagerPolicy to use for the node. Defaults to "none".
|
2578
|
-
"""
|
2579
|
-
return pulumi.get(self, "cpu_manager_policy")
|
2580
|
-
|
2581
|
-
@property
|
2582
|
-
@pulumi.getter(name="podPidsLimit")
|
2583
|
-
def pod_pids_limit(self) -> Optional[int]:
|
2584
|
-
"""
|
2585
|
-
Optional. The maximum number of PIDs in each pod running on the node. The limit scales automatically based on underlying machine size if left unset.
|
2586
|
-
"""
|
2587
|
-
return pulumi.get(self, "pod_pids_limit")
|
2588
|
-
|
2589
|
-
|
2590
2511
|
@pulumi.output_type
|
2591
2512
|
class AwsNodePoolManagement(dict):
|
2592
2513
|
@staticmethod
|
pulumi_gcp/dataproc/__init__.py
CHANGED
@@ -9,7 +9,6 @@ from .autoscaling_policy import *
|
|
9
9
|
from .autoscaling_policy_iam_binding import *
|
10
10
|
from .autoscaling_policy_iam_member import *
|
11
11
|
from .autoscaling_policy_iam_policy import *
|
12
|
-
from .batch import *
|
13
12
|
from .cluster import *
|
14
13
|
from .cluster_iam_binding import *
|
15
14
|
from .cluster_iam_member import *
|