pulumi-gcp 7.24.0a1715926460__py3-none-any.whl → 7.24.0a1716510380__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/bigquery/_inputs.py +16 -0
- pulumi_gcp/bigquery/dataset_access.py +56 -0
- pulumi_gcp/bigquery/outputs.py +16 -0
- pulumi_gcp/cloudfunctions/function.py +21 -0
- pulumi_gcp/compute/_inputs.py +280 -0
- pulumi_gcp/compute/backend_service.py +315 -0
- pulumi_gcp/compute/outputs.py +288 -0
- pulumi_gcp/compute/region_backend_service.py +315 -0
- pulumi_gcp/compute/router_peer.py +88 -0
- pulumi_gcp/compute/security_policy.py +49 -0
- pulumi_gcp/container/_inputs.py +12 -0
- pulumi_gcp/container/outputs.py +12 -0
- pulumi_gcp/dataproc/_inputs.py +120 -46
- pulumi_gcp/dataproc/outputs.py +120 -46
- pulumi_gcp/networkservices/_inputs.py +18 -0
- pulumi_gcp/networkservices/outputs.py +18 -0
- pulumi_gcp/organizations/_inputs.py +10 -0
- pulumi_gcp/organizations/outputs.py +10 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/RECORD +23 -23
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/outputs.py
CHANGED
@@ -1093,12 +1093,19 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfig(dict):
|
|
1093
1093
|
min_cpu_platform: Optional[str] = None,
|
1094
1094
|
num_instances: Optional[int] = None):
|
1095
1095
|
"""
|
1096
|
-
:param Sequence['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs'] accelerators: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1096
|
+
:param Sequence['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs'] accelerators: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1097
|
+
multiple times.
|
1097
1098
|
:param 'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs' disk_config: Disk Config
|
1098
1099
|
:param Sequence[str] instance_names: List of auxiliary node group instance names which have been assigned to the cluster.
|
1099
|
-
:param str machine_type: The name of a Google Compute Engine machine type
|
1100
|
-
|
1101
|
-
|
1100
|
+
:param str machine_type: The name of a Google Compute Engine machine type
|
1101
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
1102
|
+
computed value (currently `n1-standard-4`).
|
1103
|
+
:param str min_cpu_platform: The name of a minimum generation of CPU family
|
1104
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
1105
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
1106
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
1107
|
+
:param int num_instances: Specifies the number of master nodes to create.
|
1108
|
+
Please set a number greater than 0. Node Group must have at least 1 instance.
|
1102
1109
|
"""
|
1103
1110
|
if accelerators is not None:
|
1104
1111
|
pulumi.set(__self__, "accelerators", accelerators)
|
@@ -1117,7 +1124,8 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfig(dict):
|
|
1117
1124
|
@pulumi.getter
|
1118
1125
|
def accelerators(self) -> Optional[Sequence['outputs.ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAccelerator']]:
|
1119
1126
|
"""
|
1120
|
-
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1127
|
+
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1128
|
+
multiple times.
|
1121
1129
|
"""
|
1122
1130
|
return pulumi.get(self, "accelerators")
|
1123
1131
|
|
@@ -1141,7 +1149,9 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfig(dict):
|
|
1141
1149
|
@pulumi.getter(name="machineType")
|
1142
1150
|
def machine_type(self) -> Optional[str]:
|
1143
1151
|
"""
|
1144
|
-
The name of a Google Compute Engine machine type
|
1152
|
+
The name of a Google Compute Engine machine type
|
1153
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
1154
|
+
computed value (currently `n1-standard-4`).
|
1145
1155
|
"""
|
1146
1156
|
return pulumi.get(self, "machine_type")
|
1147
1157
|
|
@@ -1149,7 +1159,10 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfig(dict):
|
|
1149
1159
|
@pulumi.getter(name="minCpuPlatform")
|
1150
1160
|
def min_cpu_platform(self) -> Optional[str]:
|
1151
1161
|
"""
|
1152
|
-
The name of a minimum generation of CPU family
|
1162
|
+
The name of a minimum generation of CPU family
|
1163
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
1164
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
1165
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
1153
1166
|
"""
|
1154
1167
|
return pulumi.get(self, "min_cpu_platform")
|
1155
1168
|
|
@@ -1157,7 +1170,8 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfig(dict):
|
|
1157
1170
|
@pulumi.getter(name="numInstances")
|
1158
1171
|
def num_instances(self) -> Optional[int]:
|
1159
1172
|
"""
|
1160
|
-
Specifies the number of
|
1173
|
+
Specifies the number of master nodes to create.
|
1174
|
+
Please set a number greater than 0. Node Group must have at least 1 instance.
|
1161
1175
|
"""
|
1162
1176
|
return pulumi.get(self, "num_instances")
|
1163
1177
|
|
@@ -1187,8 +1201,11 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAccelerator(
|
|
1187
1201
|
accelerator_count: int,
|
1188
1202
|
accelerator_type: str):
|
1189
1203
|
"""
|
1190
|
-
:param int accelerator_count: The number of the accelerator cards of this type exposed to this instance. Often restricted to one of 1
|
1191
|
-
|
1204
|
+
:param int accelerator_count: The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1205
|
+
|
1206
|
+
|
1207
|
+
- - -
|
1208
|
+
:param str accelerator_type: The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
1192
1209
|
"""
|
1193
1210
|
pulumi.set(__self__, "accelerator_count", accelerator_count)
|
1194
1211
|
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
@@ -1197,7 +1214,10 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAccelerator(
|
|
1197
1214
|
@pulumi.getter(name="acceleratorCount")
|
1198
1215
|
def accelerator_count(self) -> int:
|
1199
1216
|
"""
|
1200
|
-
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of 1
|
1217
|
+
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1218
|
+
|
1219
|
+
|
1220
|
+
- - -
|
1201
1221
|
"""
|
1202
1222
|
return pulumi.get(self, "accelerator_count")
|
1203
1223
|
|
@@ -1205,7 +1225,7 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAccelerator(
|
|
1205
1225
|
@pulumi.getter(name="acceleratorType")
|
1206
1226
|
def accelerator_type(self) -> str:
|
1207
1227
|
"""
|
1208
|
-
The short name of the accelerator type to expose to this instance. For example, nvidia-tesla-k80
|
1228
|
+
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
1209
1229
|
"""
|
1210
1230
|
return pulumi.get(self, "accelerator_type")
|
1211
1231
|
|
@@ -1238,9 +1258,15 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfig(d
|
|
1238
1258
|
boot_disk_type: Optional[str] = None,
|
1239
1259
|
num_local_ssds: Optional[int] = None):
|
1240
1260
|
"""
|
1241
|
-
:param int boot_disk_size_gb: Size of the primary disk attached to each node, specified
|
1242
|
-
|
1243
|
-
|
1261
|
+
:param int boot_disk_size_gb: Size of the primary disk attached to each node, specified
|
1262
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
1263
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
1264
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
1265
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1266
|
+
:param str boot_disk_type: The disk type of the primary disk attached to each node.
|
1267
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1268
|
+
:param int num_local_ssds: The amount of local SSD disks that will be attached to each master cluster node.
|
1269
|
+
Defaults to 0.
|
1244
1270
|
"""
|
1245
1271
|
if boot_disk_size_gb is not None:
|
1246
1272
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -1253,7 +1279,11 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfig(d
|
|
1253
1279
|
@pulumi.getter(name="bootDiskSizeGb")
|
1254
1280
|
def boot_disk_size_gb(self) -> Optional[int]:
|
1255
1281
|
"""
|
1256
|
-
Size of the primary disk attached to each node, specified
|
1282
|
+
Size of the primary disk attached to each node, specified
|
1283
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
1284
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
1285
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
1286
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1257
1287
|
"""
|
1258
1288
|
return pulumi.get(self, "boot_disk_size_gb")
|
1259
1289
|
|
@@ -1261,7 +1291,8 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfig(d
|
|
1261
1291
|
@pulumi.getter(name="bootDiskType")
|
1262
1292
|
def boot_disk_type(self) -> Optional[str]:
|
1263
1293
|
"""
|
1264
|
-
The disk type of the primary disk attached to each node.
|
1294
|
+
The disk type of the primary disk attached to each node.
|
1295
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1265
1296
|
"""
|
1266
1297
|
return pulumi.get(self, "boot_disk_type")
|
1267
1298
|
|
@@ -1269,7 +1300,8 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfig(d
|
|
1269
1300
|
@pulumi.getter(name="numLocalSsds")
|
1270
1301
|
def num_local_ssds(self) -> Optional[int]:
|
1271
1302
|
"""
|
1272
|
-
The amount of local SSD disks that will be attached to each master cluster node.
|
1303
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
1304
|
+
Defaults to 0.
|
1273
1305
|
"""
|
1274
1306
|
return pulumi.get(self, "num_local_ssds")
|
1275
1307
|
|
@@ -2167,9 +2199,15 @@ class ClusterClusterConfigMasterConfigDiskConfig(dict):
|
|
2167
2199
|
boot_disk_type: Optional[str] = None,
|
2168
2200
|
num_local_ssds: Optional[int] = None):
|
2169
2201
|
"""
|
2170
|
-
:param int boot_disk_size_gb: Size of the primary disk attached to each node, specified
|
2171
|
-
|
2172
|
-
|
2202
|
+
:param int boot_disk_size_gb: Size of the primary disk attached to each node, specified
|
2203
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
2204
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
2205
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
2206
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
2207
|
+
:param str boot_disk_type: The disk type of the primary disk attached to each node.
|
2208
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
2209
|
+
:param int num_local_ssds: The amount of local SSD disks that will be
|
2210
|
+
attached to each master cluster node. Defaults to 0.
|
2173
2211
|
"""
|
2174
2212
|
if boot_disk_size_gb is not None:
|
2175
2213
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -2182,7 +2220,11 @@ class ClusterClusterConfigMasterConfigDiskConfig(dict):
|
|
2182
2220
|
@pulumi.getter(name="bootDiskSizeGb")
|
2183
2221
|
def boot_disk_size_gb(self) -> Optional[int]:
|
2184
2222
|
"""
|
2185
|
-
Size of the primary disk attached to each node, specified
|
2223
|
+
Size of the primary disk attached to each node, specified
|
2224
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
2225
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
2226
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
2227
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
2186
2228
|
"""
|
2187
2229
|
return pulumi.get(self, "boot_disk_size_gb")
|
2188
2230
|
|
@@ -2190,7 +2232,8 @@ class ClusterClusterConfigMasterConfigDiskConfig(dict):
|
|
2190
2232
|
@pulumi.getter(name="bootDiskType")
|
2191
2233
|
def boot_disk_type(self) -> Optional[str]:
|
2192
2234
|
"""
|
2193
|
-
The disk type of the primary disk attached to each node.
|
2235
|
+
The disk type of the primary disk attached to each node.
|
2236
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
2194
2237
|
"""
|
2195
2238
|
return pulumi.get(self, "boot_disk_type")
|
2196
2239
|
|
@@ -2198,7 +2241,8 @@ class ClusterClusterConfigMasterConfigDiskConfig(dict):
|
|
2198
2241
|
@pulumi.getter(name="numLocalSsds")
|
2199
2242
|
def num_local_ssds(self) -> Optional[int]:
|
2200
2243
|
"""
|
2201
|
-
The amount of local SSD disks that will be
|
2244
|
+
The amount of local SSD disks that will be
|
2245
|
+
attached to each master cluster node. Defaults to 0.
|
2202
2246
|
"""
|
2203
2247
|
return pulumi.get(self, "num_local_ssds")
|
2204
2248
|
|
@@ -2382,7 +2426,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigDiskConfig(dict):
|
|
2382
2426
|
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
2383
2427
|
:param str boot_disk_type: The disk type of the primary disk attached to each preemptible worker node.
|
2384
2428
|
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
2385
|
-
:param int num_local_ssds: The amount of local SSD disks that will be
|
2429
|
+
:param int num_local_ssds: The amount of local SSD disks that will be
|
2430
|
+
attached to each preemptible worker node. Defaults to 0.
|
2386
2431
|
"""
|
2387
2432
|
if boot_disk_size_gb is not None:
|
2388
2433
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -2415,7 +2460,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigDiskConfig(dict):
|
|
2415
2460
|
@pulumi.getter(name="numLocalSsds")
|
2416
2461
|
def num_local_ssds(self) -> Optional[int]:
|
2417
2462
|
"""
|
2418
|
-
The amount of local SSD disks that will be
|
2463
|
+
The amount of local SSD disks that will be
|
2464
|
+
attached to each preemptible worker node. Defaults to 0.
|
2419
2465
|
"""
|
2420
2466
|
return pulumi.get(self, "num_local_ssds")
|
2421
2467
|
|
@@ -2493,8 +2539,10 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2493
2539
|
machine_types: Optional[Sequence[str]] = None,
|
2494
2540
|
rank: Optional[int] = None):
|
2495
2541
|
"""
|
2496
|
-
:param Sequence[str] machine_types: Full machine-type names, e.g. "n1-standard-16"
|
2497
|
-
:param int rank: Preference of this instance selection.
|
2542
|
+
:param Sequence[str] machine_types: Full machine-type names, e.g. `"n1-standard-16"`.
|
2543
|
+
:param int rank: Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
2544
|
+
|
2545
|
+
- - -
|
2498
2546
|
"""
|
2499
2547
|
if machine_types is not None:
|
2500
2548
|
pulumi.set(__self__, "machine_types", machine_types)
|
@@ -2505,7 +2553,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2505
2553
|
@pulumi.getter(name="machineTypes")
|
2506
2554
|
def machine_types(self) -> Optional[Sequence[str]]:
|
2507
2555
|
"""
|
2508
|
-
Full machine-type names, e.g. "n1-standard-16"
|
2556
|
+
Full machine-type names, e.g. `"n1-standard-16"`.
|
2509
2557
|
"""
|
2510
2558
|
return pulumi.get(self, "machine_types")
|
2511
2559
|
|
@@ -2513,7 +2561,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2513
2561
|
@pulumi.getter
|
2514
2562
|
def rank(self) -> Optional[int]:
|
2515
2563
|
"""
|
2516
|
-
Preference of this instance selection.
|
2564
|
+
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
2565
|
+
|
2566
|
+
- - -
|
2517
2567
|
"""
|
2518
2568
|
return pulumi.get(self, "rank")
|
2519
2569
|
|
@@ -3665,9 +3715,13 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3665
3715
|
roles: Sequence[str],
|
3666
3716
|
node_pool_config: Optional['outputs.ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfig'] = None):
|
3667
3717
|
"""
|
3668
|
-
:param str node_pool: The target GKE node pool.
|
3669
|
-
:param Sequence[str] roles: The roles associated with the GKE node pool.
|
3670
|
-
|
3718
|
+
:param str node_pool: The target GKE node pool.
|
3719
|
+
:param Sequence[str] roles: The roles associated with the GKE node pool.
|
3720
|
+
One of `"DEFAULT"`, `"CONTROLLER"`, `"SPARK_DRIVER"` or `"SPARK_EXECUTOR"`.
|
3721
|
+
:param 'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgs' node_pool_config: The configuration for the GKE node pool.
|
3722
|
+
If specified, Dataproc attempts to create a node pool with the specified shape.
|
3723
|
+
If one with the same name already exists, it is verified against all specified fields.
|
3724
|
+
If a field differs, the virtual cluster creation will fail.
|
3671
3725
|
"""
|
3672
3726
|
pulumi.set(__self__, "node_pool", node_pool)
|
3673
3727
|
pulumi.set(__self__, "roles", roles)
|
@@ -3678,7 +3732,7 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3678
3732
|
@pulumi.getter(name="nodePool")
|
3679
3733
|
def node_pool(self) -> str:
|
3680
3734
|
"""
|
3681
|
-
The target GKE node pool.
|
3735
|
+
The target GKE node pool.
|
3682
3736
|
"""
|
3683
3737
|
return pulumi.get(self, "node_pool")
|
3684
3738
|
|
@@ -3686,7 +3740,8 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3686
3740
|
@pulumi.getter
|
3687
3741
|
def roles(self) -> Sequence[str]:
|
3688
3742
|
"""
|
3689
|
-
The roles associated with the GKE node pool.
|
3743
|
+
The roles associated with the GKE node pool.
|
3744
|
+
One of `"DEFAULT"`, `"CONTROLLER"`, `"SPARK_DRIVER"` or `"SPARK_EXECUTOR"`.
|
3690
3745
|
"""
|
3691
3746
|
return pulumi.get(self, "roles")
|
3692
3747
|
|
@@ -3694,7 +3749,10 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3694
3749
|
@pulumi.getter(name="nodePoolConfig")
|
3695
3750
|
def node_pool_config(self) -> Optional['outputs.ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfig']:
|
3696
3751
|
"""
|
3697
|
-
|
3752
|
+
The configuration for the GKE node pool.
|
3753
|
+
If specified, Dataproc attempts to create a node pool with the specified shape.
|
3754
|
+
If one with the same name already exists, it is verified against all specified fields.
|
3755
|
+
If a field differs, the virtual cluster creation will fail.
|
3698
3756
|
"""
|
3699
3757
|
return pulumi.get(self, "node_pool_config")
|
3700
3758
|
|
@@ -3706,8 +3764,11 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3706
3764
|
autoscaling: Optional['outputs.ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscaling'] = None,
|
3707
3765
|
config: Optional['outputs.ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfig'] = None):
|
3708
3766
|
"""
|
3709
|
-
:param Sequence[str] locations: The list of Compute Engine zones where node pool nodes associated
|
3710
|
-
|
3767
|
+
:param Sequence[str] locations: The list of Compute Engine zones where node pool nodes associated
|
3768
|
+
with a Dataproc on GKE virtual cluster will be located.
|
3769
|
+
- - -
|
3770
|
+
:param 'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgs' autoscaling: The autoscaler configuration for this node pool.
|
3771
|
+
The autoscaler is enabled only when a valid configuration is present.
|
3711
3772
|
:param 'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgs' config: The node pool configuration.
|
3712
3773
|
"""
|
3713
3774
|
pulumi.set(__self__, "locations", locations)
|
@@ -3720,7 +3781,9 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3720
3781
|
@pulumi.getter
|
3721
3782
|
def locations(self) -> Sequence[str]:
|
3722
3783
|
"""
|
3723
|
-
The list of Compute Engine zones where node pool nodes associated
|
3784
|
+
The list of Compute Engine zones where node pool nodes associated
|
3785
|
+
with a Dataproc on GKE virtual cluster will be located.
|
3786
|
+
- - -
|
3724
3787
|
"""
|
3725
3788
|
return pulumi.get(self, "locations")
|
3726
3789
|
|
@@ -3728,7 +3791,8 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3728
3791
|
@pulumi.getter
|
3729
3792
|
def autoscaling(self) -> Optional['outputs.ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscaling']:
|
3730
3793
|
"""
|
3731
|
-
The autoscaler configuration for this node pool.
|
3794
|
+
The autoscaler configuration for this node pool.
|
3795
|
+
The autoscaler is enabled only when a valid configuration is present.
|
3732
3796
|
"""
|
3733
3797
|
return pulumi.get(self, "autoscaling")
|
3734
3798
|
|
@@ -3821,10 +3885,15 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3821
3885
|
preemptible: Optional[bool] = None,
|
3822
3886
|
spot: Optional[bool] = None):
|
3823
3887
|
"""
|
3824
|
-
:param int local_ssd_count: The
|
3888
|
+
:param int local_ssd_count: The number of local SSD disks to attach to the node,
|
3889
|
+
which is limited by the maximum number of disks allowable per zone.
|
3825
3890
|
:param str machine_type: The name of a Compute Engine machine type.
|
3826
|
-
:param str min_cpu_platform: Minimum CPU platform to be used by this instance.
|
3827
|
-
|
3891
|
+
:param str min_cpu_platform: Minimum CPU platform to be used by this instance.
|
3892
|
+
The instance may be scheduled on the specified or a newer CPU platform.
|
3893
|
+
Specify the friendly names of CPU platforms, such as "Intel Haswell" or "Intel Sandy Bridge".
|
3894
|
+
:param bool preemptible: Whether the nodes are created as preemptible VM instances.
|
3895
|
+
Preemptible nodes cannot be used in a node pool with the CONTROLLER role or in the DEFAULT node pool if the
|
3896
|
+
CONTROLLER role is not assigned (the DEFAULT node pool will assume the CONTROLLER role).
|
3828
3897
|
:param bool spot: Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible flag.
|
3829
3898
|
"""
|
3830
3899
|
if local_ssd_count is not None:
|
@@ -3842,7 +3911,8 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3842
3911
|
@pulumi.getter(name="localSsdCount")
|
3843
3912
|
def local_ssd_count(self) -> Optional[int]:
|
3844
3913
|
"""
|
3845
|
-
The
|
3914
|
+
The number of local SSD disks to attach to the node,
|
3915
|
+
which is limited by the maximum number of disks allowable per zone.
|
3846
3916
|
"""
|
3847
3917
|
return pulumi.get(self, "local_ssd_count")
|
3848
3918
|
|
@@ -3858,7 +3928,9 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3858
3928
|
@pulumi.getter(name="minCpuPlatform")
|
3859
3929
|
def min_cpu_platform(self) -> Optional[str]:
|
3860
3930
|
"""
|
3861
|
-
Minimum CPU platform to be used by this instance.
|
3931
|
+
Minimum CPU platform to be used by this instance.
|
3932
|
+
The instance may be scheduled on the specified or a newer CPU platform.
|
3933
|
+
Specify the friendly names of CPU platforms, such as "Intel Haswell" or "Intel Sandy Bridge".
|
3862
3934
|
"""
|
3863
3935
|
return pulumi.get(self, "min_cpu_platform")
|
3864
3936
|
|
@@ -3866,7 +3938,9 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3866
3938
|
@pulumi.getter
|
3867
3939
|
def preemptible(self) -> Optional[bool]:
|
3868
3940
|
"""
|
3869
|
-
Whether the nodes are created as preemptible VM instances.
|
3941
|
+
Whether the nodes are created as preemptible VM instances.
|
3942
|
+
Preemptible nodes cannot be used in a node pool with the CONTROLLER role or in the DEFAULT node pool if the
|
3943
|
+
CONTROLLER role is not assigned (the DEFAULT node pool will assume the CONTROLLER role).
|
3870
3944
|
"""
|
3871
3945
|
return pulumi.get(self, "preemptible")
|
3872
3946
|
|
@@ -1744,9 +1744,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1744
1744
|
Each value may be one of: `GENERATE_COOKIE`, `GENERATE_TOKEN_HLS_COOKIELESS`, `PROPAGATE_TOKEN_HLS_COOKIELESS`.
|
1745
1745
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] copied_parameters: The parameters to copy from the verified token to the generated token.
|
1746
1746
|
Only the following parameters may be copied:
|
1747
|
+
* `PathGlobs`
|
1747
1748
|
:param pulumi.Input[str] keyset: The keyset to use for signature generation.
|
1748
1749
|
The following are both valid paths to an EdgeCacheKeyset resource:
|
1749
1750
|
* `projects/project/locations/global/edgeCacheKeysets/yourKeyset`
|
1751
|
+
* `yourKeyset`
|
1752
|
+
This must be specified when the GENERATE_COOKIE or GENERATE_TOKEN_HLS_COOKIELESS actions are specified. This field may not be specified otherwise.
|
1750
1753
|
:param pulumi.Input[str] token_query_parameter: The query parameter in which to put the generated token.
|
1751
1754
|
If not specified, defaults to `edge-cache-token`.
|
1752
1755
|
If specified, the name must be 1-64 characters long and match the regular expression `a-zA-Z*` which means the first character must be a letter, and all following characters must be a dash, underscore, letter or digit.
|
@@ -1786,6 +1789,7 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1786
1789
|
"""
|
1787
1790
|
The parameters to copy from the verified token to the generated token.
|
1788
1791
|
Only the following parameters may be copied:
|
1792
|
+
* `PathGlobs`
|
1789
1793
|
"""
|
1790
1794
|
return pulumi.get(self, "copied_parameters")
|
1791
1795
|
|
@@ -1800,6 +1804,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1800
1804
|
The keyset to use for signature generation.
|
1801
1805
|
The following are both valid paths to an EdgeCacheKeyset resource:
|
1802
1806
|
* `projects/project/locations/global/edgeCacheKeysets/yourKeyset`
|
1807
|
+
* `yourKeyset`
|
1808
|
+
This must be specified when the GENERATE_COOKIE or GENERATE_TOKEN_HLS_COOKIELESS actions are specified. This field may not be specified otherwise.
|
1803
1809
|
"""
|
1804
1810
|
return pulumi.get(self, "keyset")
|
1805
1811
|
|
@@ -2268,6 +2274,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs:
|
|
2268
2274
|
prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request will be used for the redirect.
|
2269
2275
|
:param pulumi.Input[str] redirect_response_code: The HTTP Status code to use for this RedirectAction.
|
2270
2276
|
The supported values are:
|
2277
|
+
- `MOVED_PERMANENTLY_DEFAULT`, which is the default value and corresponds to 301.
|
2278
|
+
- `FOUND`, which corresponds to 302.
|
2279
|
+
- `SEE_OTHER` which corresponds to 303.
|
2280
|
+
- `TEMPORARY_REDIRECT`, which corresponds to 307. in this case, the request method will be retained.
|
2281
|
+
- `PERMANENT_REDIRECT`, which corresponds to 308. in this case, the request method will be retained.
|
2282
|
+
Possible values are: `MOVED_PERMANENTLY_DEFAULT`, `FOUND`, `SEE_OTHER`, `TEMPORARY_REDIRECT`, `PERMANENT_REDIRECT`.
|
2271
2283
|
:param pulumi.Input[bool] strip_query: If set to true, any accompanying query portion of the original URL is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained.
|
2272
2284
|
|
2273
2285
|
- - -
|
@@ -2343,6 +2355,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirectArgs:
|
|
2343
2355
|
"""
|
2344
2356
|
The HTTP Status code to use for this RedirectAction.
|
2345
2357
|
The supported values are:
|
2358
|
+
- `MOVED_PERMANENTLY_DEFAULT`, which is the default value and corresponds to 301.
|
2359
|
+
- `FOUND`, which corresponds to 302.
|
2360
|
+
- `SEE_OTHER` which corresponds to 303.
|
2361
|
+
- `TEMPORARY_REDIRECT`, which corresponds to 307. in this case, the request method will be retained.
|
2362
|
+
- `PERMANENT_REDIRECT`, which corresponds to 308. in this case, the request method will be retained.
|
2363
|
+
Possible values are: `MOVED_PERMANENTLY_DEFAULT`, `FOUND`, `SEE_OTHER`, `TEMPORARY_REDIRECT`, `PERMANENT_REDIRECT`.
|
2346
2364
|
"""
|
2347
2365
|
return pulumi.get(self, "redirect_response_code")
|
2348
2366
|
|
@@ -1925,9 +1925,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1925
1925
|
Each value may be one of: `GENERATE_COOKIE`, `GENERATE_TOKEN_HLS_COOKIELESS`, `PROPAGATE_TOKEN_HLS_COOKIELESS`.
|
1926
1926
|
:param Sequence[str] copied_parameters: The parameters to copy from the verified token to the generated token.
|
1927
1927
|
Only the following parameters may be copied:
|
1928
|
+
* `PathGlobs`
|
1928
1929
|
:param str keyset: The keyset to use for signature generation.
|
1929
1930
|
The following are both valid paths to an EdgeCacheKeyset resource:
|
1930
1931
|
* `projects/project/locations/global/edgeCacheKeysets/yourKeyset`
|
1932
|
+
* `yourKeyset`
|
1933
|
+
This must be specified when the GENERATE_COOKIE or GENERATE_TOKEN_HLS_COOKIELESS actions are specified. This field may not be specified otherwise.
|
1931
1934
|
:param str token_query_parameter: The query parameter in which to put the generated token.
|
1932
1935
|
If not specified, defaults to `edge-cache-token`.
|
1933
1936
|
If specified, the name must be 1-64 characters long and match the regular expression `a-zA-Z*` which means the first character must be a letter, and all following characters must be a dash, underscore, letter or digit.
|
@@ -1963,6 +1966,7 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1963
1966
|
"""
|
1964
1967
|
The parameters to copy from the verified token to the generated token.
|
1965
1968
|
Only the following parameters may be copied:
|
1969
|
+
* `PathGlobs`
|
1966
1970
|
"""
|
1967
1971
|
return pulumi.get(self, "copied_parameters")
|
1968
1972
|
|
@@ -1973,6 +1977,8 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleRouteActionCdnPolicyAddSignatur
|
|
1973
1977
|
The keyset to use for signature generation.
|
1974
1978
|
The following are both valid paths to an EdgeCacheKeyset resource:
|
1975
1979
|
* `projects/project/locations/global/edgeCacheKeysets/yourKeyset`
|
1980
|
+
* `yourKeyset`
|
1981
|
+
This must be specified when the GENERATE_COOKIE or GENERATE_TOKEN_HLS_COOKIELESS actions are specified. This field may not be specified otherwise.
|
1976
1982
|
"""
|
1977
1983
|
return pulumi.get(self, "keyset")
|
1978
1984
|
|
@@ -2476,6 +2482,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect(dict):
|
|
2476
2482
|
prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request will be used for the redirect.
|
2477
2483
|
:param str redirect_response_code: The HTTP Status code to use for this RedirectAction.
|
2478
2484
|
The supported values are:
|
2485
|
+
- `MOVED_PERMANENTLY_DEFAULT`, which is the default value and corresponds to 301.
|
2486
|
+
- `FOUND`, which corresponds to 302.
|
2487
|
+
- `SEE_OTHER` which corresponds to 303.
|
2488
|
+
- `TEMPORARY_REDIRECT`, which corresponds to 307. in this case, the request method will be retained.
|
2489
|
+
- `PERMANENT_REDIRECT`, which corresponds to 308. in this case, the request method will be retained.
|
2490
|
+
Possible values are: `MOVED_PERMANENTLY_DEFAULT`, `FOUND`, `SEE_OTHER`, `TEMPORARY_REDIRECT`, `PERMANENT_REDIRECT`.
|
2479
2491
|
:param bool strip_query: If set to true, any accompanying query portion of the original URL is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained.
|
2480
2492
|
|
2481
2493
|
- - -
|
@@ -2535,6 +2547,12 @@ class EdgeCacheServiceRoutingPathMatcherRouteRuleUrlRedirect(dict):
|
|
2535
2547
|
"""
|
2536
2548
|
The HTTP Status code to use for this RedirectAction.
|
2537
2549
|
The supported values are:
|
2550
|
+
- `MOVED_PERMANENTLY_DEFAULT`, which is the default value and corresponds to 301.
|
2551
|
+
- `FOUND`, which corresponds to 302.
|
2552
|
+
- `SEE_OTHER` which corresponds to 303.
|
2553
|
+
- `TEMPORARY_REDIRECT`, which corresponds to 307. in this case, the request method will be retained.
|
2554
|
+
- `PERMANENT_REDIRECT`, which corresponds to 308. in this case, the request method will be retained.
|
2555
|
+
Possible values are: `MOVED_PERMANENTLY_DEFAULT`, `FOUND`, `SEE_OTHER`, `TEMPORARY_REDIRECT`, `PERMANENT_REDIRECT`.
|
2538
2556
|
"""
|
2539
2557
|
return pulumi.get(self, "redirect_response_code")
|
2540
2558
|
|
@@ -480,6 +480,10 @@ class GetIAMPolicyAuditConfigAuditLogConfigArgs:
|
|
480
480
|
def __init__(__self__, *,
|
481
481
|
log_type: str,
|
482
482
|
exempted_members: Optional[Sequence[str]] = None):
|
483
|
+
"""
|
484
|
+
:param str log_type: Defines the logging level. `DATA_READ`, `DATA_WRITE` and `ADMIN_READ` capture different types of events. See [the audit configuration documentation](https://cloud.google.com/resource-manager/reference/rest/Shared.Types/AuditConfig) for more details.
|
485
|
+
:param Sequence[str] exempted_members: Specifies the identities that are exempt from these types of logging operations. Follows the same format of the `members` array for `binding`.
|
486
|
+
"""
|
483
487
|
pulumi.set(__self__, "log_type", log_type)
|
484
488
|
if exempted_members is not None:
|
485
489
|
pulumi.set(__self__, "exempted_members", exempted_members)
|
@@ -487,6 +491,9 @@ class GetIAMPolicyAuditConfigAuditLogConfigArgs:
|
|
487
491
|
@property
|
488
492
|
@pulumi.getter(name="logType")
|
489
493
|
def log_type(self) -> str:
|
494
|
+
"""
|
495
|
+
Defines the logging level. `DATA_READ`, `DATA_WRITE` and `ADMIN_READ` capture different types of events. See [the audit configuration documentation](https://cloud.google.com/resource-manager/reference/rest/Shared.Types/AuditConfig) for more details.
|
496
|
+
"""
|
490
497
|
return pulumi.get(self, "log_type")
|
491
498
|
|
492
499
|
@log_type.setter
|
@@ -496,6 +503,9 @@ class GetIAMPolicyAuditConfigAuditLogConfigArgs:
|
|
496
503
|
@property
|
497
504
|
@pulumi.getter(name="exemptedMembers")
|
498
505
|
def exempted_members(self) -> Optional[Sequence[str]]:
|
506
|
+
"""
|
507
|
+
Specifies the identities that are exempt from these types of logging operations. Follows the same format of the `members` array for `binding`.
|
508
|
+
"""
|
499
509
|
return pulumi.get(self, "exempted_members")
|
500
510
|
|
501
511
|
@exempted_members.setter
|
@@ -546,6 +546,10 @@ class GetIAMPolicyAuditConfigAuditLogConfigResult(dict):
|
|
546
546
|
def __init__(__self__, *,
|
547
547
|
log_type: str,
|
548
548
|
exempted_members: Optional[Sequence[str]] = None):
|
549
|
+
"""
|
550
|
+
:param str log_type: Defines the logging level. `DATA_READ`, `DATA_WRITE` and `ADMIN_READ` capture different types of events. See [the audit configuration documentation](https://cloud.google.com/resource-manager/reference/rest/Shared.Types/AuditConfig) for more details.
|
551
|
+
:param Sequence[str] exempted_members: Specifies the identities that are exempt from these types of logging operations. Follows the same format of the `members` array for `binding`.
|
552
|
+
"""
|
549
553
|
pulumi.set(__self__, "log_type", log_type)
|
550
554
|
if exempted_members is not None:
|
551
555
|
pulumi.set(__self__, "exempted_members", exempted_members)
|
@@ -553,11 +557,17 @@ class GetIAMPolicyAuditConfigAuditLogConfigResult(dict):
|
|
553
557
|
@property
|
554
558
|
@pulumi.getter(name="logType")
|
555
559
|
def log_type(self) -> str:
|
560
|
+
"""
|
561
|
+
Defines the logging level. `DATA_READ`, `DATA_WRITE` and `ADMIN_READ` capture different types of events. See [the audit configuration documentation](https://cloud.google.com/resource-manager/reference/rest/Shared.Types/AuditConfig) for more details.
|
562
|
+
"""
|
556
563
|
return pulumi.get(self, "log_type")
|
557
564
|
|
558
565
|
@property
|
559
566
|
@pulumi.getter(name="exemptedMembers")
|
560
567
|
def exempted_members(self) -> Optional[Sequence[str]]:
|
568
|
+
"""
|
569
|
+
Specifies the identities that are exempt from these types of logging operations. Follows the same format of the `members` array for `binding`.
|
570
|
+
"""
|
561
571
|
return pulumi.get(self, "exempted_members")
|
562
572
|
|
563
573
|
|
pulumi_gcp/pulumi-plugin.json
CHANGED