pulumi-gcp 8.5.0a1728368389__py3-none-any.whl → 8.5.0a1728386657__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 +24 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/bigtable/gc_policy.py +7 -0
- pulumi_gcp/compute/_inputs.py +299 -15
- pulumi_gcp/compute/backend_service.py +111 -7
- pulumi_gcp/compute/get_backend_service.py +11 -1
- pulumi_gcp/compute/network.py +236 -0
- pulumi_gcp/compute/outputs.py +399 -14
- pulumi_gcp/compute/region_backend_service.py +115 -7
- pulumi_gcp/compute/route.py +92 -0
- pulumi_gcp/compute/subnetwork.py +2 -2
- pulumi_gcp/container/_inputs.py +94 -0
- pulumi_gcp/container/aws_node_pool.py +59 -0
- pulumi_gcp/container/outputs.py +79 -0
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +1394 -0
- pulumi_gcp/dataproc/batch.py +1514 -0
- pulumi_gcp/dataproc/outputs.py +1127 -0
- 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 +1 -0
- pulumi_gcp/healthcare/_inputs.py +538 -0
- pulumi_gcp/healthcare/outputs.py +467 -0
- pulumi_gcp/healthcare/pipeline_job.py +1233 -0
- 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 +333 -1
- pulumi_gcp/pubsub/outputs.py +410 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +44 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/repository.py +0 -2
- pulumi_gcp/securityposture/posture.py +0 -2
- pulumi_gcp/securityposture/posture_deployment.py +0 -2
- pulumi_gcp/serviceusage/consumer_quota_override.py +0 -2
- pulumi_gcp/siteverification/__init__.py +1 -0
- pulumi_gcp/siteverification/owner.py +398 -0
- pulumi_gcp/sourcerepo/get_repository.py +11 -1
- pulumi_gcp/sourcerepo/repository.py +47 -0
- 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.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/RECORD +52 -49
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,7 @@ 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,
|
32
33
|
management: Optional[pulumi.Input['AwsNodePoolManagementArgs']] = None,
|
33
34
|
name: Optional[pulumi.Input[str]] = None,
|
34
35
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -48,6 +49,7 @@ class AwsNodePoolArgs:
|
|
48
49
|
alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between. **Note**: This field is
|
49
50
|
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
50
51
|
`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.
|
51
53
|
:param pulumi.Input['AwsNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
52
54
|
:param pulumi.Input[str] name: The name of this resource.
|
53
55
|
:param pulumi.Input[str] project: The project for the resource
|
@@ -62,6 +64,8 @@ class AwsNodePoolArgs:
|
|
62
64
|
pulumi.set(__self__, "version", version)
|
63
65
|
if annotations is not None:
|
64
66
|
pulumi.set(__self__, "annotations", annotations)
|
67
|
+
if kubelet_config is not None:
|
68
|
+
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
65
69
|
if management is not None:
|
66
70
|
pulumi.set(__self__, "management", management)
|
67
71
|
if name is not None:
|
@@ -172,6 +176,18 @@ class AwsNodePoolArgs:
|
|
172
176
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
173
177
|
pulumi.set(self, "annotations", value)
|
174
178
|
|
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
|
+
|
175
191
|
@property
|
176
192
|
@pulumi.getter
|
177
193
|
def management(self) -> Optional[pulumi.Input['AwsNodePoolManagementArgs']]:
|
@@ -231,6 +247,7 @@ class _AwsNodePoolState:
|
|
231
247
|
create_time: Optional[pulumi.Input[str]] = None,
|
232
248
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
233
249
|
etag: Optional[pulumi.Input[str]] = None,
|
250
|
+
kubelet_config: Optional[pulumi.Input['AwsNodePoolKubeletConfigArgs']] = None,
|
234
251
|
location: Optional[pulumi.Input[str]] = None,
|
235
252
|
management: Optional[pulumi.Input['AwsNodePoolManagementArgs']] = None,
|
236
253
|
max_pods_constraint: Optional[pulumi.Input['AwsNodePoolMaxPodsConstraintArgs']] = None,
|
@@ -256,6 +273,7 @@ class _AwsNodePoolState:
|
|
256
273
|
:param pulumi.Input['AwsNodePoolConfigArgs'] config: The configuration of the node pool.
|
257
274
|
:param pulumi.Input[str] create_time: Output only. The time at which this node pool was created.
|
258
275
|
: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.
|
259
277
|
:param pulumi.Input[str] location: The location for the resource
|
260
278
|
:param pulumi.Input['AwsNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
261
279
|
: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.
|
@@ -283,6 +301,8 @@ class _AwsNodePoolState:
|
|
283
301
|
pulumi.set(__self__, "effective_annotations", effective_annotations)
|
284
302
|
if etag is not None:
|
285
303
|
pulumi.set(__self__, "etag", etag)
|
304
|
+
if kubelet_config is not None:
|
305
|
+
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
286
306
|
if location is not None:
|
287
307
|
pulumi.set(__self__, "location", location)
|
288
308
|
if management is not None:
|
@@ -394,6 +414,18 @@ class _AwsNodePoolState:
|
|
394
414
|
def etag(self, value: Optional[pulumi.Input[str]]):
|
395
415
|
pulumi.set(self, "etag", value)
|
396
416
|
|
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
|
+
|
397
429
|
@property
|
398
430
|
@pulumi.getter
|
399
431
|
def location(self) -> Optional[pulumi.Input[str]]:
|
@@ -548,6 +580,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
548
580
|
autoscaling: Optional[pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']]] = None,
|
549
581
|
cluster: Optional[pulumi.Input[str]] = None,
|
550
582
|
config: Optional[pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']]] = None,
|
583
|
+
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
551
584
|
location: Optional[pulumi.Input[str]] = None,
|
552
585
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
553
586
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -684,6 +717,12 @@ class AwsNodePool(pulumi.CustomResource):
|
|
684
717
|
management={
|
685
718
|
"auto_repair": True,
|
686
719
|
},
|
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
|
+
},
|
687
726
|
project="my-project-name")
|
688
727
|
```
|
689
728
|
### Basic_enum_aws_cluster
|
@@ -964,6 +1003,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
964
1003
|
:param pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']] autoscaling: Autoscaler configuration for this node pool.
|
965
1004
|
:param pulumi.Input[str] cluster: The awsCluster for the resource
|
966
1005
|
: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.
|
967
1007
|
:param pulumi.Input[str] location: The location for the resource
|
968
1008
|
:param pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']] management: The Management configuration for this node pool.
|
969
1009
|
: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.
|
@@ -1106,6 +1146,12 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1106
1146
|
management={
|
1107
1147
|
"auto_repair": True,
|
1108
1148
|
},
|
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
|
+
},
|
1109
1155
|
project="my-project-name")
|
1110
1156
|
```
|
1111
1157
|
### Basic_enum_aws_cluster
|
@@ -1394,6 +1440,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1394
1440
|
autoscaling: Optional[pulumi.Input[Union['AwsNodePoolAutoscalingArgs', 'AwsNodePoolAutoscalingArgsDict']]] = None,
|
1395
1441
|
cluster: Optional[pulumi.Input[str]] = None,
|
1396
1442
|
config: Optional[pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']]] = None,
|
1443
|
+
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
1397
1444
|
location: Optional[pulumi.Input[str]] = None,
|
1398
1445
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
1399
1446
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -1421,6 +1468,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1421
1468
|
if config is None and not opts.urn:
|
1422
1469
|
raise TypeError("Missing required property 'config'")
|
1423
1470
|
__props__.__dict__["config"] = config
|
1471
|
+
__props__.__dict__["kubelet_config"] = kubelet_config
|
1424
1472
|
if location is None and not opts.urn:
|
1425
1473
|
raise TypeError("Missing required property 'location'")
|
1426
1474
|
__props__.__dict__["location"] = location
|
@@ -1461,6 +1509,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1461
1509
|
create_time: Optional[pulumi.Input[str]] = None,
|
1462
1510
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1463
1511
|
etag: Optional[pulumi.Input[str]] = None,
|
1512
|
+
kubelet_config: Optional[pulumi.Input[Union['AwsNodePoolKubeletConfigArgs', 'AwsNodePoolKubeletConfigArgsDict']]] = None,
|
1464
1513
|
location: Optional[pulumi.Input[str]] = None,
|
1465
1514
|
management: Optional[pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']]] = None,
|
1466
1515
|
max_pods_constraint: Optional[pulumi.Input[Union['AwsNodePoolMaxPodsConstraintArgs', 'AwsNodePoolMaxPodsConstraintArgsDict']]] = None,
|
@@ -1491,6 +1540,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1491
1540
|
:param pulumi.Input[Union['AwsNodePoolConfigArgs', 'AwsNodePoolConfigArgsDict']] config: The configuration of the node pool.
|
1492
1541
|
:param pulumi.Input[str] create_time: Output only. The time at which this node pool was created.
|
1493
1542
|
: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.
|
1494
1544
|
:param pulumi.Input[str] location: The location for the resource
|
1495
1545
|
:param pulumi.Input[Union['AwsNodePoolManagementArgs', 'AwsNodePoolManagementArgsDict']] management: The Management configuration for this node pool.
|
1496
1546
|
: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.
|
@@ -1515,6 +1565,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1515
1565
|
__props__.__dict__["create_time"] = create_time
|
1516
1566
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
1517
1567
|
__props__.__dict__["etag"] = etag
|
1568
|
+
__props__.__dict__["kubelet_config"] = kubelet_config
|
1518
1569
|
__props__.__dict__["location"] = location
|
1519
1570
|
__props__.__dict__["management"] = management
|
1520
1571
|
__props__.__dict__["max_pods_constraint"] = max_pods_constraint
|
@@ -1587,6 +1638,14 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1587
1638
|
"""
|
1588
1639
|
return pulumi.get(self, "etag")
|
1589
1640
|
|
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
|
+
|
1590
1649
|
@property
|
1591
1650
|
@pulumi.getter
|
1592
1651
|
def location(self) -> pulumi.Output[str]:
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -57,6 +57,7 @@ __all__ = [
|
|
57
57
|
'AwsNodePoolConfigSpotConfig',
|
58
58
|
'AwsNodePoolConfigSshConfig',
|
59
59
|
'AwsNodePoolConfigTaint',
|
60
|
+
'AwsNodePoolKubeletConfig',
|
60
61
|
'AwsNodePoolManagement',
|
61
62
|
'AwsNodePoolMaxPodsConstraint',
|
62
63
|
'AwsNodePoolUpdateSettings',
|
@@ -2508,6 +2509,84 @@ class AwsNodePoolConfigTaint(dict):
|
|
2508
2509
|
return pulumi.get(self, "value")
|
2509
2510
|
|
2510
2511
|
|
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
|
+
|
2511
2590
|
@pulumi.output_type
|
2512
2591
|
class AwsNodePoolManagement(dict):
|
2513
2592
|
@staticmethod
|
pulumi_gcp/dataproc/__init__.py
CHANGED
@@ -9,6 +9,7 @@ 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 *
|
12
13
|
from .cluster import *
|
13
14
|
from .cluster_iam_binding import *
|
14
15
|
from .cluster_iam_member import *
|