pulumi-gcp 7.16.0__py3-none-any.whl → 7.16.0a1711520590__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. pulumi_gcp/__init__.py +0 -8
  2. pulumi_gcp/accesscontextmanager/__init__.py +0 -1
  3. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +0 -80
  4. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +0 -86
  5. pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +2 -4
  6. pulumi_gcp/cloudquota/__init__.py +0 -1
  7. pulumi_gcp/cloudquota/outputs.py +0 -270
  8. pulumi_gcp/cloudrunv2/_inputs.py +2 -59
  9. pulumi_gcp/cloudrunv2/outputs.py +4 -107
  10. pulumi_gcp/cloudrunv2/service.py +6 -6
  11. pulumi_gcp/composer/_inputs.py +0 -16
  12. pulumi_gcp/composer/outputs.py +0 -23
  13. pulumi_gcp/compute/_inputs.py +7 -105
  14. pulumi_gcp/compute/outputs.py +9 -140
  15. pulumi_gcp/compute/region_url_map.py +0 -152
  16. pulumi_gcp/dataform/repository.py +74 -4
  17. pulumi_gcp/firebase/android_app.py +40 -41
  18. pulumi_gcp/firestore/index.py +48 -34
  19. pulumi_gcp/monitoring/_inputs.py +0 -2
  20. pulumi_gcp/monitoring/outputs.py +0 -2
  21. pulumi_gcp/networksecurity/firewall_endpoint.py +0 -48
  22. pulumi_gcp/pubsub/_inputs.py +0 -108
  23. pulumi_gcp/pubsub/get_topic.py +1 -11
  24. pulumi_gcp/pubsub/outputs.py +0 -213
  25. pulumi_gcp/pubsub/topic.py +0 -92
  26. pulumi_gcp/storage/_inputs.py +0 -40
  27. pulumi_gcp/storage/bucket.py +0 -54
  28. pulumi_gcp/storage/get_bucket.py +1 -11
  29. pulumi_gcp/storage/outputs.py +0 -81
  30. pulumi_gcp/workstations/_inputs.py +0 -113
  31. pulumi_gcp/workstations/outputs.py +1 -109
  32. pulumi_gcp/workstations/workstation_config.py +0 -106
  33. {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/METADATA +1 -1
  34. {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/RECORD +36 -38
  35. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +0 -345
  36. pulumi_gcp/cloudquota/get_s_quota_infos.py +0 -136
  37. {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/WHEEL +0 -0
  38. {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,6 @@ __all__ = [
28
28
  'JobTemplateTemplateVolume',
29
29
  'JobTemplateTemplateVolumeCloudSqlInstance',
30
30
  'JobTemplateTemplateVolumeEmptyDir',
31
- 'JobTemplateTemplateVolumeGcs',
32
31
  'JobTemplateTemplateVolumeSecret',
33
32
  'JobTemplateTemplateVolumeSecretItem',
34
33
  'JobTemplateTemplateVpcAccess',
@@ -85,7 +84,6 @@ __all__ = [
85
84
  'GetJobTemplateTemplateVolumeResult',
86
85
  'GetJobTemplateTemplateVolumeCloudSqlInstanceResult',
87
86
  'GetJobTemplateTemplateVolumeEmptyDirResult',
88
- 'GetJobTemplateTemplateVolumeGcResult',
89
87
  'GetJobTemplateTemplateVolumeSecretResult',
90
88
  'GetJobTemplateTemplateVolumeSecretItemResult',
91
89
  'GetJobTemplateTemplateVpcAccessResult',
@@ -1089,7 +1087,6 @@ class JobTemplateTemplateVolume(dict):
1089
1087
  name: str,
1090
1088
  cloud_sql_instance: Optional['outputs.JobTemplateTemplateVolumeCloudSqlInstance'] = None,
1091
1089
  empty_dir: Optional['outputs.JobTemplateTemplateVolumeEmptyDir'] = None,
1092
- gcs: Optional['outputs.JobTemplateTemplateVolumeGcs'] = None,
1093
1090
  secret: Optional['outputs.JobTemplateTemplateVolumeSecret'] = None):
1094
1091
  """
1095
1092
  :param str name: Volume's name.
@@ -1097,8 +1094,6 @@ class JobTemplateTemplateVolume(dict):
1097
1094
  Structure is documented below.
1098
1095
  :param 'JobTemplateTemplateVolumeEmptyDirArgs' empty_dir: Ephemeral storage used as a shared volume.
1099
1096
  Structure is documented below.
1100
- :param 'JobTemplateTemplateVolumeGcsArgs' gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature requires the launch stage to be set to ALPHA or BETA.
1101
- Structure is documented below.
1102
1097
  :param 'JobTemplateTemplateVolumeSecretArgs' secret: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
1103
1098
  Structure is documented below.
1104
1099
  """
@@ -1107,8 +1102,6 @@ class JobTemplateTemplateVolume(dict):
1107
1102
  pulumi.set(__self__, "cloud_sql_instance", cloud_sql_instance)
1108
1103
  if empty_dir is not None:
1109
1104
  pulumi.set(__self__, "empty_dir", empty_dir)
1110
- if gcs is not None:
1111
- pulumi.set(__self__, "gcs", gcs)
1112
1105
  if secret is not None:
1113
1106
  pulumi.set(__self__, "secret", secret)
1114
1107
 
@@ -1138,15 +1131,6 @@ class JobTemplateTemplateVolume(dict):
1138
1131
  """
1139
1132
  return pulumi.get(self, "empty_dir")
1140
1133
 
1141
- @property
1142
- @pulumi.getter
1143
- def gcs(self) -> Optional['outputs.JobTemplateTemplateVolumeGcs']:
1144
- """
1145
- Cloud Storage bucket mounted as a volume using GCSFuse. This feature requires the launch stage to be set to ALPHA or BETA.
1146
- Structure is documented below.
1147
- """
1148
- return pulumi.get(self, "gcs")
1149
-
1150
1134
  @property
1151
1135
  @pulumi.getter
1152
1136
  def secret(self) -> Optional['outputs.JobTemplateTemplateVolumeSecret']:
@@ -1228,53 +1212,6 @@ class JobTemplateTemplateVolumeEmptyDir(dict):
1228
1212
  return pulumi.get(self, "size_limit")
1229
1213
 
1230
1214
 
1231
- @pulumi.output_type
1232
- class JobTemplateTemplateVolumeGcs(dict):
1233
- @staticmethod
1234
- def __key_warning(key: str):
1235
- suggest = None
1236
- if key == "readOnly":
1237
- suggest = "read_only"
1238
-
1239
- if suggest:
1240
- pulumi.log.warn(f"Key '{key}' not found in JobTemplateTemplateVolumeGcs. Access the value via the '{suggest}' property getter instead.")
1241
-
1242
- def __getitem__(self, key: str) -> Any:
1243
- JobTemplateTemplateVolumeGcs.__key_warning(key)
1244
- return super().__getitem__(key)
1245
-
1246
- def get(self, key: str, default = None) -> Any:
1247
- JobTemplateTemplateVolumeGcs.__key_warning(key)
1248
- return super().get(key, default)
1249
-
1250
- def __init__(__self__, *,
1251
- bucket: str,
1252
- read_only: Optional[bool] = None):
1253
- """
1254
- :param str bucket: Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
1255
- :param bool read_only: If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
1256
- """
1257
- pulumi.set(__self__, "bucket", bucket)
1258
- if read_only is not None:
1259
- pulumi.set(__self__, "read_only", read_only)
1260
-
1261
- @property
1262
- @pulumi.getter
1263
- def bucket(self) -> str:
1264
- """
1265
- Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
1266
- """
1267
- return pulumi.get(self, "bucket")
1268
-
1269
- @property
1270
- @pulumi.getter(name="readOnly")
1271
- def read_only(self) -> Optional[bool]:
1272
- """
1273
- If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
1274
- """
1275
- return pulumi.get(self, "read_only")
1276
-
1277
-
1278
1215
  @pulumi.output_type
1279
1216
  class JobTemplateTemplateVolumeSecret(dict):
1280
1217
  @staticmethod
@@ -3245,7 +3182,7 @@ class ServiceTemplateVolume(dict):
3245
3182
  Structure is documented below.
3246
3183
  :param 'ServiceTemplateVolumeEmptyDirArgs' empty_dir: Ephemeral storage used as a shared volume.
3247
3184
  Structure is documented below.
3248
- :param 'ServiceTemplateVolumeGcsArgs' gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment and requires launch-stage to be set to ALPHA or BETA.
3185
+ :param 'ServiceTemplateVolumeGcsArgs' gcs: Represents a GCS Bucket mounted as a volume.
3249
3186
  Structure is documented below.
3250
3187
  :param 'ServiceTemplateVolumeNfsArgs' nfs: Represents an NFS mount.
3251
3188
  Structure is documented below.
@@ -3294,7 +3231,7 @@ class ServiceTemplateVolume(dict):
3294
3231
  @pulumi.getter
3295
3232
  def gcs(self) -> Optional['outputs.ServiceTemplateVolumeGcs']:
3296
3233
  """
3297
- Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment and requires launch-stage to be set to ALPHA or BETA.
3234
+ Represents a GCS Bucket mounted as a volume.
3298
3235
  Structure is documented below.
3299
3236
  """
3300
3237
  return pulumi.get(self, "gcs")
@@ -4621,19 +4558,16 @@ class GetJobTemplateTemplateVolumeResult(dict):
4621
4558
  def __init__(__self__, *,
4622
4559
  cloud_sql_instances: Sequence['outputs.GetJobTemplateTemplateVolumeCloudSqlInstanceResult'],
4623
4560
  empty_dirs: Sequence['outputs.GetJobTemplateTemplateVolumeEmptyDirResult'],
4624
- gcs: Sequence['outputs.GetJobTemplateTemplateVolumeGcResult'],
4625
4561
  name: str,
4626
4562
  secrets: Sequence['outputs.GetJobTemplateTemplateVolumeSecretResult']):
4627
4563
  """
4628
4564
  :param Sequence['GetJobTemplateTemplateVolumeCloudSqlInstanceArgs'] cloud_sql_instances: For Cloud SQL volumes, contains the specific instances that should be mounted. Visit https://cloud.google.com/sql/docs/mysql/connect-run for more information on how to connect Cloud SQL and Cloud Run.
4629
4565
  :param Sequence['GetJobTemplateTemplateVolumeEmptyDirArgs'] empty_dirs: Ephemeral storage used as a shared volume.
4630
- :param Sequence['GetJobTemplateTemplateVolumeGcArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature requires the launch stage to be set to ALPHA or BETA.
4631
4566
  :param str name: The name of the Cloud Run v2 Job.
4632
4567
  :param Sequence['GetJobTemplateTemplateVolumeSecretArgs'] secrets: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
4633
4568
  """
4634
4569
  pulumi.set(__self__, "cloud_sql_instances", cloud_sql_instances)
4635
4570
  pulumi.set(__self__, "empty_dirs", empty_dirs)
4636
- pulumi.set(__self__, "gcs", gcs)
4637
4571
  pulumi.set(__self__, "name", name)
4638
4572
  pulumi.set(__self__, "secrets", secrets)
4639
4573
 
@@ -4653,14 +4587,6 @@ class GetJobTemplateTemplateVolumeResult(dict):
4653
4587
  """
4654
4588
  return pulumi.get(self, "empty_dirs")
4655
4589
 
4656
- @property
4657
- @pulumi.getter
4658
- def gcs(self) -> Sequence['outputs.GetJobTemplateTemplateVolumeGcResult']:
4659
- """
4660
- Cloud Storage bucket mounted as a volume using GCSFuse. This feature requires the launch stage to be set to ALPHA or BETA.
4661
- """
4662
- return pulumi.get(self, "gcs")
4663
-
4664
4590
  @property
4665
4591
  @pulumi.getter
4666
4592
  def name(self) -> str:
@@ -4725,35 +4651,6 @@ class GetJobTemplateTemplateVolumeEmptyDirResult(dict):
4725
4651
  return pulumi.get(self, "size_limit")
4726
4652
 
4727
4653
 
4728
- @pulumi.output_type
4729
- class GetJobTemplateTemplateVolumeGcResult(dict):
4730
- def __init__(__self__, *,
4731
- bucket: str,
4732
- read_only: bool):
4733
- """
4734
- :param str bucket: Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
4735
- :param bool read_only: If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
4736
- """
4737
- pulumi.set(__self__, "bucket", bucket)
4738
- pulumi.set(__self__, "read_only", read_only)
4739
-
4740
- @property
4741
- @pulumi.getter
4742
- def bucket(self) -> str:
4743
- """
4744
- Name of the cloud storage bucket to back the volume. The resource service account must have permission to access the bucket.
4745
- """
4746
- return pulumi.get(self, "bucket")
4747
-
4748
- @property
4749
- @pulumi.getter(name="readOnly")
4750
- def read_only(self) -> bool:
4751
- """
4752
- If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
4753
- """
4754
- return pulumi.get(self, "read_only")
4755
-
4756
-
4757
4654
  @pulumi.output_type
4758
4655
  class GetJobTemplateTemplateVolumeSecretResult(dict):
4759
4656
  def __init__(__self__, *,
@@ -6132,7 +6029,7 @@ class GetServiceTemplateVolumeResult(dict):
6132
6029
  """
6133
6030
  :param Sequence['GetServiceTemplateVolumeCloudSqlInstanceArgs'] cloud_sql_instances: For Cloud SQL volumes, contains the specific instances that should be mounted. Visit https://cloud.google.com/sql/docs/mysql/connect-run for more information on how to connect Cloud SQL and Cloud Run.
6134
6031
  :param Sequence['GetServiceTemplateVolumeEmptyDirArgs'] empty_dirs: Ephemeral storage used as a shared volume.
6135
- :param Sequence['GetServiceTemplateVolumeGcArgs'] gcs: Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment and requires launch-stage to be set to ALPHA or BETA.
6032
+ :param Sequence['GetServiceTemplateVolumeGcArgs'] gcs: Represents a GCS Bucket mounted as a volume.
6136
6033
  :param str name: The name of the Cloud Run v2 Service.
6137
6034
  :param Sequence['GetServiceTemplateVolumeNfArgs'] nfs: Represents an NFS mount.
6138
6035
  :param Sequence['GetServiceTemplateVolumeSecretArgs'] secrets: Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
@@ -6164,7 +6061,7 @@ class GetServiceTemplateVolumeResult(dict):
6164
6061
  @pulumi.getter
6165
6062
  def gcs(self) -> Sequence['outputs.GetServiceTemplateVolumeGcResult']:
6166
6063
  """
6167
- Cloud Storage bucket mounted as a volume using GCSFuse. This feature is only supported in the gen2 execution environment and requires launch-stage to be set to ALPHA or BETA.
6064
+ Represents a GCS Bucket mounted as a volume.
6168
6065
  """
6169
6066
  return pulumi.get(self, "gcs")
6170
6067
 
@@ -1231,9 +1231,9 @@ class Service(pulumi.CustomResource):
1231
1231
  containers=[
1232
1232
  gcp.cloudrunv2.ServiceTemplateContainerArgs(
1233
1233
  name="hello-1",
1234
- ports={
1235
- "containerPort": 8080,
1236
- },
1234
+ ports=[gcp.cloudrunv2.ServiceTemplateContainerPortArgs(
1235
+ container_port=8080,
1236
+ )],
1237
1237
  image="us-docker.pkg.dev/cloudrun/container/hello",
1238
1238
  depends_ons=["hello-2"],
1239
1239
  volume_mounts=[gcp.cloudrunv2.ServiceTemplateContainerVolumeMountArgs(
@@ -1702,9 +1702,9 @@ class Service(pulumi.CustomResource):
1702
1702
  containers=[
1703
1703
  gcp.cloudrunv2.ServiceTemplateContainerArgs(
1704
1704
  name="hello-1",
1705
- ports={
1706
- "containerPort": 8080,
1707
- },
1705
+ ports=[gcp.cloudrunv2.ServiceTemplateContainerPortArgs(
1706
+ container_port=8080,
1707
+ )],
1708
1708
  image="us-docker.pkg.dev/cloudrun/container/hello",
1709
1709
  depends_ons=["hello-2"],
1710
1710
  volume_mounts=[gcp.cloudrunv2.ServiceTemplateContainerVolumeMountArgs(
@@ -1458,18 +1458,14 @@ class EnvironmentConfigWorkloadsConfigArgs:
1458
1458
  @pulumi.input_type
1459
1459
  class EnvironmentConfigWorkloadsConfigDagProcessorArgs:
1460
1460
  def __init__(__self__, *,
1461
- count: Optional[pulumi.Input[int]] = None,
1462
1461
  cpu: Optional[pulumi.Input[float]] = None,
1463
1462
  memory_gb: Optional[pulumi.Input[float]] = None,
1464
1463
  storage_gb: Optional[pulumi.Input[float]] = None):
1465
1464
  """
1466
- :param pulumi.Input[int] count: Number of DAG processors.
1467
1465
  :param pulumi.Input[float] cpu: CPU request and limit for DAG processor.
1468
1466
  :param pulumi.Input[float] memory_gb: Memory (GB) request and limit for DAG processor.
1469
1467
  :param pulumi.Input[float] storage_gb: Storage (GB) request and limit for DAG processor.
1470
1468
  """
1471
- if count is not None:
1472
- pulumi.set(__self__, "count", count)
1473
1469
  if cpu is not None:
1474
1470
  pulumi.set(__self__, "cpu", cpu)
1475
1471
  if memory_gb is not None:
@@ -1477,18 +1473,6 @@ class EnvironmentConfigWorkloadsConfigDagProcessorArgs:
1477
1473
  if storage_gb is not None:
1478
1474
  pulumi.set(__self__, "storage_gb", storage_gb)
1479
1475
 
1480
- @property
1481
- @pulumi.getter
1482
- def count(self) -> Optional[pulumi.Input[int]]:
1483
- """
1484
- Number of DAG processors.
1485
- """
1486
- return pulumi.get(self, "count")
1487
-
1488
- @count.setter
1489
- def count(self, value: Optional[pulumi.Input[int]]):
1490
- pulumi.set(self, "count", value)
1491
-
1492
1476
  @property
1493
1477
  @pulumi.getter
1494
1478
  def cpu(self) -> Optional[pulumi.Input[float]]:
@@ -1569,18 +1569,14 @@ class EnvironmentConfigWorkloadsConfigDagProcessor(dict):
1569
1569
  return super().get(key, default)
1570
1570
 
1571
1571
  def __init__(__self__, *,
1572
- count: Optional[int] = None,
1573
1572
  cpu: Optional[float] = None,
1574
1573
  memory_gb: Optional[float] = None,
1575
1574
  storage_gb: Optional[float] = None):
1576
1575
  """
1577
- :param int count: Number of DAG processors.
1578
1576
  :param float cpu: CPU request and limit for DAG processor.
1579
1577
  :param float memory_gb: Memory (GB) request and limit for DAG processor.
1580
1578
  :param float storage_gb: Storage (GB) request and limit for DAG processor.
1581
1579
  """
1582
- if count is not None:
1583
- pulumi.set(__self__, "count", count)
1584
1580
  if cpu is not None:
1585
1581
  pulumi.set(__self__, "cpu", cpu)
1586
1582
  if memory_gb is not None:
@@ -1588,14 +1584,6 @@ class EnvironmentConfigWorkloadsConfigDagProcessor(dict):
1588
1584
  if storage_gb is not None:
1589
1585
  pulumi.set(__self__, "storage_gb", storage_gb)
1590
1586
 
1591
- @property
1592
- @pulumi.getter
1593
- def count(self) -> Optional[int]:
1594
- """
1595
- Number of DAG processors.
1596
- """
1597
- return pulumi.get(self, "count")
1598
-
1599
1587
  @property
1600
1588
  @pulumi.getter
1601
1589
  def cpu(self) -> Optional[float]:
@@ -2949,29 +2937,18 @@ class GetEnvironmentConfigWorkloadsConfigResult(dict):
2949
2937
  @pulumi.output_type
2950
2938
  class GetEnvironmentConfigWorkloadsConfigDagProcessorResult(dict):
2951
2939
  def __init__(__self__, *,
2952
- count: int,
2953
2940
  cpu: float,
2954
2941
  memory_gb: float,
2955
2942
  storage_gb: float):
2956
2943
  """
2957
- :param int count: Number of DAG processors.
2958
2944
  :param float cpu: CPU request and limit for DAG processor.
2959
2945
  :param float memory_gb: Memory (GB) request and limit for DAG processor.
2960
2946
  :param float storage_gb: Storage (GB) request and limit for DAG processor.
2961
2947
  """
2962
- pulumi.set(__self__, "count", count)
2963
2948
  pulumi.set(__self__, "cpu", cpu)
2964
2949
  pulumi.set(__self__, "memory_gb", memory_gb)
2965
2950
  pulumi.set(__self__, "storage_gb", storage_gb)
2966
2951
 
2967
- @property
2968
- @pulumi.getter
2969
- def count(self) -> int:
2970
- """
2971
- Number of DAG processors.
2972
- """
2973
- return pulumi.get(self, "count")
2974
-
2975
2952
  @property
2976
2953
  @pulumi.getter
2977
2954
  def cpu(self) -> float:
@@ -3631,7 +3631,7 @@ class DiskGuestOsFeatureArgs:
3631
3631
  type: pulumi.Input[str]):
3632
3632
  """
3633
3633
  :param pulumi.Input[str] type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
3634
- Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
3634
+ Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`.
3635
3635
  """
3636
3636
  pulumi.set(__self__, "type", type)
3637
3637
 
@@ -3640,7 +3640,7 @@ class DiskGuestOsFeatureArgs:
3640
3640
  def type(self) -> pulumi.Input[str]:
3641
3641
  """
3642
3642
  The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
3643
- Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
3643
+ Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`.
3644
3644
  """
3645
3645
  return pulumi.get(self, "type")
3646
3646
 
@@ -9623,29 +9623,13 @@ class InstanceGroupManagerStatusArgs:
9623
9623
  @pulumi.input_type
9624
9624
  class InstanceGroupManagerStatusAllInstancesConfigArgs:
9625
9625
  def __init__(__self__, *,
9626
- current_revision: Optional[pulumi.Input[str]] = None,
9627
9626
  effective: Optional[pulumi.Input[bool]] = None):
9628
9627
  """
9629
- :param pulumi.Input[str] current_revision: Current all-instances configuration revision. This value is in RFC3339 text format.
9630
9628
  :param pulumi.Input[bool] effective: A bit indicating whether this configuration has been applied to all managed instances in the group.
9631
9629
  """
9632
- if current_revision is not None:
9633
- pulumi.set(__self__, "current_revision", current_revision)
9634
9630
  if effective is not None:
9635
9631
  pulumi.set(__self__, "effective", effective)
9636
9632
 
9637
- @property
9638
- @pulumi.getter(name="currentRevision")
9639
- def current_revision(self) -> Optional[pulumi.Input[str]]:
9640
- """
9641
- Current all-instances configuration revision. This value is in RFC3339 text format.
9642
- """
9643
- return pulumi.get(self, "current_revision")
9644
-
9645
- @current_revision.setter
9646
- def current_revision(self, value: Optional[pulumi.Input[str]]):
9647
- pulumi.set(self, "current_revision", value)
9648
-
9649
9633
  @property
9650
9634
  @pulumi.getter
9651
9635
  def effective(self) -> Optional[pulumi.Input[bool]]:
@@ -9666,7 +9650,7 @@ class InstanceGroupManagerStatusStatefulArgs:
9666
9650
  per_instance_configs: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]]] = None):
9667
9651
  """
9668
9652
  :param pulumi.Input[bool] has_stateful_config: A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
9669
- :param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]] per_instance_configs: Status of per-instance configs on the instances.
9653
+ :param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]] per_instance_configs: Status of per-instance configs on the instance.
9670
9654
  """
9671
9655
  if has_stateful_config is not None:
9672
9656
  pulumi.set(__self__, "has_stateful_config", has_stateful_config)
@@ -9689,7 +9673,7 @@ class InstanceGroupManagerStatusStatefulArgs:
9689
9673
  @pulumi.getter(name="perInstanceConfigs")
9690
9674
  def per_instance_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]]]:
9691
9675
  """
9692
- Status of per-instance configs on the instances.
9676
+ Status of per-instance configs on the instance.
9693
9677
  """
9694
9678
  return pulumi.get(self, "per_instance_configs")
9695
9679
 
@@ -18879,29 +18863,13 @@ class RegionInstanceGroupManagerStatusArgs:
18879
18863
  @pulumi.input_type
18880
18864
  class RegionInstanceGroupManagerStatusAllInstancesConfigArgs:
18881
18865
  def __init__(__self__, *,
18882
- current_revision: Optional[pulumi.Input[str]] = None,
18883
18866
  effective: Optional[pulumi.Input[bool]] = None):
18884
18867
  """
18885
- :param pulumi.Input[str] current_revision: Current all-instances configuration revision. This value is in RFC3339 text format.
18886
18868
  :param pulumi.Input[bool] effective: A bit indicating whether this configuration has been applied to all managed instances in the group.
18887
18869
  """
18888
- if current_revision is not None:
18889
- pulumi.set(__self__, "current_revision", current_revision)
18890
18870
  if effective is not None:
18891
18871
  pulumi.set(__self__, "effective", effective)
18892
18872
 
18893
- @property
18894
- @pulumi.getter(name="currentRevision")
18895
- def current_revision(self) -> Optional[pulumi.Input[str]]:
18896
- """
18897
- Current all-instances configuration revision. This value is in RFC3339 text format.
18898
- """
18899
- return pulumi.get(self, "current_revision")
18900
-
18901
- @current_revision.setter
18902
- def current_revision(self, value: Optional[pulumi.Input[str]]):
18903
- pulumi.set(self, "current_revision", value)
18904
-
18905
18873
  @property
18906
18874
  @pulumi.getter
18907
18875
  def effective(self) -> Optional[pulumi.Input[bool]]:
@@ -18922,7 +18890,7 @@ class RegionInstanceGroupManagerStatusStatefulArgs:
18922
18890
  per_instance_configs: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]]] = None):
18923
18891
  """
18924
18892
  :param pulumi.Input[bool] has_stateful_config: A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
18925
- :param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]] per_instance_configs: Status of per-instance configs on the instances.
18893
+ :param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]] per_instance_configs: Status of per-instance configs on the instance.
18926
18894
  """
18927
18895
  if has_stateful_config is not None:
18928
18896
  pulumi.set(__self__, "has_stateful_config", has_stateful_config)
@@ -18945,7 +18913,7 @@ class RegionInstanceGroupManagerStatusStatefulArgs:
18945
18913
  @pulumi.getter(name="perInstanceConfigs")
18946
18914
  def per_instance_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusStatefulPerInstanceConfigArgs']]]]:
18947
18915
  """
18948
- Status of per-instance configs on the instances.
18916
+ Status of per-instance configs on the instance.
18949
18917
  """
18950
18918
  return pulumi.get(self, "per_instance_configs")
18951
18919
 
@@ -25262,7 +25230,6 @@ class RegionUrlMapPathMatcherRouteRuleMatchRuleArgs:
25262
25230
  header_matches: Optional[pulumi.Input[Sequence[pulumi.Input['RegionUrlMapPathMatcherRouteRuleMatchRuleHeaderMatchArgs']]]] = None,
25263
25231
  ignore_case: Optional[pulumi.Input[bool]] = None,
25264
25232
  metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input['RegionUrlMapPathMatcherRouteRuleMatchRuleMetadataFilterArgs']]]] = None,
25265
- path_template_match: Optional[pulumi.Input[str]] = None,
25266
25233
  prefix_match: Optional[pulumi.Input[str]] = None,
25267
25234
  query_parameter_matches: Optional[pulumi.Input[Sequence[pulumi.Input['RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs']]]] = None,
25268
25235
  regex_match: Optional[pulumi.Input[str]] = None):
@@ -25289,14 +25256,6 @@ class RegionUrlMapPathMatcherRouteRuleMatchRuleArgs:
25289
25256
  UrlMap. metadataFilters only applies to Loadbalancers that have their
25290
25257
  loadBalancingScheme set to INTERNAL_SELF_MANAGED.
25291
25258
  Structure is documented below.
25292
- :param pulumi.Input[str] path_template_match: For satisfying the matchRule condition, the path of the request
25293
- must match the wildcard pattern specified in pathTemplateMatch
25294
- after removing any query parameters and anchor that may be part
25295
- of the original URL.
25296
- pathTemplateMatch must be between 1 and 255 characters
25297
- (inclusive). The pattern specified by pathTemplateMatch may
25298
- have at most 5 wildcard operators and at most 5 variable
25299
- captures in total.
25300
25259
  :param pulumi.Input[str] prefix_match: For satisfying the matchRule condition, the request's path must begin with the
25301
25260
  specified prefixMatch. prefixMatch must begin with a /. The value must be
25302
25261
  between 1 and 1024 characters. Only one of prefixMatch, fullPathMatch or
@@ -25318,8 +25277,6 @@ class RegionUrlMapPathMatcherRouteRuleMatchRuleArgs:
25318
25277
  pulumi.set(__self__, "ignore_case", ignore_case)
25319
25278
  if metadata_filters is not None:
25320
25279
  pulumi.set(__self__, "metadata_filters", metadata_filters)
25321
- if path_template_match is not None:
25322
- pulumi.set(__self__, "path_template_match", path_template_match)
25323
25280
  if prefix_match is not None:
25324
25281
  pulumi.set(__self__, "prefix_match", prefix_match)
25325
25282
  if query_parameter_matches is not None:
@@ -25393,25 +25350,6 @@ class RegionUrlMapPathMatcherRouteRuleMatchRuleArgs:
25393
25350
  def metadata_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegionUrlMapPathMatcherRouteRuleMatchRuleMetadataFilterArgs']]]]):
25394
25351
  pulumi.set(self, "metadata_filters", value)
25395
25352
 
25396
- @property
25397
- @pulumi.getter(name="pathTemplateMatch")
25398
- def path_template_match(self) -> Optional[pulumi.Input[str]]:
25399
- """
25400
- For satisfying the matchRule condition, the path of the request
25401
- must match the wildcard pattern specified in pathTemplateMatch
25402
- after removing any query parameters and anchor that may be part
25403
- of the original URL.
25404
- pathTemplateMatch must be between 1 and 255 characters
25405
- (inclusive). The pattern specified by pathTemplateMatch may
25406
- have at most 5 wildcard operators and at most 5 variable
25407
- captures in total.
25408
- """
25409
- return pulumi.get(self, "path_template_match")
25410
-
25411
- @path_template_match.setter
25412
- def path_template_match(self, value: Optional[pulumi.Input[str]]):
25413
- pulumi.set(self, "path_template_match", value)
25414
-
25415
25353
  @property
25416
25354
  @pulumi.getter(name="prefixMatch")
25417
25355
  def prefix_match(self) -> Optional[pulumi.Input[str]]:
@@ -26546,31 +26484,17 @@ class RegionUrlMapPathMatcherRouteRuleRouteActionTimeoutArgs:
26546
26484
  class RegionUrlMapPathMatcherRouteRuleRouteActionUrlRewriteArgs:
26547
26485
  def __init__(__self__, *,
26548
26486
  host_rewrite: Optional[pulumi.Input[str]] = None,
26549
- path_prefix_rewrite: Optional[pulumi.Input[str]] = None,
26550
- path_template_rewrite: Optional[pulumi.Input[str]] = None):
26487
+ path_prefix_rewrite: Optional[pulumi.Input[str]] = None):
26551
26488
  """
26552
26489
  :param pulumi.Input[str] host_rewrite: Before forwarding the request to the selected service, the request's host header is replaced with contents of hostRewrite.
26553
26490
  The value must be from 1 to 255 characters.
26554
26491
  :param pulumi.Input[str] path_prefix_rewrite: Before forwarding the request to the selected backend service, the matching portion of the request's path is replaced by pathPrefixRewrite.
26555
26492
  The value must be from 1 to 1024 characters.
26556
- :param pulumi.Input[str] path_template_rewrite: Prior to forwarding the request to the selected origin, if the
26557
- request matched a pathTemplateMatch, the matching portion of the
26558
- request's path is replaced re-written using the pattern specified
26559
- by pathTemplateRewrite.
26560
- pathTemplateRewrite must be between 1 and 255 characters
26561
- (inclusive), must start with a '/', and must only use variables
26562
- captured by the route's pathTemplate matchers.
26563
- pathTemplateRewrite may only be used when all of a route's
26564
- MatchRules specify pathTemplate.
26565
- Only one of pathPrefixRewrite and pathTemplateRewrite may be
26566
- specified.
26567
26493
  """
26568
26494
  if host_rewrite is not None:
26569
26495
  pulumi.set(__self__, "host_rewrite", host_rewrite)
26570
26496
  if path_prefix_rewrite is not None:
26571
26497
  pulumi.set(__self__, "path_prefix_rewrite", path_prefix_rewrite)
26572
- if path_template_rewrite is not None:
26573
- pulumi.set(__self__, "path_template_rewrite", path_template_rewrite)
26574
26498
 
26575
26499
  @property
26576
26500
  @pulumi.getter(name="hostRewrite")
@@ -26598,28 +26522,6 @@ class RegionUrlMapPathMatcherRouteRuleRouteActionUrlRewriteArgs:
26598
26522
  def path_prefix_rewrite(self, value: Optional[pulumi.Input[str]]):
26599
26523
  pulumi.set(self, "path_prefix_rewrite", value)
26600
26524
 
26601
- @property
26602
- @pulumi.getter(name="pathTemplateRewrite")
26603
- def path_template_rewrite(self) -> Optional[pulumi.Input[str]]:
26604
- """
26605
- Prior to forwarding the request to the selected origin, if the
26606
- request matched a pathTemplateMatch, the matching portion of the
26607
- request's path is replaced re-written using the pattern specified
26608
- by pathTemplateRewrite.
26609
- pathTemplateRewrite must be between 1 and 255 characters
26610
- (inclusive), must start with a '/', and must only use variables
26611
- captured by the route's pathTemplate matchers.
26612
- pathTemplateRewrite may only be used when all of a route's
26613
- MatchRules specify pathTemplate.
26614
- Only one of pathPrefixRewrite and pathTemplateRewrite may be
26615
- specified.
26616
- """
26617
- return pulumi.get(self, "path_template_rewrite")
26618
-
26619
- @path_template_rewrite.setter
26620
- def path_template_rewrite(self, value: Optional[pulumi.Input[str]]):
26621
- pulumi.set(self, "path_template_rewrite", value)
26622
-
26623
26525
 
26624
26526
  @pulumi.input_type
26625
26527
  class RegionUrlMapPathMatcherRouteRuleRouteActionWeightedBackendServiceArgs: