pulumi-gcp 7.35.0__py3-none-any.whl → 7.35.0a1722924350__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/accesscontextmanager/_inputs.py +3 -12
- pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
- pulumi_gcp/accesscontextmanager/outputs.py +2 -8
- pulumi_gcp/bigquery/data_transfer_config.py +0 -52
- pulumi_gcp/compute/_inputs.py +24 -24
- pulumi_gcp/compute/disk.py +0 -75
- pulumi_gcp/compute/get_disk.py +1 -11
- pulumi_gcp/compute/get_hc_vpn_gateway.py +1 -11
- pulumi_gcp/compute/get_instance_template.py +2 -2
- pulumi_gcp/compute/get_region_instance_template.py +2 -2
- pulumi_gcp/compute/get_snapshot.py +2 -2
- pulumi_gcp/compute/ha_vpn_gateway.py +7 -68
- pulumi_gcp/compute/outputs.py +24 -24
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/firebase/project.py +2 -10
- pulumi_gcp/kms/key_handle.py +7 -7
- pulumi_gcp/migrationcenter/_inputs.py +129 -21
- pulumi_gcp/migrationcenter/outputs.py +86 -14
- pulumi_gcp/networkconnectivity/hub.py +0 -69
- pulumi_gcp/organizations/project.py +7 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +15 -35
- pulumi_gcp/sql/outputs.py +14 -50
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/RECORD +28 -28
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/outputs.py
CHANGED
@@ -627,8 +627,6 @@ 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"
|
632
630
|
elif key == "enableGoogleMlIntegration":
|
633
631
|
suggest = "enable_google_ml_integration"
|
634
632
|
elif key == "insightsConfig":
|
@@ -679,7 +677,6 @@ class DatabaseInstanceSettings(dict):
|
|
679
677
|
disk_size: Optional[int] = None,
|
680
678
|
disk_type: Optional[str] = None,
|
681
679
|
edition: Optional[str] = None,
|
682
|
-
enable_dataplex_integration: Optional[bool] = None,
|
683
680
|
enable_google_ml_integration: Optional[bool] = None,
|
684
681
|
insights_config: Optional['outputs.DatabaseInstanceSettingsInsightsConfig'] = None,
|
685
682
|
ip_configuration: Optional['outputs.DatabaseInstanceSettingsIpConfiguration'] = None,
|
@@ -707,12 +704,11 @@ class DatabaseInstanceSettings(dict):
|
|
707
704
|
:param str connector_enforcement: Specifies if connections must use Cloud SQL connectors.
|
708
705
|
:param 'DatabaseInstanceSettingsDataCacheConfigArgs' data_cache_config: Data cache configurations.
|
709
706
|
:param bool deletion_protection_enabled: Configuration to protect against accidental instance deletion.
|
710
|
-
:param bool disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`.
|
707
|
+
:param bool disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`.
|
711
708
|
: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.
|
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.
|
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.
|
713
710
|
:param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to `PD_SSD`.
|
714
711
|
: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`.
|
716
712
|
: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`.
|
717
713
|
:param 'DatabaseInstanceSettingsInsightsConfigArgs' insights_config: Configuration of Query Insights.
|
718
714
|
: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.
|
@@ -755,8 +751,6 @@ class DatabaseInstanceSettings(dict):
|
|
755
751
|
pulumi.set(__self__, "disk_type", disk_type)
|
756
752
|
if edition is not None:
|
757
753
|
pulumi.set(__self__, "edition", edition)
|
758
|
-
if enable_dataplex_integration is not None:
|
759
|
-
pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
|
760
754
|
if enable_google_ml_integration is not None:
|
761
755
|
pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
|
762
756
|
if insights_config is not None:
|
@@ -873,7 +867,7 @@ class DatabaseInstanceSettings(dict):
|
|
873
867
|
@pulumi.getter(name="diskAutoresize")
|
874
868
|
def disk_autoresize(self) -> Optional[bool]:
|
875
869
|
"""
|
876
|
-
Enables auto-resizing of the storage size. Defaults to `true`.
|
870
|
+
Enables auto-resizing of the storage size. Defaults to `true`.
|
877
871
|
"""
|
878
872
|
return pulumi.get(self, "disk_autoresize")
|
879
873
|
|
@@ -889,7 +883,7 @@ class DatabaseInstanceSettings(dict):
|
|
889
883
|
@pulumi.getter(name="diskSize")
|
890
884
|
def disk_size(self) -> Optional[int]:
|
891
885
|
"""
|
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.
|
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.
|
893
887
|
"""
|
894
888
|
return pulumi.get(self, "disk_size")
|
895
889
|
|
@@ -909,14 +903,6 @@ class DatabaseInstanceSettings(dict):
|
|
909
903
|
"""
|
910
904
|
return pulumi.get(self, "edition")
|
911
905
|
|
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
|
-
|
920
906
|
@property
|
921
907
|
@pulumi.getter(name="enableGoogleMlIntegration")
|
922
908
|
def enable_google_ml_integration(self) -> Optional[bool]:
|
@@ -1313,8 +1299,8 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
|
|
1313
1299
|
start_date: str,
|
1314
1300
|
time: str):
|
1315
1301
|
"""
|
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-
|
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-
|
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
|
1318
1304
|
: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
|
1319
1305
|
"""
|
1320
1306
|
pulumi.set(__self__, "end_date", end_date)
|
@@ -1325,7 +1311,7 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
|
|
1325
1311
|
@pulumi.getter(name="endDate")
|
1326
1312
|
def end_date(self) -> str:
|
1327
1313
|
"""
|
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-
|
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
|
1329
1315
|
"""
|
1330
1316
|
return pulumi.get(self, "end_date")
|
1331
1317
|
|
@@ -1333,7 +1319,7 @@ class DatabaseInstanceSettingsDenyMaintenancePeriod(dict):
|
|
1333
1319
|
@pulumi.getter(name="startDate")
|
1334
1320
|
def start_date(self) -> str:
|
1335
1321
|
"""
|
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-
|
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
|
1337
1323
|
"""
|
1338
1324
|
return pulumi.get(self, "start_date")
|
1339
1325
|
|
@@ -1493,7 +1479,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1493
1479
|
This setting can be updated, but it cannot be removed after it is set.
|
1494
1480
|
:param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
1495
1481
|
: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.
|
1496
|
-
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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`.
|
1497
1483
|
* 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.
|
1498
1484
|
* For MySQL instances, use the same value pairs as the PostgreSQL instances.
|
1499
1485
|
* For SQL Server instances, set it to `ALLOW_UNENCRYPTED_AND_ENCRYPTED` when `require_ssl=false` and `ENCRYPTED_ONLY` otherwise.
|
@@ -1579,7 +1565,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1579
1565
|
@pulumi.getter(name="sslMode")
|
1580
1566
|
def ssl_mode(self) -> Optional[str]:
|
1581
1567
|
"""
|
1582
|
-
Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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`.
|
1583
1569
|
* 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.
|
1584
1570
|
* For MySQL instances, use the same value pairs as the PostgreSQL instances.
|
1585
1571
|
* For SQL Server instances, set it to `ALLOW_UNENCRYPTED_AND_ENCRYPTED` when `require_ssl=false` and `ENCRYPTED_ONLY` otherwise.
|
@@ -2574,7 +2560,6 @@ class GetDatabaseInstanceSettingResult(dict):
|
|
2574
2560
|
disk_size: int,
|
2575
2561
|
disk_type: str,
|
2576
2562
|
edition: str,
|
2577
|
-
enable_dataplex_integration: bool,
|
2578
2563
|
enable_google_ml_integration: bool,
|
2579
2564
|
insights_configs: Sequence['outputs.GetDatabaseInstanceSettingInsightsConfigResult'],
|
2580
2565
|
ip_configurations: Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationResult'],
|
@@ -2604,7 +2589,6 @@ class GetDatabaseInstanceSettingResult(dict):
|
|
2604
2589
|
: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.
|
2605
2590
|
:param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to PD_SSD.
|
2606
2591
|
:param str edition: The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS.
|
2607
|
-
:param bool enable_dataplex_integration: Enables Dataplex Integration.
|
2608
2592
|
:param bool enable_google_ml_integration: Enables Vertex AI Integration.
|
2609
2593
|
:param Sequence['GetDatabaseInstanceSettingInsightsConfigArgs'] insights_configs: Configuration of Query Insights.
|
2610
2594
|
: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.
|
@@ -2630,7 +2614,6 @@ class GetDatabaseInstanceSettingResult(dict):
|
|
2630
2614
|
pulumi.set(__self__, "disk_size", disk_size)
|
2631
2615
|
pulumi.set(__self__, "disk_type", disk_type)
|
2632
2616
|
pulumi.set(__self__, "edition", edition)
|
2633
|
-
pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
|
2634
2617
|
pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
|
2635
2618
|
pulumi.set(__self__, "insights_configs", insights_configs)
|
2636
2619
|
pulumi.set(__self__, "ip_configurations", ip_configurations)
|
@@ -2762,14 +2745,6 @@ class GetDatabaseInstanceSettingResult(dict):
|
|
2762
2745
|
"""
|
2763
2746
|
return pulumi.get(self, "edition")
|
2764
2747
|
|
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
|
-
|
2773
2748
|
@property
|
2774
2749
|
@pulumi.getter(name="enableGoogleMlIntegration")
|
2775
2750
|
def enable_google_ml_integration(self) -> bool:
|
@@ -3167,7 +3142,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3167
3142
|
: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.
|
3168
3143
|
:param Sequence['GetDatabaseInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
3169
3144
|
: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.
|
3170
|
-
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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.
|
3171
3146
|
"""
|
3172
3147
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
3173
3148
|
pulumi.set(__self__, "authorized_networks", authorized_networks)
|
@@ -3235,7 +3210,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3235
3210
|
@pulumi.getter(name="sslMode")
|
3236
3211
|
def ssl_mode(self) -> str:
|
3237
3212
|
"""
|
3238
|
-
Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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.
|
3239
3214
|
"""
|
3240
3215
|
return pulumi.get(self, "ssl_mode")
|
3241
3216
|
|
@@ -4077,7 +4052,6 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
|
|
4077
4052
|
disk_size: int,
|
4078
4053
|
disk_type: str,
|
4079
4054
|
edition: str,
|
4080
|
-
enable_dataplex_integration: bool,
|
4081
4055
|
enable_google_ml_integration: bool,
|
4082
4056
|
insights_configs: Sequence['outputs.GetDatabaseInstancesInstanceSettingInsightsConfigResult'],
|
4083
4057
|
ip_configurations: Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationResult'],
|
@@ -4107,7 +4081,6 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
|
|
4107
4081
|
: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.
|
4108
4082
|
:param str disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to PD_SSD.
|
4109
4083
|
:param str edition: The edition of the instance, can be ENTERPRISE or ENTERPRISE_PLUS.
|
4110
|
-
:param bool enable_dataplex_integration: Enables Dataplex Integration.
|
4111
4084
|
:param bool enable_google_ml_integration: Enables Vertex AI Integration.
|
4112
4085
|
:param Sequence['GetDatabaseInstancesInstanceSettingInsightsConfigArgs'] insights_configs: Configuration of Query Insights.
|
4113
4086
|
: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.
|
@@ -4133,7 +4106,6 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
|
|
4133
4106
|
pulumi.set(__self__, "disk_size", disk_size)
|
4134
4107
|
pulumi.set(__self__, "disk_type", disk_type)
|
4135
4108
|
pulumi.set(__self__, "edition", edition)
|
4136
|
-
pulumi.set(__self__, "enable_dataplex_integration", enable_dataplex_integration)
|
4137
4109
|
pulumi.set(__self__, "enable_google_ml_integration", enable_google_ml_integration)
|
4138
4110
|
pulumi.set(__self__, "insights_configs", insights_configs)
|
4139
4111
|
pulumi.set(__self__, "ip_configurations", ip_configurations)
|
@@ -4265,14 +4237,6 @@ class GetDatabaseInstancesInstanceSettingResult(dict):
|
|
4265
4237
|
"""
|
4266
4238
|
return pulumi.get(self, "edition")
|
4267
4239
|
|
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
|
-
|
4276
4240
|
@property
|
4277
4241
|
@pulumi.getter(name="enableGoogleMlIntegration")
|
4278
4242
|
def enable_google_ml_integration(self) -> bool:
|
@@ -4670,7 +4634,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4670
4634
|
: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.
|
4671
4635
|
:param Sequence['GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
4672
4636
|
: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.
|
4673
|
-
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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.
|
4674
4638
|
"""
|
4675
4639
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
4676
4640
|
pulumi.set(__self__, "authorized_networks", authorized_networks)
|
@@ -4738,7 +4702,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4738
4702
|
@pulumi.getter(name="sslMode")
|
4739
4703
|
def ssl_mode(self) -> str:
|
4740
4704
|
"""
|
4741
|
-
Specify how SSL connection should be enforced in DB connections. This field provides more SSL
|
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.
|
4742
4706
|
"""
|
4743
4707
|
return pulumi.get(self, "ssl_mode")
|
4744
4708
|
|
@@ -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=
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=7ZWxND9OTWNnPYQpXXBlLbjx2eJKg1xO9q13pXZ1Sgw,80
|
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=
|
12
|
+
pulumi_gcp/accesscontextmanager/_inputs.py,sha256=jzXWTVQmfRuDamlF3UBoc8bzD-5vE2zQ0KVf7HLeWhw,384507
|
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=
|
16
|
+
pulumi_gcp/accesscontextmanager/access_policy.py,sha256=uKnwmrMEVTH5VcDTmxdsz4zF1gQRCYTPt5tEoM1hCAw,18322
|
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=
|
25
|
+
pulumi_gcp/accesscontextmanager/outputs.py,sha256=DB99o2_x5yn9v4IQd7yT-uv91r5mou9qBWEnc9yCI1I,278883
|
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=
|
162
|
+
pulumi_gcp/bigquery/data_transfer_config.py,sha256=o5H6-pn7PLbx8JOkbOsQ6leTLruiRqe2hBREvY34bEY,61282
|
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
|
397
|
+
pulumi_gcp/compute/_inputs.py,sha256=LNg8dPWo-33t_BinCG-AmiASn2IB0sbETmUYlCUQOes,2728529
|
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=
|
412
|
+
pulumi_gcp/compute/disk.py,sha256=xPyOV7aLxAHWGj5tgam6FZVsr36yTnQVCzq5KO9G2hI,129638
|
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=
|
432
|
+
pulumi_gcp/compute/get_disk.py,sha256=YaUF7JXyta9yQQm2haN62XPB9qICEVffHwOhMG3Ci10,23860
|
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=
|
438
|
+
pulumi_gcp/compute/get_hc_vpn_gateway.py,sha256=tuWOdyIg84_2J3Y3pGuT0Z2fWWlPiaASPDLZx7EB9Mo,6675
|
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=
|
447
|
+
pulumi_gcp/compute/get_instance_template.py,sha256=peiu7Zfori-BCEY1FdZFapTUNKO2Ctd3MCp4Qi28gbA,28591
|
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=
|
461
|
+
pulumi_gcp/compute/get_region_instance_template.py,sha256=1w5Gzmp3EycRvsmcbQjNrjf4O42NWTXHS0Arb5pX0t4,27372
|
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=
|
471
|
+
pulumi_gcp/compute/get_snapshot.py,sha256=sIk06qSQAqwFzg92wzSqQn0a0-xIcbW-QRYMXAdPNe4,15716
|
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=
|
483
|
+
pulumi_gcp/compute/ha_vpn_gateway.py,sha256=id9LcooSEI9L8CHaQDQuHMrfDYDfAh5Lrc1WHdkuF1s,33305
|
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=
|
527
|
+
pulumi_gcp/compute/outputs.py,sha256=og6ytLn8hP7SYFmws5fYcgZl0REqH51M1NUiI8Vuoq0,2503081
|
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=
|
605
|
+
pulumi_gcp/container/_inputs.py,sha256=1y2ZdYEfqG-K1J7A66wKxeYVcguJXNoLKEp5Omg8GLY,896722
|
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=
|
622
|
+
pulumi_gcp/container/outputs.py,sha256=CQY7PhAZouepAjYC4xO5VWxEAM8_7mjllnO4J_SwICk,918150
|
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=
|
887
|
+
pulumi_gcp/firebase/project.py,sha256=xZ-lbfQAYFElllHUwCdgIr4DdT1HvExcOxwlL27uQAg,11468
|
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=
|
1085
|
+
pulumi_gcp/kms/key_handle.py,sha256=2gzQILWxNAg5xbfD0SEXmZcOtj8ctnME0AHP8MHpV1o,23944
|
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=
|
1136
|
+
pulumi_gcp/migrationcenter/_inputs.py,sha256=JFFr5GRDtc2VpqQe5PcD12vvfEyr8BCxnRPptxJxAio,37239
|
1137
1137
|
pulumi_gcp/migrationcenter/group.py,sha256=F9824NdgSfbCpi2NaC2jpkRpkXaMuqh34-pLz3AKqxI,28722
|
1138
|
-
pulumi_gcp/migrationcenter/outputs.py,sha256=
|
1138
|
+
pulumi_gcp/migrationcenter/outputs.py,sha256=swK1dn0fNPiCz5SGmuiynYE1h_1JFSAiaf_L8_cQZt4,28765
|
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=
|
1178
|
+
pulumi_gcp/networkconnectivity/hub.py,sha256=L_a19l_29qp6-Er7JcexrcEnMYovEFXixjwo92Roq0Y,29338
|
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=
|
1260
|
+
pulumi_gcp/organizations/project.py,sha256=0XAgNwSPOR8liejIwdi5RJ1qmzgvXqg6si3UtoRzYzI,39614
|
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=
|
1463
|
+
pulumi_gcp/sql/_inputs.py,sha256=2nIT_b-pXevdam_fpgcZ_zRAUKYHWBg-F1InX43IEEY,125162
|
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=
|
1474
|
+
pulumi_gcp/sql/outputs.py,sha256=s8HJOjHgWs7RGEKhKN10KEVug6Dpg-TwD9EWcSzZQ8A,224054
|
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.35.
|
1620
|
-
pulumi_gcp-7.35.
|
1621
|
-
pulumi_gcp-7.35.
|
1622
|
-
pulumi_gcp-7.35.
|
1619
|
+
pulumi_gcp-7.35.0a1722924350.dist-info/METADATA,sha256=KCtQlvEKMZudVUQLsGlUnhwxrSw5eRDEp4Ghq5YBdlE,2728
|
1620
|
+
pulumi_gcp-7.35.0a1722924350.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
1621
|
+
pulumi_gcp-7.35.0a1722924350.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1622
|
+
pulumi_gcp-7.35.0a1722924350.dist-info/RECORD,,
|
File without changes
|
File without changes
|