pulumi-gcp 7.34.0a1722604983__py3-none-any.whl → 7.35.0__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.

Potentially problematic release.


This version of pulumi-gcp might be problematic. Click here for more details.

pulumi_gcp/sql/outputs.py CHANGED
@@ -627,6 +627,8 @@ class DatabaseInstanceSettings(dict):
627
627
  suggest = "disk_size"
628
628
  elif key == "diskType":
629
629
  suggest = "disk_type"
630
+ elif key == "enableDataplexIntegration":
631
+ suggest = "enable_dataplex_integration"
630
632
  elif key == "enableGoogleMlIntegration":
631
633
  suggest = "enable_google_ml_integration"
632
634
  elif key == "insightsConfig":
@@ -677,6 +679,7 @@ class DatabaseInstanceSettings(dict):
677
679
  disk_size: Optional[int] = None,
678
680
  disk_type: Optional[str] = None,
679
681
  edition: Optional[str] = None,
682
+ enable_dataplex_integration: Optional[bool] = None,
680
683
  enable_google_ml_integration: Optional[bool] = None,
681
684
  insights_config: Optional['outputs.DatabaseInstanceSettingsInsightsConfig'] = None,
682
685
  ip_configuration: Optional['outputs.DatabaseInstanceSettingsIpConfiguration'] = None,
@@ -704,11 +707,12 @@ class DatabaseInstanceSettings(dict):
704
707
  :param str connector_enforcement: Specifies if connections must use Cloud SQL connectors.
705
708
  :param 'DatabaseInstanceSettingsDataCacheConfigArgs' data_cache_config: Data cache configurations.
706
709
  :param bool deletion_protection_enabled: Configuration to protect against accidental instance deletion.
707
- :param bool disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`.
710
+ :param bool disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`. Note that if `disk_size` is set, future `pulumi up` calls will attempt to delete the instance in order to resize the disk to the value specified in disk_size if it has been resized. To avoid this, ensure that `lifecycle.ignore_changes` is applied to `disk_size`.
708
711
  :param int disk_autoresize_limit: The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit.
709
- :param int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB.
712
+ :param int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
710
713
  :param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to `PD_SSD`.
711
714
  :param str edition: The edition of the instance, can be `ENTERPRISE` or `ENTERPRISE_PLUS`.
715
+ :param bool enable_dataplex_integration: Enables [Cloud SQL instance integration with Dataplex](https://cloud.google.com/sql/docs/mysql/dataplex-catalog-integration). MySQL, Postgres and SQL Server instances are supported for this feature. Defaults to `false`.
712
716
  :param bool enable_google_ml_integration: Enables [Cloud SQL instances to connect to Vertex AI](https://cloud.google.com/sql/docs/postgres/integrate-cloud-sql-with-vertex-ai) and pass requests for real-time predictions and insights. Defaults to `false`.
713
717
  :param 'DatabaseInstanceSettingsInsightsConfigArgs' insights_config: Configuration of Query Insights.
714
718
  :param 'DatabaseInstanceSettingsMaintenanceWindowArgs' maintenance_window: Declares a one-hour maintenance window when an Instance can automatically restart to apply updates. The maintenance window is specified in UTC time.
@@ -751,6 +755,8 @@ class DatabaseInstanceSettings(dict):
751
755
  pulumi.set(__self__, "disk_type", disk_type)
752
756
  if edition is not None:
753
757
  pulumi.set(__self__, "edition", edition)
758
+ if enable_dataplex_integration is not None:
759
+ pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
754
760
  if enable_google_ml_integration is not None:
755
761
  pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
756
762
  if insights_config is not None:
@@ -867,7 +873,7 @@ class DatabaseInstanceSettings(dict):
867
873
  @pulumi.getter(name="diskAutoresize")
868
874
  def disk_autoresize(self) -> Optional[bool]:
869
875
  """
870
- Enables auto-resizing of the storage size. Defaults to `true`.
876
+ Enables auto-resizing of the storage size. Defaults to `true`. Note that if `disk_size` is set, future `pulumi up` calls will attempt to delete the instance in order to resize the disk to the value specified in disk_size if it has been resized. To avoid this, ensure that `lifecycle.ignore_changes` is applied to `disk_size`.
871
877
  """
872
878
  return pulumi.get(self, "disk_autoresize")
873
879
 
@@ -883,7 +889,7 @@ class DatabaseInstanceSettings(dict):
883
889
  @pulumi.getter(name="diskSize")
884
890
  def disk_size(self) -> Optional[int]:
885
891
  """
886
- The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB.
892
+ The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
887
893
  """
888
894
  return pulumi.get(self, "disk_size")
889
895
 
@@ -903,6 +909,14 @@ class DatabaseInstanceSettings(dict):
903
909
  """
904
910
  return pulumi.get(self, "edition")
905
911
 
912
+ @property
913
+ @pulumi.getter(name="enableDataplexIntegration")
914
+ def enable_dataplex_integration(self) -> Optional[bool]:
915
+ """
916
+ Enables [Cloud SQL instance integration with Dataplex](https://cloud.google.com/sql/docs/mysql/dataplex-catalog-integration). MySQL, Postgres and SQL Server instances are supported for this feature. Defaults to `false`.
917
+ """
918
+ return pulumi.get(self, "enable_dataplex_integration")
919
+
906
920
  @property
907
921
  @pulumi.getter(name="enableGoogleMlIntegration")
908
922
  def enable_google_ml_integration(self) -> Optional[bool]:
@@ -1299,8 +1313,8 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
1299
1313
  start_date: str,
1300
1314
  time: str):
1301
1315
  """
1302
- :param str end_date: "deny maintenance period" end date. If the year of the end date is empty, the year of the start date also must be empty. In this case, it means the no maintenance interval recurs every year. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
1303
- :param str start_date: "deny maintenance period" start date. If the year of the start date is empty, the year of the end date also must be empty. In this case, it means the deny maintenance period recurs every year. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
1316
+ :param str end_date: "deny maintenance period" end date. If the year of the end date is empty, the year of the start date also must be empty. In this case, it means the no maintenance interval recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
1317
+ :param str start_date: "deny maintenance period" start date. If the year of the start date is empty, the year of the end date also must be empty. In this case, it means the deny maintenance period recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
1304
1318
  :param str time: Time in UTC when the "deny maintenance period" starts on startDate and ends on endDate. The time is in format: HH:mm:SS, i.e., 00:00:00
1305
1319
  """
1306
1320
  pulumi.set(__self__, "end_date", end_date)
@@ -1311,7 +1325,7 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
1311
1325
  @pulumi.getter(name="endDate")
1312
1326
  def end_date(self) -> str:
1313
1327
  """
1314
- "deny maintenance period" end date. If the year of the end date is empty, the year of the start date also must be empty. In this case, it means the no maintenance interval recurs every year. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
1328
+ "deny maintenance period" end date. If the year of the end date is empty, the year of the start date also must be empty. In this case, it means the no maintenance interval recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
1315
1329
  """
1316
1330
  return pulumi.get(self, "end_date")
1317
1331
 
@@ -1319,7 +1333,7 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
1319
1333
  @pulumi.getter(name="startDate")
1320
1334
  def start_date(self) -> str:
1321
1335
  """
1322
- "deny maintenance period" start date. If the year of the start date is empty, the year of the end date also must be empty. In this case, it means the deny maintenance period recurs every year. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
1336
+ "deny maintenance period" start date. If the year of the start date is empty, the year of the end date also must be empty. In this case, it means the deny maintenance period recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
1323
1337
  """
1324
1338
  return pulumi.get(self, "start_date")
1325
1339
 
@@ -1479,7 +1493,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1479
1493
  This setting can be updated, but it cannot be removed after it is set.
1480
1494
  :param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
1481
1495
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1482
- :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1496
+ :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1483
1497
  * For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
1484
1498
  * For MySQL instances, use the same value pairs as the PostgreSQL instances.
1485
1499
  * For SQL Server instances, set it to `ALLOW_UNENCRYPTED_AND_ENCRYPTED` when `require_ssl=false` and `ENCRYPTED_ONLY` otherwise.
@@ -1565,7 +1579,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1565
1579
  @pulumi.getter(name="sslMode")
1566
1580
  def ssl_mode(self) -> Optional[str]:
1567
1581
  """
1568
- Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1582
+ Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1569
1583
  * For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
1570
1584
  * For MySQL instances, use the same value pairs as the PostgreSQL instances.
1571
1585
  * For SQL Server instances, set it to `ALLOW_UNENCRYPTED_AND_ENCRYPTED` when `require_ssl=false` and `ENCRYPTED_ONLY` otherwise.
@@ -2560,6 +2574,7 @@ class GetDatabaseInstanceSettingResult(dict):
2560
2574
  disk_size: int,
2561
2575
  disk_type: str,
2562
2576
  edition: str,
2577
+ enable_dataplex_integration: bool,
2563
2578
  enable_google_ml_integration: bool,
2564
2579
  insights_configs: Sequence['outputs.GetDatabaseInstanceSettingInsightsConfigResult'],
2565
2580
  ip_configurations: Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationResult'],
@@ -2589,6 +2604,7 @@ class GetDatabaseInstanceSettingResult(dict):
2589
2604
  :param int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB.
2590
2605
  :param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to PD_SSD.
2591
2606
  :param str edition: The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS.
2607
+ :param bool enable_dataplex_integration: Enables Dataplex Integration.
2592
2608
  :param bool enable_google_ml_integration: Enables Vertex AI Integration.
2593
2609
  :param Sequence['GetDatabaseInstanceSettingInsightsConfigArgs'] insights_configs: Configuration of Query Insights.
2594
2610
  :param Sequence['GetDatabaseInstanceSettingMaintenanceWindowArgs'] maintenance_windows: Declares a one-hour maintenance window when an Instance can automatically restart to apply updates. The maintenance window is specified in UTC time.
@@ -2614,6 +2630,7 @@ class GetDatabaseInstanceSettingResult(dict):
2614
2630
  pulumi.set(__self__, "disk_size", disk_size)
2615
2631
  pulumi.set(__self__, "disk_type", disk_type)
2616
2632
  pulumi.set(__self__, "edition", edition)
2633
+ pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
2617
2634
  pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
2618
2635
  pulumi.set(__self__, "insights_configs", insights_configs)
2619
2636
  pulumi.set(__self__, "ip_configurations", ip_configurations)
@@ -2745,6 +2762,14 @@ class GetDatabaseInstanceSettingResult(dict):
2745
2762
  """
2746
2763
  return pulumi.get(self, "edition")
2747
2764
 
2765
+ @property
2766
+ @pulumi.getter(name="enableDataplexIntegration")
2767
+ def enable_dataplex_integration(self) -> bool:
2768
+ """
2769
+ Enables Dataplex Integration.
2770
+ """
2771
+ return pulumi.get(self, "enable_dataplex_integration")
2772
+
2748
2773
  @property
2749
2774
  @pulumi.getter(name="enableGoogleMlIntegration")
2750
2775
  def enable_google_ml_integration(self) -> bool:
@@ -3142,7 +3167,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3142
3167
  :param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
3143
3168
  :param Sequence['GetDatabaseInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
3144
3169
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
3145
- :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
3170
+ :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
3146
3171
  """
3147
3172
  pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
3148
3173
  pulumi.set(__self__, "authorized_networks", authorized_networks)
@@ -3210,7 +3235,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3210
3235
  @pulumi.getter(name="sslMode")
3211
3236
  def ssl_mode(self) -> str:
3212
3237
  """
3213
- Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
3238
+ Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
3214
3239
  """
3215
3240
  return pulumi.get(self, "ssl_mode")
3216
3241
 
@@ -4052,6 +4077,7 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
4052
4077
  disk_size: int,
4053
4078
  disk_type: str,
4054
4079
  edition: str,
4080
+ enable_dataplex_integration: bool,
4055
4081
  enable_google_ml_integration: bool,
4056
4082
  insights_configs: Sequence['outputs.GetDatabaseInstancesInstanceSettingInsightsConfigResult'],
4057
4083
  ip_configurations: Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationResult'],
@@ -4081,6 +4107,7 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
4081
4107
  :param int disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB.
4082
4108
  :param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to PD_SSD.
4083
4109
  :param str edition: The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS.
4110
+ :param bool enable_dataplex_integration: Enables Dataplex Integration.
4084
4111
  :param bool enable_google_ml_integration: Enables Vertex AI Integration.
4085
4112
  :param Sequence['GetDatabaseInstancesInstanceSettingInsightsConfigArgs'] insights_configs: Configuration of Query Insights.
4086
4113
  :param Sequence['GetDatabaseInstancesInstanceSettingMaintenanceWindowArgs'] maintenance_windows: Declares a one-hour maintenance window when an Instance can automatically restart to apply updates. The maintenance window is specified in UTC time.
@@ -4106,6 +4133,7 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
4106
4133
  pulumi.set(__self__, "disk_size", disk_size)
4107
4134
  pulumi.set(__self__, "disk_type", disk_type)
4108
4135
  pulumi.set(__self__, "edition", edition)
4136
+ pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
4109
4137
  pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
4110
4138
  pulumi.set(__self__, "insights_configs", insights_configs)
4111
4139
  pulumi.set(__self__, "ip_configurations", ip_configurations)
@@ -4237,6 +4265,14 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
4237
4265
  """
4238
4266
  return pulumi.get(self, "edition")
4239
4267
 
4268
+ @property
4269
+ @pulumi.getter(name="enableDataplexIntegration")
4270
+ def enable_dataplex_integration(self) -> bool:
4271
+ """
4272
+ Enables Dataplex Integration.
4273
+ """
4274
+ return pulumi.get(self, "enable_dataplex_integration")
4275
+
4240
4276
  @property
4241
4277
  @pulumi.getter(name="enableGoogleMlIntegration")
4242
4278
  def enable_google_ml_integration(self) -> bool:
@@ -4634,7 +4670,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4634
4670
  :param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
4635
4671
  :param Sequence['GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
4636
4672
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
4637
- :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
4673
+ :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
4638
4674
  """
4639
4675
  pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
4640
4676
  pulumi.set(__self__, "authorized_networks", authorized_networks)
@@ -4702,7 +4738,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4702
4738
  @pulumi.getter(name="sslMode")
4703
4739
  def ssl_mode(self) -> str:
4704
4740
  """
4705
- Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcment options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
4741
+ Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
4706
4742
  """
4707
4743
  return pulumi.get(self, "ssl_mode")
4708
4744
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.34.0a1722604983
3
+ Version: 7.35.0
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -2,18 +2,18 @@ pulumi_gcp/__init__.py,sha256=1byZ3MWk1s969rzxieQP14PfIIq43WABWjhxRgJ9I0k,198171
2
2
  pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
3
3
  pulumi_gcp/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
4
  pulumi_gcp/provider.py,sha256=O4LahjqHEigGxkzUXyXt82ajo-foURLYMJu5LizJfuQ,191899
5
- pulumi_gcp/pulumi-plugin.json,sha256=LPy384n1UOpasWj9UtsCah5zyZqc9meI1OdRgGsW1YY,80
5
+ pulumi_gcp/pulumi-plugin.json,sha256=NmP1ID000achf2IcPiRL6-yn-zXcCWmmWh4_th4cjfU,63
6
6
  pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
8
8
  pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=a7n0fXqd0P2VIQDnH9jJDauHGPeE4ngHbPGGAi725iQ,5747
9
9
  pulumi_gcp/accessapproval/get_organization_service_account.py,sha256=6zwpbd1egzHdf6BxUf5uvGaKxW8frPPmKDVR2raOePU,6067
10
10
  pulumi_gcp/accessapproval/get_project_service_account.py,sha256=K-IjvuV5ee-Vp0sZWLI2EL022CPpMFkGBj3DUmYMi08,5800
11
11
  pulumi_gcp/accesscontextmanager/__init__.py,sha256=bqc5l7s2LcMSPzStTvFqIljhyHnaMrgI5sy9Z39q62A,991
12
- pulumi_gcp/accesscontextmanager/_inputs.py,sha256=jzXWTVQmfRuDamlF3UBoc8bzD-5vE2zQ0KVf7HLeWhw,384507
12
+ pulumi_gcp/accesscontextmanager/_inputs.py,sha256=PL1SRLEKQxT0HcgQNJFRF25jzLAT6PBeHQ2F4FXF354,384930
13
13
  pulumi_gcp/accesscontextmanager/access_level.py,sha256=MQcjvfHDvVtnTRu1jtMc2jmbDXuYZWT8JjhhW5ocv7A,24163
14
14
  pulumi_gcp/accesscontextmanager/access_level_condition.py,sha256=zJfbKRpr1NpedvHzOapE2UAGunqpdh6fMGO4qJ0kqT0,43257
15
15
  pulumi_gcp/accesscontextmanager/access_levels.py,sha256=rqFB5-3Ua5Rf6m7icMbWuey3f_NVLTsKm-Rh_lfbbjE,15172
16
- pulumi_gcp/accesscontextmanager/access_policy.py,sha256=uKnwmrMEVTH5VcDTmxdsz4zF1gQRCYTPt5tEoM1hCAw,18322
16
+ pulumi_gcp/accesscontextmanager/access_policy.py,sha256=xw8gw5ECH7U7LSMaOq3DVgq7ibcJ7ey-XQKBXL0EjHI,18422
17
17
  pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py,sha256=WB7CENLN9iHm-VafuDXNwaYGyfS7kTtRSeLmK5y-b_s,33638
18
18
  pulumi_gcp/accesscontextmanager/access_policy_iam_member.py,sha256=5RDHq2eBe6jMfxbIUzQeEGJZXiRV832Sq7pBD9YMXko,33239
19
19
  pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py,sha256=INWiexVCAfomzhwvVLt1izXn5y0T1e7haV1hNwbOCjo,19797
@@ -22,7 +22,7 @@ pulumi_gcp/accesscontextmanager/egress_policy.py,sha256=82MGvIEhPA8eGumV63DiRu0S
22
22
  pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py,sha256=BjAGOZBqs-nyllfUCImOEPcK4dLKUc9l_Fkt38YWOOE,20689
23
23
  pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py,sha256=Pg1LE0puZSOzXB3oh05Ghhe2OhxQRqXaUgoMspISjNA,4393
24
24
  pulumi_gcp/accesscontextmanager/ingress_policy.py,sha256=LKqxkBq69jyG5V2ARipwK257zgirSz-0KAwJS-mKCg4,9847
25
- pulumi_gcp/accesscontextmanager/outputs.py,sha256=DB99o2_x5yn9v4IQd7yT-uv91r5mou9qBWEnc9yCI1I,278883
25
+ pulumi_gcp/accesscontextmanager/outputs.py,sha256=pPN8ton6EvAJ0mZmUTSv6pClJPcz216BbFxGLtwIvzc,279172
26
26
  pulumi_gcp/accesscontextmanager/service_perimeter.py,sha256=WXv6aTeOYgw1Or5x_0r8hTY-EzvV246Bu2hg1AOKyOg,58822
27
27
  pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py,sha256=8aBRFNhIozGXBYtUxuD5-bcCjbZEYJrN5KNAgstn44k,15470
28
28
  pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py,sha256=eK1TUxijaEDR7tHVi6rP8m-2LxxQuTjQOYUsgUji5yo,16568
@@ -159,7 +159,7 @@ pulumi_gcp/bigquery/connection.py,sha256=zkBym3rWakI7UPiFnbwhnSRkBHmRkdSdsMNKttE
159
159
  pulumi_gcp/bigquery/connection_iam_binding.py,sha256=jeir1feh5IoF_p3MBMcpcv63u80csdAUxMY-HYBCW2Q,45414
160
160
  pulumi_gcp/bigquery/connection_iam_member.py,sha256=hw5BQ_-U9d_R1X995tqEGTJ79OdGZY99ZmR2dcXIBc8,45015
161
161
  pulumi_gcp/bigquery/connection_iam_policy.py,sha256=JLZygHRj7BgbjsMUjfLfWLAhskTSgSqodwTXXlewCSE,31697
162
- pulumi_gcp/bigquery/data_transfer_config.py,sha256=o5H6-pn7PLbx8JOkbOsQ6leTLruiRqe2hBREvY34bEY,61282
162
+ pulumi_gcp/bigquery/data_transfer_config.py,sha256=PLUlSFPiv-polGnLe4FFkmzesS-9-pU-gxvoldtvJ9E,63552
163
163
  pulumi_gcp/bigquery/dataset.py,sha256=UgzFhmXgMiCEsh7eg30lJUFdFLCBeechm0doVXYDvK8,98326
164
164
  pulumi_gcp/bigquery/dataset_access.py,sha256=JZ50wuRymd6Bqymn8AkPg5qliAkyrq_kdOs735DT_kY,49222
165
165
  pulumi_gcp/bigquery/dataset_iam_binding.py,sha256=OroMS-po_P8akCBpBm-H-0KgWYUE8a9T-hFQ9ScXG1w,34789
@@ -394,7 +394,7 @@ pulumi_gcp/composer/outputs.py,sha256=KUUtqQwHoNY_2WXjvLF43HNJ0l1p8-YyqIjBi7-g6A
394
394
  pulumi_gcp/composer/user_workloads_config_map.py,sha256=vj8oOCHynJrXn2A2KOudU3VMxZJJ9clcVnqHXuIgMQI,18826
395
395
  pulumi_gcp/composer/user_workloads_secret.py,sha256=Dk8-XUEgwNMbFiHRuu4-jxunRQsOqAchxUDSJrT_NGU,17354
396
396
  pulumi_gcp/compute/__init__.py,sha256=hq6pqNS4Ti2lNjMGktp0ugagklhHVzWDe60eRxpByPg,7469
397
- pulumi_gcp/compute/_inputs.py,sha256=LNg8dPWo-33t_BinCG-AmiASn2IB0sbETmUYlCUQOes,2728529
397
+ pulumi_gcp/compute/_inputs.py,sha256=-bLYKmnqYxVsDMZ5g8KjlF_vM3SnEaqOUwc5CJPZt_g,2725820
398
398
  pulumi_gcp/compute/address.py,sha256=qS7SVwiDTdPTZMgN2u9vselU_RNa4FhKWak_uYxCms0,69402
399
399
  pulumi_gcp/compute/attached_disk.py,sha256=qJc7CeBDksoL9cUtvN621nFhM0DTkiZ631I23vKkl0A,28043
400
400
  pulumi_gcp/compute/autoscaler.py,sha256=9gklkTDUrkVkX9ThdEOEtEsV7OuBrZrrZsYHCdmvK_8,32510
@@ -409,7 +409,7 @@ pulumi_gcp/compute/backend_service_iam_member.py,sha256=uV7oiXSKouYdVfH2Id5O3Rb9
409
409
  pulumi_gcp/compute/backend_service_iam_policy.py,sha256=cFjuCmzfbxk3-Pkq71mJQMtNf70r6y8LR7xxtrOJUfw,15586
410
410
  pulumi_gcp/compute/backend_service_signed_url_key.py,sha256=eDookQfM-7m_UN8v4o1kidd0xwB5tDArVF7fqffGicE,18131
411
411
  pulumi_gcp/compute/ca_external_account_key.py,sha256=ok9mf--uACz-k72ZAKZxf-hVfljCXrU5xrdIboL0q_o,15715
412
- pulumi_gcp/compute/disk.py,sha256=xPyOV7aLxAHWGj5tgam6FZVsr36yTnQVCzq5KO9G2hI,129638
412
+ pulumi_gcp/compute/disk.py,sha256=LdY2JEsndcGHxf3dNHGO1to4h7Wf_UApMFpIL4nTrzM,132310
413
413
  pulumi_gcp/compute/disk_async_replication.py,sha256=ck-0bxJSenGx_ywuPl9mbIOKSw537zzYnrAKgVjPsEE,10359
414
414
  pulumi_gcp/compute/disk_iam_binding.py,sha256=bRfZRZuzSWFIXt7zibEJb7MkPO_yZSqeJrVQOS8NU9A,39734
415
415
  pulumi_gcp/compute/disk_iam_member.py,sha256=dWvCCujwA_8qdnvTF6xCk4K9Xm0pAKRI8NPfuu8jXSk,39335
@@ -429,13 +429,13 @@ pulumi_gcp/compute/get_backend_service.py,sha256=zJQhatTQmpVU88gkwTkpxzOfW8Peqou
429
429
  pulumi_gcp/compute/get_backend_service_iam_policy.py,sha256=xmzwgpoc6xLFLV20tLQqVUcR6qTpW7L1qK56ET4ergA,5232
430
430
  pulumi_gcp/compute/get_certificate.py,sha256=z0speuhqT89eDInaWMZIbnTu4DqJRLmLwr7ieEgIovc,7245
431
431
  pulumi_gcp/compute/get_default_service_account.py,sha256=OsO2VPqNt8LFjTJJQ9VpYW4UV-DnydXvklic1JjWltk,5963
432
- pulumi_gcp/compute/get_disk.py,sha256=YaUF7JXyta9yQQm2haN62XPB9qICEVffHwOhMG3Ci10,23860
432
+ pulumi_gcp/compute/get_disk.py,sha256=EzeW2ynXJ_QPRM2vu2jMhqIluy-2nkHfcClvLObF89Q,24303
433
433
  pulumi_gcp/compute/get_disk_iam_policy.py,sha256=G7khLx9V3HggE6K5at-LMQPGw8WYQXxGlZGbdfEbMfE,6604
434
434
  pulumi_gcp/compute/get_forwarding_rule.py,sha256=gk0sSJpqqeNhCCW7aUXz6lOlWgLD4rmRfliivyeOBzM,19724
435
435
  pulumi_gcp/compute/get_forwarding_rules.py,sha256=TdtvZ_4hJYdm_2PD9kEDvCqxP7nOxCp1q1MHQU077OM,4632
436
436
  pulumi_gcp/compute/get_global_address.py,sha256=yBM8411NL7YqG5YKMr3Q3nAXRKu12UAxdd68UeGishU,9314
437
437
  pulumi_gcp/compute/get_global_forwarding_rule.py,sha256=0UGjh_KPfSKZctufwz1dvCvUNB_IQuhyZDbcLKfvIBQ,14766
438
- pulumi_gcp/compute/get_hc_vpn_gateway.py,sha256=tuWOdyIg84_2J3Y3pGuT0Z2fWWlPiaASPDLZx7EB9Mo,6675
438
+ pulumi_gcp/compute/get_hc_vpn_gateway.py,sha256=opFDsBGYMD4w4pcErmQd09EU7-vekQM4zJV7V58_LwA,7208
439
439
  pulumi_gcp/compute/get_health_check.py,sha256=qk9I9fC-TIJVTXix0vnRlZvZ4Xy9kAaQnzP8w7Lmnqo,11886
440
440
  pulumi_gcp/compute/get_image.py,sha256=aYxBqQdjPLYD6TKCm2yxtjMRYEiPrkMbp-1uLfT8hsE,17524
441
441
  pulumi_gcp/compute/get_image_iam_policy.py,sha256=pEXeUf6UBZea-msrUcOwcLzw_YmF_zTZgKPSZXupdHs,5374
@@ -444,7 +444,7 @@ pulumi_gcp/compute/get_instance_group.py,sha256=bRuxfKIAKNO3SimYYUgSHl73vKgMP_jI
444
444
  pulumi_gcp/compute/get_instance_group_manager.py,sha256=d1U7BNPEwJ9wzuxBENcXWANbaOeLjMsDSIhS4hgVvBA,20118
445
445
  pulumi_gcp/compute/get_instance_iam_policy.py,sha256=gFGYkZW5YYzatD44COs_mPPEgNWSNkzxebXgNuxLQxE,6926
446
446
  pulumi_gcp/compute/get_instance_serial_port.py,sha256=t1jiFTRdgm4kbIMsSUwxR6YTWYJNgloxgdLXHZ7ZE7c,10227
447
- pulumi_gcp/compute/get_instance_template.py,sha256=peiu7Zfori-BCEY1FdZFapTUNKO2Ctd3MCp4Qi28gbA,28591
447
+ pulumi_gcp/compute/get_instance_template.py,sha256=zkYdvlkdAw1oqNS6eypeSA_4r6akb6cDSaznMMMM7dA,28715
448
448
  pulumi_gcp/compute/get_lbip_ranges.py,sha256=fJ9Fm6KuQGJZ4oDdOBpErYJ1ASBGs5yACOi4wvNoLAM,3644
449
449
  pulumi_gcp/compute/get_machine_image_iam_policy.py,sha256=5J5WQZrhXy2Q4L8FLTShs6ybrEnWcOIQ6BQixktN0Zs,5368
450
450
  pulumi_gcp/compute/get_machine_types.py,sha256=3FbidVXQ1tUTlXaMpqLnGfHluWudDOZ_xIM84OvfGMw,5776
@@ -458,7 +458,7 @@ pulumi_gcp/compute/get_region_backend_service_iam_policy.py,sha256=FqB_eVZBhXsWY
458
458
  pulumi_gcp/compute/get_region_disk.py,sha256=ncstQzoXx9BN1_nA6h95tAGIubXBNLtet7PdWQTkJ9w,16409
459
459
  pulumi_gcp/compute/get_region_disk_iam_policy.py,sha256=UYXhOsYbLoLgDd4ckivGjglt0erDEOVBFvIix8balXE,6865
460
460
  pulumi_gcp/compute/get_region_instance_group.py,sha256=k10Hh12hutQxZZoiLlVJdNzY_jw-cWuI0UnlgkJorzU,8012
461
- pulumi_gcp/compute/get_region_instance_template.py,sha256=1w5Gzmp3EycRvsmcbQjNrjf4O42NWTXHS0Arb5pX0t4,27372
461
+ pulumi_gcp/compute/get_region_instance_template.py,sha256=jysLYtdSYaVxnzImquvWT-GanmtnpEWvxBmrrfQONGM,27508
462
462
  pulumi_gcp/compute/get_region_network_endpoint_group.py,sha256=hnOTt608TpB3Pg7nEE38-nXkLVbje9QE3IaAbnjmNSo,11677
463
463
  pulumi_gcp/compute/get_region_ssl_certificate.py,sha256=YOvb1ZdfpkVxvK0-W_4ntgN_VnKMJeYpjzqjlmbuLq0,8290
464
464
  pulumi_gcp/compute/get_regions.py,sha256=Vzclexf0DPwttFQCvE9Hw7zaLKUIXhfetVJUCCszNWQ,5376
@@ -468,7 +468,7 @@ pulumi_gcp/compute/get_router.py,sha256=4-8OfJdXOoyAt87NABUguM03DVXiyLKWm_n3m6Lg
468
468
  pulumi_gcp/compute/get_router_nat.py,sha256=dWfKB1wW4bIKlbYNJQrpZzYUtO8XholNvscoFvcSqhs,16311
469
469
  pulumi_gcp/compute/get_router_status.py,sha256=55vpqAU-wi6u0cKKfmtuU-wZnsOvGWCf57vjEcCbmGE,7339
470
470
  pulumi_gcp/compute/get_security_policy.py,sha256=_Ts8qhqBd3LSMraKKvFDShHxFgr-wCTVFxEe9AT1agE,9291
471
- pulumi_gcp/compute/get_snapshot.py,sha256=sIk06qSQAqwFzg92wzSqQn0a0-xIcbW-QRYMXAdPNe4,15716
471
+ pulumi_gcp/compute/get_snapshot.py,sha256=i7jzvIMZHrUMX_xqQ7u17yBYfa-R0pNq2Sr_bz2RWbE,15824
472
472
  pulumi_gcp/compute/get_snapshot_iam_policy.py,sha256=HZ16bqUM0zmBkZRsQEOTFVAr8yVvm36Wkwye0JObmPw,5439
473
473
  pulumi_gcp/compute/get_ssl_policy.py,sha256=zFFIlG7iDfftcRPFubSMI0Yz9rU5Ntfh5SfD2gve5NM,8314
474
474
  pulumi_gcp/compute/get_subnetwork.py,sha256=b4SCljLt8kIvqdzAoXbW0izhrcoj5ekFrr91AxtC1i4,10061
@@ -480,7 +480,7 @@ pulumi_gcp/compute/global_address.py,sha256=c7sIkTeHjZXU7GBzexl3V1nw-BxbGEmDVUkd
480
480
  pulumi_gcp/compute/global_forwarding_rule.py,sha256=k0S_9mTzzfw8ZnXidYHqmWww9geL9D54uXH10hJ2bSQ,140525
481
481
  pulumi_gcp/compute/global_network_endpoint.py,sha256=-iE8-9ovkolvkNe6HTg3PlxuV1uhDRgZrw0BmXii8Qo,19582
482
482
  pulumi_gcp/compute/global_network_endpoint_group.py,sha256=fSZaC0XA0havktgNYyDZ4i2jd-6S4z9SLStYQGtyvWU,24525
483
- pulumi_gcp/compute/ha_vpn_gateway.py,sha256=id9LcooSEI9L8CHaQDQuHMrfDYDfAh5Lrc1WHdkuF1s,33305
483
+ pulumi_gcp/compute/ha_vpn_gateway.py,sha256=4o1IM7xgJhhJpBhepnixiXq2a1S-buLtbsEjrC4zoHA,36628
484
484
  pulumi_gcp/compute/health_check.py,sha256=ulSafdmAAEbf9ReHy8daYJYGYqeJgtFBs9pNhEJYhi8,73881
485
485
  pulumi_gcp/compute/http_health_check.py,sha256=yWue-sgPUmSi5pNcSishZtvZW-FYw9dMP2-8hpO3l04,37813
486
486
  pulumi_gcp/compute/https_health_check.py,sha256=1qIVpYhv6COEC5aN_3Uz2gmTLzCZyvfSw1pfmPWJi5U,37895
@@ -524,7 +524,7 @@ pulumi_gcp/compute/node_template.py,sha256=L7jb3K0ot6Pt8F3FBlOwPuDPXiF9q8G4nQ1p2
524
524
  pulumi_gcp/compute/organization_security_policy.py,sha256=mJ7JCQ3VCKkHj6BXb4K7rDcL7tSD2cSSV58K5p1Bmpk,19298
525
525
  pulumi_gcp/compute/organization_security_policy_association.py,sha256=OtLFsD2bRD5ZZjo6JP9ixW1I5_BuNsMPT1lLL0vYXG0,16293
526
526
  pulumi_gcp/compute/organization_security_policy_rule.py,sha256=C_0FZG1s2b7KUiP2CYPD41GhEfRhGbMq6m-9ewQ8EXU,35312
527
- pulumi_gcp/compute/outputs.py,sha256=og6ytLn8hP7SYFmws5fYcgZl0REqH51M1NUiI8Vuoq0,2503081
527
+ pulumi_gcp/compute/outputs.py,sha256=BzKv8vIkHeHpHV4W9q-dLdOMK7aWYtfnX72Xxi4GYIc,2500839
528
528
  pulumi_gcp/compute/packet_mirroring.py,sha256=xTuTLNXb0-jUYF8gwWJHKOvgl_PPZvDaA_B0iHvhqns,34961
529
529
  pulumi_gcp/compute/per_instance_config.py,sha256=TnfxazuJ-4nhKk8SVtXMVuUfS_lfKTEH8Vl9bxDzr2A,38371
530
530
  pulumi_gcp/compute/project_cloud_armor_tier.py,sha256=Oy_B24uxg0sATxqHAY7S4ZrFwXU-wNjNGlhHgKRFVyE,13127
@@ -602,7 +602,7 @@ pulumi_gcp/config/__init__.pyi,sha256=FrXFFopzbUbxf_yM6z9qud7BFGxstAZNWr1PEGHVu4
602
602
  pulumi_gcp/config/outputs.py,sha256=Q96GtTVg1WzFmBimxYM36KLhlaG0_jQONtYWi0r7BJk,1234
603
603
  pulumi_gcp/config/vars.py,sha256=FN3JqxrY6IycALTELQkALNPQcpTT8qH6fvLEYaKbmdU,24351
604
604
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
605
- pulumi_gcp/container/_inputs.py,sha256=1y2ZdYEfqG-K1J7A66wKxeYVcguJXNoLKEp5Omg8GLY,896722
605
+ pulumi_gcp/container/_inputs.py,sha256=8uKb6H74qmSwRkVx7IAmk791Kt5gFQ5NGg-s8EUZdCY,897286
606
606
  pulumi_gcp/container/attached_cluster.py,sha256=D1n4w57ViQudUVX8Tj8yWsRq7WCNSfBOlrQjS21w5gA,70883
607
607
  pulumi_gcp/container/aws_cluster.py,sha256=yTpg1Z2-Vg6O2t1_vXskYNeOgKyugXRbZJAV8qj-PJY,68728
608
608
  pulumi_gcp/container/aws_node_pool.py,sha256=MUF9ZtD5iMZLlYtbGhsHBEkG2thaCLgYna3qhLXAgeU,76935
@@ -619,7 +619,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=dyzQAJTW9-VNRSPCjPfdvmnPd17_0
619
619
  pulumi_gcp/container/get_registry_image.py,sha256=rW5Iu05PLEuAh0ZS8bgAUiw7v-24NtwpY_rEGv_rs2I,7166
620
620
  pulumi_gcp/container/get_registry_repository.py,sha256=Yoc8aOM0EeT1wqRSpdKUqiXdC0OkbYIEBaaDOKiK654,5527
621
621
  pulumi_gcp/container/node_pool.py,sha256=iTm8nwizxtNJZKoLLs11PQR144W79SSuEfqx-vm-JhU,73448
622
- pulumi_gcp/container/outputs.py,sha256=CQY7PhAZouepAjYC4xO5VWxEAM8_7mjllnO4J_SwICk,918150
622
+ pulumi_gcp/container/outputs.py,sha256=8hQ2egUwFMRVRv0sBiOfHcgApPfk45UMFoUJ_dAAVa0,918526
623
623
  pulumi_gcp/container/registry.py,sha256=x-w3Tt3GB8aGLAyIP9lnhn3xdTeO76mGPXM7_qZ4eYo,13287
624
624
  pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
625
625
  pulumi_gcp/containeranalysis/_inputs.py,sha256=OfL_EeuOmZBWiVuYz7H1LPg4vRlDvO_x9qIen0GsPAs,16837
@@ -884,7 +884,7 @@ pulumi_gcp/firebase/hosting_release.py,sha256=o8yYo-STnvNUTHsBc9LUp9iuClc2z5-gu1
884
884
  pulumi_gcp/firebase/hosting_site.py,sha256=CsHZZ73yi_uPqmwfgbj6N2F0D_JIxPYnAKY_OGdqtbk,19705
885
885
  pulumi_gcp/firebase/hosting_version.py,sha256=VJHk2mDf2ty26OBmQvfZyfDX5WEVSXjt6opOZgl7I_A,21503
886
886
  pulumi_gcp/firebase/outputs.py,sha256=8--aSrbO_AOHRz0B5J_J-5iO9zForSUuBIgHpeAz1ik,60867
887
- pulumi_gcp/firebase/project.py,sha256=xZ-lbfQAYFElllHUwCdgIr4DdT1HvExcOxwlL27uQAg,11468
887
+ pulumi_gcp/firebase/project.py,sha256=d0zGHJyhLo9FK762CQh5AlqozKX3XGsH-wfaFHP3dxU,11848
888
888
  pulumi_gcp/firebase/storage_bucket.py,sha256=xR-z9A4yZr6hg1dQT78g8KQ_qhwpNxvzM7rAxAti7Ms,11680
889
889
  pulumi_gcp/firebase/web_app.py,sha256=2A53ADBb3QE9Sz656wqzq2vjf3EennccYWzI2HHMDJc,21709
890
890
  pulumi_gcp/firebaserules/__init__.py,sha256=q2a9jWrQJ3dcW9mfz4oKXVCatjOzz-9j6QVpv8AftZU,360
@@ -1082,7 +1082,7 @@ pulumi_gcp/kms/get_kms_key_ring.py,sha256=e0T8fkQQ6J7GGryimuL5QspbD020vP7iPOV1HI
1082
1082
  pulumi_gcp/kms/get_kms_secret.py,sha256=eCIh1WfFMiG91KQdaQ00Hz2V3kBPjTxKGEAfHi7RPWI,9671
1083
1083
  pulumi_gcp/kms/get_kms_secret_asymmetric.py,sha256=fwuOLNRJEwAg--mnPlqlSC81h2-PrgrSpTPbe9GhvQM,10614
1084
1084
  pulumi_gcp/kms/get_kms_secret_ciphertext.py,sha256=VNpbD-5ctZaM2Gw-lePPPJFGj6jQnQ7PM2foj3wRpbY,8481
1085
- pulumi_gcp/kms/key_handle.py,sha256=2gzQILWxNAg5xbfD0SEXmZcOtj8ctnME0AHP8MHpV1o,23944
1085
+ pulumi_gcp/kms/key_handle.py,sha256=zvUCUayVm7cDZw5APg1Bw0HSIFIpgwIvP-qfJ2bRnyo,23755
1086
1086
  pulumi_gcp/kms/key_ring.py,sha256=DTKnMlojSKgiTuZBHt2169wMSY3TMWySwA4zE-N2HQc,13437
1087
1087
  pulumi_gcp/kms/key_ring_iam_binding.py,sha256=wmayyeZDC9az5jtmD9U4vTz8Gllj6nM2ZBc_cDVSuns,38382
1088
1088
  pulumi_gcp/kms/key_ring_iam_member.py,sha256=Ta19yKRtucs4sRRRcvAoDdO1BNvxFYV5o7C99nHbPJ8,37985
@@ -1133,9 +1133,9 @@ pulumi_gcp/memcache/_inputs.py,sha256=RmLaU7WN7jxNrnQWJDIRQS5hbDPwNRR9ZH2UCBdQIr
1133
1133
  pulumi_gcp/memcache/instance.py,sha256=0Bv8wo0GCpssG4jOF99wIK5doBUXzouwdSV19lIegmw,55246
1134
1134
  pulumi_gcp/memcache/outputs.py,sha256=Po7hfUgZz1XzZtmeY5res3sxQUauz2Xj2pKuRTLpOMA,19541
1135
1135
  pulumi_gcp/migrationcenter/__init__.py,sha256=g4TuRiPN23lqw1gxJ_8DcfUnWfVq35Jv6vCVG9FAYNw,365
1136
- pulumi_gcp/migrationcenter/_inputs.py,sha256=JFFr5GRDtc2VpqQe5PcD12vvfEyr8BCxnRPptxJxAio,37239
1136
+ pulumi_gcp/migrationcenter/_inputs.py,sha256=UCOkNuStYN2kRGTscStVXr3N_LdQEt7kYDzovpeZsZo,36366
1137
1137
  pulumi_gcp/migrationcenter/group.py,sha256=F9824NdgSfbCpi2NaC2jpkRpkXaMuqh34-pLz3AKqxI,28722
1138
- pulumi_gcp/migrationcenter/outputs.py,sha256=swK1dn0fNPiCz5SGmuiynYE1h_1JFSAiaf_L8_cQZt4,28765
1138
+ pulumi_gcp/migrationcenter/outputs.py,sha256=1S8te1ryJfzDSVr8oIYTaWzCLTJwkh6EEkangEodiHQ,28099
1139
1139
  pulumi_gcp/migrationcenter/preference_set.py,sha256=MPZg6Mq-SEAeAHY5aPoj1KPqrb442WX56Lz6LNxq_Nk,32394
1140
1140
  pulumi_gcp/ml/__init__.py,sha256=e6RL5Us9gIC1Lld0XPh7CaYAZg7jNMwhIEO4RbWFU-s,342
1141
1141
  pulumi_gcp/ml/_inputs.py,sha256=LtFMoYwKzLFDoqy2mClKAcJFg8KMZsp5v03Hi3zAU1k,1497
@@ -1175,7 +1175,7 @@ pulumi_gcp/netapp/volume_replication.py,sha256=FVjUd9UBdpJKE54VyF-wTu3x5pD45Y_Ns
1175
1175
  pulumi_gcp/netapp/volume_snapshot.py,sha256=-7fJfPboj_Kan3LwtOwi0QuaQNmPC-rXN9aTLunkWb0,28538
1176
1176
  pulumi_gcp/networkconnectivity/__init__.py,sha256=precnbXbVh3d-l7PCBvQ47Y1KmPL3O_L-Xemc_OROYg,492
1177
1177
  pulumi_gcp/networkconnectivity/_inputs.py,sha256=4Jmogf4vPDnV-nI_LINgi3VzO6sx3WL3c59dxwxfd1A,39506
1178
- pulumi_gcp/networkconnectivity/hub.py,sha256=L_a19l_29qp6-Er7JcexrcEnMYovEFXixjwo92Roq0Y,29338
1178
+ pulumi_gcp/networkconnectivity/hub.py,sha256=FTSLUCgxMLa61GAahBZRDh4qIOC6mzYW1dWEls27QR8,33303
1179
1179
  pulumi_gcp/networkconnectivity/internal_range.py,sha256=wu7OLeQYd4RL-oQ7SMd-EgnxnHzuV1PrhYwEBZ9Bhls,48492
1180
1180
  pulumi_gcp/networkconnectivity/outputs.py,sha256=AKkDBIEB-VQg_sNBnN0j1YX1IUcyLmU-Me7kz9wBMmE,28400
1181
1181
  pulumi_gcp/networkconnectivity/policy_based_route.py,sha256=-86qwkYRZTLKL9wbL73rkQtagoz7-E0R32-pI2SasgA,47466
@@ -1257,7 +1257,7 @@ pulumi_gcp/organizations/iam_member.py,sha256=4G1j8tP7ZJ6zmbOs-Z2tIgPuil2dIEmPwT
1257
1257
  pulumi_gcp/organizations/iam_policy.py,sha256=4w15wXSC30vFj_G-EPEk95lEetwfYQ-lVs4FcAgKvR4,32283
1258
1258
  pulumi_gcp/organizations/outputs.py,sha256=OBiC9dLUTrlFhivJXCWTpoPeIyLk-e4diucFexWbKL4,27575
1259
1259
  pulumi_gcp/organizations/policy.py,sha256=B4zcoy2uNacgFeSHl_t6gnoBD18F1iWl72rWZkV5rKk,31626
1260
- pulumi_gcp/organizations/project.py,sha256=0XAgNwSPOR8liejIwdi5RJ1qmzgvXqg6si3UtoRzYzI,39614
1260
+ pulumi_gcp/organizations/project.py,sha256=b5xeeRuV-ahkzGBaZ2E8jYlllu2OtaSYBmWri-QZ7xA,41880
1261
1261
  pulumi_gcp/orgpolicy/__init__.py,sha256=bdd_oQduV_xUj2RtYRYe5h9NzODH1KbvCbkkZLJpz-4,369
1262
1262
  pulumi_gcp/orgpolicy/_inputs.py,sha256=NwOAgjlkLgLX2sgQzC5r_3qX5aWqZkhr4jIxkF0Nt-o,44535
1263
1263
  pulumi_gcp/orgpolicy/custom_constraint.py,sha256=ry55xPi8Ii3wN7F41JCbkmPoqMyTk2sqHteA97jQQTc,33287
@@ -1460,7 +1460,7 @@ pulumi_gcp/spanner/instance_iam_member.py,sha256=X947TakhOfmF66pHUSG0h5aLahKOHpY
1460
1460
  pulumi_gcp/spanner/instance_iam_policy.py,sha256=vhiKKtB8JUZjIbnkhmW3g4pvQSn9x9vcYql-b7OuAdI,19254
1461
1461
  pulumi_gcp/spanner/outputs.py,sha256=dPBZzwvifx2yIUqgJAGORnvhVyWshdjb5x3oGI8tqmY,25532
1462
1462
  pulumi_gcp/sql/__init__.py,sha256=UHbVKyhTPB_q4AM4C2dX93ElSmcDStMjfEvLXZlHv-k,734
1463
- pulumi_gcp/sql/_inputs.py,sha256=2nIT_b-pXevdam_fpgcZ_zRAUKYHWBg-F1InX43IEEY,125162
1463
+ pulumi_gcp/sql/_inputs.py,sha256=mOJBNGEvQqk9knhNX7ZCfE3XDlYf5SwpE28oL3tDho8,128202
1464
1464
  pulumi_gcp/sql/database.py,sha256=chaEGAhX5uBMN_2_Iisvw4chJR8aahCi_RNhyE3JWV0,29496
1465
1465
  pulumi_gcp/sql/database_instance.py,sha256=YAhW1yaQ1K_4LSfceKK888PhWd_q3APMIpG5J7tz5SE,84326
1466
1466
  pulumi_gcp/sql/get_backup_run.py,sha256=u_vdAoUviOB3mTjFl_qmwTcJQSpitBDEug2jLu2Vx7A,7505
@@ -1471,7 +1471,7 @@ pulumi_gcp/sql/get_database_instance_latest_recovery_time.py,sha256=G74SZ3oC0XUK
1471
1471
  pulumi_gcp/sql/get_database_instances.py,sha256=i77QPQ2n-g-eyysIRwi510_f8h6_aFV-C4V3Uf-8Eh8,8560
1472
1472
  pulumi_gcp/sql/get_databases.py,sha256=NTxx5j3yxrxMDPoWUhfKc53erHDYb8oxFqPccQ2rMzY,4612
1473
1473
  pulumi_gcp/sql/get_tiers.py,sha256=RmKJMnR9yUC68SBKcCe5WCXuVkThtayxtoF5NR2dVTE,4335
1474
- pulumi_gcp/sql/outputs.py,sha256=s8HJOjHgWs7RGEKhKN10KEVug6Dpg-TwD9EWcSzZQ8A,224054
1474
+ pulumi_gcp/sql/outputs.py,sha256=9aQxJMFY6UnjOg5U_35gD2GQwU6b4TvgwN_lvYy08F8,227058
1475
1475
  pulumi_gcp/sql/source_representation_instance.py,sha256=DPiM7r4DyffRwMBz-GAMprqHCUeFT6Q35OCQYTWr0qU,38582
1476
1476
  pulumi_gcp/sql/ssl_cert.py,sha256=CkH8XDVoKyiutBTNkQof8fe_-yvrwESCM81qApEZ7mc,21976
1477
1477
  pulumi_gcp/sql/user.py,sha256=uU1ye5u1_aCC0u1GYLtGIDuhrb3x8iJqDWsFnzMO9wk,37095
@@ -1616,7 +1616,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=lyD1PT_XiLqOCTMa
1616
1616
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=v1_3Z7qkX8soy9cEXEQBmDB_eBjFu0_7kXU8MDrWvDQ,37784
1617
1617
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=Pa7-SRLzY5Hwcs3bky3UNMLldVUhaQl75RXMXWCXMuk,37385
1618
1618
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=xglGMHFGQY-gU2mogi8-yrBUSPW0hpBV25DNHSI2J90,24019
1619
- pulumi_gcp-7.34.0a1722604983.dist-info/METADATA,sha256=9JJHU6TTm4H8nuJHscbeZB7K7rowQ5fiCOFfNmhbmvA,2728
1620
- pulumi_gcp-7.34.0a1722604983.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
1621
- pulumi_gcp-7.34.0a1722604983.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1622
- pulumi_gcp-7.34.0a1722604983.dist-info/RECORD,,
1619
+ pulumi_gcp-7.35.0.dist-info/METADATA,sha256=kvZnYXicOVYFsV8QKr9PRtHHei_f7q30S4V6GzFAW1I,2717
1620
+ pulumi_gcp-7.35.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
1621
+ pulumi_gcp-7.35.0.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1622
+ pulumi_gcp-7.35.0.dist-info/RECORD,,