pulumi-gcp 8.2.0a1726671837__py3-none-any.whl → 8.2.0a1726675738__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +38 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +30 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2208 -285
- pulumi_gcp/compute/get_instance.py +3 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/outputs.py +1383 -0
- pulumi_gcp/compute/region_target_http_proxy.py +159 -0
- pulumi_gcp/compute/region_target_https_proxy.py +175 -0
- pulumi_gcp/compute/service_attachment.py +75 -0
- pulumi_gcp/compute/target_http_proxy.py +49 -28
- pulumi_gcp/compute/target_https_proxy.py +49 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +96 -0
- pulumi_gcp/container/attached_cluster.py +54 -1
- pulumi_gcp/container/outputs.py +102 -0
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/datastream/stream.py +21 -14
- pulumi_gcp/developerconnect/__init__.py +11 -0
- pulumi_gcp/developerconnect/_inputs.py +301 -0
- pulumi_gcp/developerconnect/connection.py +1034 -0
- pulumi_gcp/developerconnect/git_repository_link.py +873 -0
- pulumi_gcp/developerconnect/outputs.py +247 -0
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/memorystore/__init__.py +10 -0
- pulumi_gcp/memorystore/_inputs.py +731 -0
- pulumi_gcp/memorystore/instance.py +1663 -0
- pulumi_gcp/memorystore/outputs.py +598 -0
- pulumi_gcp/netapp/volume.py +101 -0
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.2.0a1726675738.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.2.0a1726675738.dist-info}/RECORD +43 -32
- {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.2.0a1726675738.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.2.0a1726675738.dist-info}/top_level.txt +0 -0
@@ -40,13 +40,12 @@ class ConnectorArgs:
|
|
40
40
|
higher than the value specified by min_instances.
|
41
41
|
:param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
42
42
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
43
|
-
min_throughput.
|
44
|
-
max_throughput is discouraged in favor of max_instances.
|
43
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
45
44
|
:param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
|
46
45
|
lower than the value specified by max_instances.
|
47
46
|
:param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
48
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
49
|
-
|
47
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
48
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
50
49
|
:param pulumi.Input[str] name: The name of the resource (Max 25 characters).
|
51
50
|
|
52
51
|
|
@@ -124,8 +123,7 @@ class ConnectorArgs:
|
|
124
123
|
"""
|
125
124
|
Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
126
125
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
127
|
-
min_throughput.
|
128
|
-
max_throughput is discouraged in favor of max_instances.
|
126
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
129
127
|
"""
|
130
128
|
return pulumi.get(self, "max_throughput")
|
131
129
|
|
@@ -151,8 +149,8 @@ class ConnectorArgs:
|
|
151
149
|
def min_throughput(self) -> Optional[pulumi.Input[int]]:
|
152
150
|
"""
|
153
151
|
Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
154
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
155
|
-
|
152
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
153
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
156
154
|
"""
|
157
155
|
return pulumi.get(self, "min_throughput")
|
158
156
|
|
@@ -252,13 +250,12 @@ class _ConnectorState:
|
|
252
250
|
higher than the value specified by min_instances.
|
253
251
|
:param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
254
252
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
255
|
-
min_throughput.
|
256
|
-
max_throughput is discouraged in favor of max_instances.
|
253
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
257
254
|
:param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
|
258
255
|
lower than the value specified by max_instances.
|
259
256
|
:param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
260
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
261
|
-
|
257
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
258
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
262
259
|
:param pulumi.Input[str] name: The name of the resource (Max 25 characters).
|
263
260
|
|
264
261
|
|
@@ -356,8 +353,7 @@ class _ConnectorState:
|
|
356
353
|
"""
|
357
354
|
Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
358
355
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
359
|
-
min_throughput.
|
360
|
-
max_throughput is discouraged in favor of max_instances.
|
356
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
361
357
|
"""
|
362
358
|
return pulumi.get(self, "max_throughput")
|
363
359
|
|
@@ -383,8 +379,8 @@ class _ConnectorState:
|
|
383
379
|
def min_throughput(self) -> Optional[pulumi.Input[int]]:
|
384
380
|
"""
|
385
381
|
Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
386
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
387
|
-
|
382
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
383
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
388
384
|
"""
|
389
385
|
return pulumi.get(self, "min_throughput")
|
390
386
|
|
@@ -582,13 +578,12 @@ class Connector(pulumi.CustomResource):
|
|
582
578
|
higher than the value specified by min_instances.
|
583
579
|
:param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
584
580
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
585
|
-
min_throughput.
|
586
|
-
max_throughput is discouraged in favor of max_instances.
|
581
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
587
582
|
:param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
|
588
583
|
lower than the value specified by max_instances.
|
589
584
|
:param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
590
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
591
|
-
|
585
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
586
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
592
587
|
:param pulumi.Input[str] name: The name of the resource (Max 25 characters).
|
593
588
|
|
594
589
|
|
@@ -768,13 +763,12 @@ class Connector(pulumi.CustomResource):
|
|
768
763
|
higher than the value specified by min_instances.
|
769
764
|
:param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
770
765
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
771
|
-
min_throughput.
|
772
|
-
max_throughput is discouraged in favor of max_instances.
|
766
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
773
767
|
:param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
|
774
768
|
lower than the value specified by max_instances.
|
775
769
|
:param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
776
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
777
|
-
|
770
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
771
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
778
772
|
:param pulumi.Input[str] name: The name of the resource (Max 25 characters).
|
779
773
|
|
780
774
|
|
@@ -847,8 +841,7 @@ class Connector(pulumi.CustomResource):
|
|
847
841
|
"""
|
848
842
|
Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
|
849
843
|
when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
|
850
|
-
min_throughput.
|
851
|
-
max_throughput is discouraged in favor of max_instances.
|
844
|
+
min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
|
852
845
|
"""
|
853
846
|
return pulumi.get(self, "max_throughput")
|
854
847
|
|
@@ -866,8 +859,8 @@ class Connector(pulumi.CustomResource):
|
|
866
859
|
def min_throughput(self) -> pulumi.Output[int]:
|
867
860
|
"""
|
868
861
|
Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
|
869
|
-
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
870
|
-
|
862
|
+
Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
|
863
|
+
Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
|
871
864
|
"""
|
872
865
|
return pulumi.get(self, "min_throughput")
|
873
866
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=LhBS5R0EMvj47__iCHW-sLLslAgRBgVc1ZGE8qgOg6A,203398
|
2
2
|
pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
|
3
3
|
pulumi_gcp/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
|
-
pulumi_gcp/provider.py,sha256=
|
5
|
-
pulumi_gcp/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_gcp/provider.py,sha256=PAc9LmTIvQcXlVI9mIo27xk_LmimZGM--eYC61yrZ18,193014
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=XlbwmL4jhIq1sz8KQCPpgPe4hFcGRKpO23IDtvGd3gw,79
|
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
|
@@ -154,7 +154,7 @@ pulumi_gcp/biglake/catalog.py,sha256=eKexaU2W-MwN6BUemIhzN4RC0bl_Ftc6mLNoKPx0c5Q
|
|
154
154
|
pulumi_gcp/biglake/database.py,sha256=ydXELseqdP94bxFMdbRci-WCQ27zPmKiti_GPb89_J8,23372
|
155
155
|
pulumi_gcp/biglake/outputs.py,sha256=XRksceccfpMHJ_JIFqYZScUK5DgG8khCYOGjnQuo6XA,7714
|
156
156
|
pulumi_gcp/biglake/table.py,sha256=lZ-hNWZbPuV5jIxOhGxnxSt09bgAuQKAfGEOnrTuWow,29913
|
157
|
-
pulumi_gcp/bigquery/__init__.py,sha256
|
157
|
+
pulumi_gcp/bigquery/__init__.py,sha256=-wOMEMtKqyndLPliWm4umiRFvPci8KuxR2F6_L9BMTA,1154
|
158
158
|
pulumi_gcp/bigquery/_inputs.py,sha256=NFSMkrIzk7cx-ARaMIy4HRI1LEbKONkjocKRGQgbTMs,356484
|
159
159
|
pulumi_gcp/bigquery/app_profile.py,sha256=-RQKKS5ZznzwcLH-HrMgn3s1YR0KzxGzHf3EldYQzwU,45855
|
160
160
|
pulumi_gcp/bigquery/bi_reservation.py,sha256=VrjPy5GZtruqaqfLyvHgQfOpUY8vdrqPBvFVP0tmJcQ,19083
|
@@ -174,11 +174,12 @@ pulumi_gcp/bigquery/get_dataset.py,sha256=Voqy6HllcTanEgUHTRFOv7mpH-m0Pj8usRfTVo
|
|
174
174
|
pulumi_gcp/bigquery/get_dataset_iam_policy.py,sha256=Igikm69QwjpaOzrrIjCVr5XqnOz46a-fhh3ebw5RMJo,5020
|
175
175
|
pulumi_gcp/bigquery/get_default_service_account.py,sha256=CZpCWRfYS49fitlM2Q7Cc32ZMi_f2OOtmDEoBrJDyOo,5971
|
176
176
|
pulumi_gcp/bigquery/get_table_iam_policy.py,sha256=CSoQltO3ycJ_QFU9kohUu7ktOf-ixw9eSO8cHksjsz0,5958
|
177
|
+
pulumi_gcp/bigquery/get_tables.py,sha256=k4Sh_pKkQI253_b9jti1erHiyZ1xtj-xjT5cWZQGFik,4763
|
177
178
|
pulumi_gcp/bigquery/iam_binding.py,sha256=czj3c94-T4sSWWx0xA-v7rSdH8FItBSJEyq3co-WN6U,39569
|
178
179
|
pulumi_gcp/bigquery/iam_member.py,sha256=GVW0Qe2XThzgCtmZbpj9owj9ComHvlwyVqBm9loDApg,39170
|
179
180
|
pulumi_gcp/bigquery/iam_policy.py,sha256=XJekLyGJT1zOuJ30j4YqVhxRoJTQ52RxeB_O9oIa1xo,26052
|
180
181
|
pulumi_gcp/bigquery/job.py,sha256=M8QOFsEMFkAiOeI7b8BlIpH_iMI0abtsez4r9WNpdCA,59990
|
181
|
-
pulumi_gcp/bigquery/outputs.py,sha256=
|
182
|
+
pulumi_gcp/bigquery/outputs.py,sha256=2PCEXsagzXrBs_bNOjNlUKztWbbdG6sVMAKyoxfFMhk,279438
|
182
183
|
pulumi_gcp/bigquery/reservation.py,sha256=O_kGvU29F3n8x3B6YeLgjrkkUrkY5Mnkwiy22xoz4aw,29738
|
183
184
|
pulumi_gcp/bigquery/reservation_assignment.py,sha256=pKjkzjcdLtUXuqap1445cz5FM0Q9_cQ8zYr1G9-K_YQ,21397
|
184
185
|
pulumi_gcp/bigquery/routine.py,sha256=dFD_EOD_5Ba-6ncLQeDUw8d195D-FN3Db0mL7sNF8uQ,72244
|
@@ -399,8 +400,8 @@ pulumi_gcp/composer/get_user_workloads_secret.py,sha256=vu5aBJT6ePvgt6lYYmIBVEH8
|
|
399
400
|
pulumi_gcp/composer/outputs.py,sha256=KUUtqQwHoNY_2WXjvLF43HNJ0l1p8-YyqIjBi7-g6As,176654
|
400
401
|
pulumi_gcp/composer/user_workloads_config_map.py,sha256=vj8oOCHynJrXn2A2KOudU3VMxZJJ9clcVnqHXuIgMQI,18826
|
401
402
|
pulumi_gcp/composer/user_workloads_secret.py,sha256=dFao_a41LPjGVgha5oNybDoT31cdgC1sp9RwlN4fCyM,17536
|
402
|
-
pulumi_gcp/compute/__init__.py,sha256=
|
403
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
403
|
+
pulumi_gcp/compute/__init__.py,sha256=WOPhM_M7CHFHi6_cGwkeDw2IBc4_dCq4yQAt0jFYb0A,7519
|
404
|
+
pulumi_gcp/compute/_inputs.py,sha256=uL-swMNlx6Zy1Vvyxt2oCq7MS307kCcD7LLWohEjOZY,2827755
|
404
405
|
pulumi_gcp/compute/address.py,sha256=qS7SVwiDTdPTZMgN2u9vselU_RNa4FhKWak_uYxCms0,69402
|
405
406
|
pulumi_gcp/compute/attached_disk.py,sha256=qJc7CeBDksoL9cUtvN621nFhM0DTkiZ631I23vKkl0A,28043
|
406
407
|
pulumi_gcp/compute/autoscaler.py,sha256=9gklkTDUrkVkX9ThdEOEtEsV7OuBrZrrZsYHCdmvK_8,32510
|
@@ -445,7 +446,7 @@ pulumi_gcp/compute/get_hc_vpn_gateway.py,sha256=UYdkQ-xJ58zc3jrzQ3hmdxu1jPrUZ0yb
|
|
445
446
|
pulumi_gcp/compute/get_health_check.py,sha256=UP-G1YVQNCU4JsFy6HZOvfc7p9APAwSLtuRbzfpt248,12152
|
446
447
|
pulumi_gcp/compute/get_image.py,sha256=aYxBqQdjPLYD6TKCm2yxtjMRYEiPrkMbp-1uLfT8hsE,17524
|
447
448
|
pulumi_gcp/compute/get_image_iam_policy.py,sha256=pEXeUf6UBZea-msrUcOwcLzw_YmF_zTZgKPSZXupdHs,5374
|
448
|
-
pulumi_gcp/compute/get_instance.py,sha256=
|
449
|
+
pulumi_gcp/compute/get_instance.py,sha256=E5_IFTlExoGdZFnkAOnOLMw0YiYtdtLwjfZhXOjDqN4,27754
|
449
450
|
pulumi_gcp/compute/get_instance_group.py,sha256=bRuxfKIAKNO3SimYYUgSHl73vKgMP_jICNdrHxnfMXk,8584
|
450
451
|
pulumi_gcp/compute/get_instance_group_manager.py,sha256=d1U7BNPEwJ9wzuxBENcXWANbaOeLjMsDSIhS4hgVvBA,20118
|
451
452
|
pulumi_gcp/compute/get_instance_iam_policy.py,sha256=gFGYkZW5YYzatD44COs_mPPEgNWSNkzxebXgNuxLQxE,6926
|
@@ -523,6 +524,7 @@ pulumi_gcp/compute/network_endpoint_list.py,sha256=2UlH_OWNiY2kRzeBmmFTvOE-ICIXl
|
|
523
524
|
pulumi_gcp/compute/network_firewall_policy.py,sha256=DVqJ4pt3vHWcP2cbN1rLyqaSircch5Ak3KcGx36nc9Y,23536
|
524
525
|
pulumi_gcp/compute/network_firewall_policy_association.py,sha256=LQswgmvrlIpRXOvx7u2H2Mb8zW5FK_m9k6yh_yWs7bc,16414
|
525
526
|
pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=xe8FTLm9seBrQzvaQGXUcVP4zPlE19Tf5p_aRY7jFsQ,57526
|
527
|
+
pulumi_gcp/compute/network_firewall_policy_with_rules.py,sha256=9K2t6eTN0ZOCz9PF2Nw5q_s2GFp7NMqPAdYXbY5on3w,37618
|
526
528
|
pulumi_gcp/compute/network_peering.py,sha256=AVzH-DnuifUK57la8_q_gr5tE1K-bg0RO1I9n2NLkmo,31755
|
527
529
|
pulumi_gcp/compute/network_peering_routes_config.py,sha256=ii2v-xG4mlOp1TwPQmytyJtKK5K7goobyITOrP0Pq6o,24414
|
528
530
|
pulumi_gcp/compute/node_group.py,sha256=N3L4rE9JUM1f6GQYJUF910q1u6tf6e_0cBfDc6vxnDk,48767
|
@@ -530,7 +532,7 @@ pulumi_gcp/compute/node_template.py,sha256=WYaagGNVfk8My-q4n-VT2NqkIDibJ1iiruBDs
|
|
530
532
|
pulumi_gcp/compute/organization_security_policy.py,sha256=mJ7JCQ3VCKkHj6BXb4K7rDcL7tSD2cSSV58K5p1Bmpk,19298
|
531
533
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=ieHcfS3d3vY7kAs5ltG_9lblp9OjkrA7yk69_XhXYOg,16371
|
532
534
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=C_0FZG1s2b7KUiP2CYPD41GhEfRhGbMq6m-9ewQ8EXU,35312
|
533
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
535
|
+
pulumi_gcp/compute/outputs.py,sha256=VjDHwlb2Cvydk316UWFuDEwOc7Vvf56fmnZC17H2WfU,2572195
|
534
536
|
pulumi_gcp/compute/packet_mirroring.py,sha256=xTuTLNXb0-jUYF8gwWJHKOvgl_PPZvDaA_B0iHvhqns,34961
|
535
537
|
pulumi_gcp/compute/per_instance_config.py,sha256=TnfxazuJ-4nhKk8SVtXMVuUfS_lfKTEH8Vl9bxDzr2A,38371
|
536
538
|
pulumi_gcp/compute/project_cloud_armor_tier.py,sha256=deGXeYsN3m9Vfz31aOH4fPCPUtiL3UdO2hXp3MT9C2I,13203
|
@@ -563,8 +565,8 @@ pulumi_gcp/compute/region_security_policy.py,sha256=Zf4kjVlFgF8sJ7Q8u9gxZPsqNEGf
|
|
563
565
|
pulumi_gcp/compute/region_security_policy_rule.py,sha256=h88QBTyjFnjzavaIHJEIwxkwNBY05ba7Mjjojz7n8nw,67951
|
564
566
|
pulumi_gcp/compute/region_ssl_certificate.py,sha256=HBNIbE-05hRtvUbebW0jf33M2i-F3ndg7fNhLwFDAHs,35467
|
565
567
|
pulumi_gcp/compute/region_ssl_policy.py,sha256=U5HN89-oHnOs3XI2S5NBo-paZ6vUCQOKuNRvFxU_o3w,38410
|
566
|
-
pulumi_gcp/compute/region_target_http_proxy.py,sha256=
|
567
|
-
pulumi_gcp/compute/region_target_https_proxy.py,sha256=
|
568
|
+
pulumi_gcp/compute/region_target_http_proxy.py,sha256=jYecUzgdPmlDIBvvvRO4llvCtQ1n8-373awPVR6Emew,36347
|
569
|
+
pulumi_gcp/compute/region_target_https_proxy.py,sha256=YiWn2qYmB9msxNREX34sR9n8qYZBwmlRDvHDLj15gvM,68118
|
568
570
|
pulumi_gcp/compute/region_target_tcp_proxy.py,sha256=vBRyNnEEmviWkT8ylLkHKGqFvKegeQP0IbcZ3Mgr2-Y,31492
|
569
571
|
pulumi_gcp/compute/region_url_map.py,sha256=3Ua_P8ixIDYZBZRURHAzRoFQPpziYeNX8G-X2cyxaO4,96185
|
570
572
|
pulumi_gcp/compute/reservation.py,sha256=9qF0IJ8zDSPP6TRCrlV83RrtNezW7SutBs__QSWzCu4,31997
|
@@ -580,7 +582,7 @@ pulumi_gcp/compute/router_status.py,sha256=gLAg-wR05OmRIuFBlSBZGqtqSeX1T0801QAB0
|
|
580
582
|
pulumi_gcp/compute/security_policy.py,sha256=Cpo5uFRutwG7hA0W84ax1MJ9E2Lpnmr8kqGauscyMwU,48681
|
581
583
|
pulumi_gcp/compute/security_policy_rule.py,sha256=-6RiNsdJfAU3utxw_QRGHqRBM9oLutMwW_hVH5VXRao,45855
|
582
584
|
pulumi_gcp/compute/security_scan_config.py,sha256=b_A_lLsqzgImDiL0bMx7fzQLHr1bINv3_IkSomjlmFI,37052
|
583
|
-
pulumi_gcp/compute/service_attachment.py,sha256=
|
585
|
+
pulumi_gcp/compute/service_attachment.py,sha256=KOa29tZSgDf6dMwqQZqj-9tcm6rYtDeGBJ5Si2V6RtQ,79980
|
584
586
|
pulumi_gcp/compute/shared_vpc_host_project.py,sha256=EkBDKXT8SrtUUUmZNBWcqBdL_s9hFkrXwPMx1gL9HnY,9032
|
585
587
|
pulumi_gcp/compute/shared_vpc_service_project.py,sha256=lJz13uOj4kwR0sXtj51UZXQYAbyp3O7kBv772_L-ELk,14721
|
586
588
|
pulumi_gcp/compute/snapshot.py,sha256=Iz4CoHDAzGWVD7rsJa1nN6TMJ52lyOgWca4_CzjprIk,59728
|
@@ -594,8 +596,8 @@ pulumi_gcp/compute/subnetwork_iam_binding.py,sha256=QGN-LzkwOroQn4fVUGg-jp0SFbOf
|
|
594
596
|
pulumi_gcp/compute/subnetwork_iam_member.py,sha256=fe1epJtj0zRqQPJkDw1LIyIjJXrrqNDVUg0kfa6vEGs,56503
|
595
597
|
pulumi_gcp/compute/subnetwork_iam_policy.py,sha256=OeSc9hzneoPmAPZbTehOJ8iR4ishnvAEGnbu9dHmPbQ,41736
|
596
598
|
pulumi_gcp/compute/target_grpc_proxy.py,sha256=rK5MZZHedwsA51YKrss08az_-rXsVYDzLWp4NAmK2dc,39000
|
597
|
-
pulumi_gcp/compute/target_http_proxy.py,sha256=
|
598
|
-
pulumi_gcp/compute/target_https_proxy.py,sha256=
|
599
|
+
pulumi_gcp/compute/target_http_proxy.py,sha256=3Wox4CvCHVZpgAwHDPoeo38f6xoj9xrx-BTte0iIzkU,37303
|
600
|
+
pulumi_gcp/compute/target_https_proxy.py,sha256=6-_vX8nYspB2QMSylmfDtZkCGu-RKefSlEVGOVZTnRk,84929
|
599
601
|
pulumi_gcp/compute/target_instance.py,sha256=aV5AWAcJi7b_AxBovoeD2PyEdYD--nHQdG-L8WDX43M,40947
|
600
602
|
pulumi_gcp/compute/target_pool.py,sha256=XmIPzU08LnsPWnOGQTW2KB4yWoXbEd18Z1y86ByaRt4,33721
|
601
603
|
pulumi_gcp/compute/target_ssl_proxy.py,sha256=fh1-dkUwxcmhzFjjh5FRZAiA3MJIphuYOrja-6CVTfc,36602
|
@@ -604,12 +606,12 @@ pulumi_gcp/compute/url_map.py,sha256=STu0c_W1ESwe2aTuz69CMz4QIWTBuYWOGIMxCU5J9zA
|
|
604
606
|
pulumi_gcp/compute/vpn_gateway.py,sha256=b2wYaaS9upuWhm1wmk4WWwdWoHSHlIvaiOiRfqoXKf4,26198
|
605
607
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=-GIGPHcB2bTFNgJhV_kaJEzoJOcs5oiAw6zaRES7UdY,71020
|
606
608
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
607
|
-
pulumi_gcp/config/__init__.pyi,sha256=
|
609
|
+
pulumi_gcp/config/__init__.pyi,sha256=r0Sx6nabUZRPHhv08l1nB3sUGbPmZT3_b-Ba1CHT14g,7858
|
608
610
|
pulumi_gcp/config/outputs.py,sha256=Q96GtTVg1WzFmBimxYM36KLhlaG0_jQONtYWi0r7BJk,1234
|
609
|
-
pulumi_gcp/config/vars.py,sha256=
|
611
|
+
pulumi_gcp/config/vars.py,sha256=YrexKmqHhBFxiaSrlD5YWe0YIyfFGnysjFD9blhJ3DQ,24488
|
610
612
|
pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
|
611
|
-
pulumi_gcp/container/_inputs.py,sha256
|
612
|
-
pulumi_gcp/container/attached_cluster.py,sha256=
|
613
|
+
pulumi_gcp/container/_inputs.py,sha256=vOWguIV7olgLHTdrKVbuwc8nISt5GoMB1t6kKm02atk,910367
|
614
|
+
pulumi_gcp/container/attached_cluster.py,sha256=xdOApnNODAr8bLQBOmYkTCiX5GcXPJHARhayiwug94A,75604
|
613
615
|
pulumi_gcp/container/aws_cluster.py,sha256=RSAGOgIKUgdRqJeh1WRze--I9D2wwfieWA_XkWnlrIA,68784
|
614
616
|
pulumi_gcp/container/aws_node_pool.py,sha256=T3baKSOOKd6iNSoKxv6DOmthoBvbSB59W1Z5Lj4SE84,76991
|
615
617
|
pulumi_gcp/container/azure_client.py,sha256=ja1BM7oekdhXD9hOFh4X2LauSGFyI-eaKEUfOEO1W-0,20178
|
@@ -625,7 +627,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=AWJxs6KA4uJGNHPqVBgM1wdqhnTTP
|
|
625
627
|
pulumi_gcp/container/get_registry_image.py,sha256=rW5Iu05PLEuAh0ZS8bgAUiw7v-24NtwpY_rEGv_rs2I,7166
|
626
628
|
pulumi_gcp/container/get_registry_repository.py,sha256=Yoc8aOM0EeT1wqRSpdKUqiXdC0OkbYIEBaaDOKiK654,5527
|
627
629
|
pulumi_gcp/container/node_pool.py,sha256=iTm8nwizxtNJZKoLLs11PQR144W79SSuEfqx-vm-JhU,73448
|
628
|
-
pulumi_gcp/container/outputs.py,sha256=
|
630
|
+
pulumi_gcp/container/outputs.py,sha256=wyTYR959mqjlUHmmjS3u0bSPaMkDBkC2utOZkYHjUtc,933941
|
629
631
|
pulumi_gcp/container/registry.py,sha256=x-w3Tt3GB8aGLAyIP9lnhn3xdTeO76mGPXM7_qZ4eYo,13287
|
630
632
|
pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
|
631
633
|
pulumi_gcp/containeranalysis/_inputs.py,sha256=OfL_EeuOmZBWiVuYz7H1LPg4vRlDvO_x9qIen0GsPAs,16837
|
@@ -758,11 +760,11 @@ pulumi_gcp/dataproc/job.py,sha256=NVl7CyQV9ef6XWpQtrqkL9fMN1JEOHBxrc4jyCbem2w,52
|
|
758
760
|
pulumi_gcp/dataproc/job_iam_binding.py,sha256=-iw2dWFPd6CVzDyX6xEJGVdnMphwDDO0AW1YbbNNYTU,32018
|
759
761
|
pulumi_gcp/dataproc/job_iam_member.py,sha256=SKwUcOkoD6Spa8bVtHJ9J_jiKQ3pVwp3jY7HFIOHiFE,31627
|
760
762
|
pulumi_gcp/dataproc/job_iam_policy.py,sha256=KJmIehIIZFJwAdRv6YWJAl0TXrrvvd2qKm3SVcUjsR8,20717
|
761
|
-
pulumi_gcp/dataproc/metastore_federation.py,sha256=
|
763
|
+
pulumi_gcp/dataproc/metastore_federation.py,sha256=rXLvrj-woP4cczXHhugzJU_tWcWG9fQVgPKeXab5bkc,37659
|
762
764
|
pulumi_gcp/dataproc/metastore_federation_iam_binding.py,sha256=jJHWQN9i_Er0-bCmkNlYdZVb4cxPpppgfTnbZflUvMQ,44839
|
763
765
|
pulumi_gcp/dataproc/metastore_federation_iam_member.py,sha256=EcWGBNYsZOeA2zvYoEeIWff8UYe6AgJqLP7GSZ1C6OU,44440
|
764
766
|
pulumi_gcp/dataproc/metastore_federation_iam_policy.py,sha256=U2DPrRyDAj0KF41c82dSi1fuzoTJdENXRG7ROovp5iw,30942
|
765
|
-
pulumi_gcp/dataproc/metastore_service.py,sha256=
|
767
|
+
pulumi_gcp/dataproc/metastore_service.py,sha256=qhYs4Zy31-G-0RniXkKyzuSYkmDAARX5swhpySy2lPQ,86217
|
766
768
|
pulumi_gcp/dataproc/metastore_service_iam_binding.py,sha256=JlmGlpZIt3huMhYyLOz2mIAYkMV3blBs6mBZcIRMab4,44480
|
767
769
|
pulumi_gcp/dataproc/metastore_service_iam_member.py,sha256=xD4HdxlX4nJUN7XIysmbRYtAHtyywj5YwEaLRwrCTcw,44081
|
768
770
|
pulumi_gcp/dataproc/metastore_service_iam_policy.py,sha256=jdBzOa4LIaWqdP35c0hObmLGWeU-5QXp5WLG17_oiqI,30643
|
@@ -774,11 +776,16 @@ pulumi_gcp/datastream/connection_profile.py,sha256=4zw42tjhPWFujSANYnTVVnhzP0Aov
|
|
774
776
|
pulumi_gcp/datastream/get_static_ips.py,sha256=-czj8fDMpCHaIaYH4dMGfzZRQf1jA3n1PA5RuhlS1L4,4916
|
775
777
|
pulumi_gcp/datastream/outputs.py,sha256=H5yenrPV9f2UdXDf_lff6AkBmun46m6JNxQyro0zSFM,195668
|
776
778
|
pulumi_gcp/datastream/private_connection.py,sha256=WJpkESNYZWjltJBLFZdkybpuK1JoFaSG0dy1HEHzVDw,31910
|
777
|
-
pulumi_gcp/datastream/stream.py,sha256=
|
779
|
+
pulumi_gcp/datastream/stream.py,sha256=Uqy1_-Mf5A4u2Y0zBRwbX5Z6bRqSFOCiboKBh8V7Ws0,102895
|
778
780
|
pulumi_gcp/deploymentmanager/__init__.py,sha256=C3bqOfW6LA4aa3S3B6DZgtui69Opb4k-dv_iR8I-w9I,340
|
779
781
|
pulumi_gcp/deploymentmanager/_inputs.py,sha256=T5aChBl4eyNUJkQIu8S_XiUOkJ33zN_5d3yizrKsG34,7543
|
780
782
|
pulumi_gcp/deploymentmanager/deployment.py,sha256=IS_KRktHJTI56jvMrCYdsYmTIpkxUpy8qgCdU2HNAVw,32712
|
781
783
|
pulumi_gcp/deploymentmanager/outputs.py,sha256=SJj8ApLhwKTJarkMhC4F7hFmzX4K178Fcr2B4OtvAmM,4472
|
784
|
+
pulumi_gcp/developerconnect/__init__.py,sha256=S__5tZjpHA6a7xXRqKt0BjvlRO3G91GlIVgtsSj_3UE,375
|
785
|
+
pulumi_gcp/developerconnect/_inputs.py,sha256=OcAC_Lhs04zCA7cChBbmIyi3JKwrduyG3D8CiNzqCDc,11256
|
786
|
+
pulumi_gcp/developerconnect/connection.py,sha256=gmREf0qnk566szp2FESsZz7oPrTCijFX4SkwhWLXvbA,49086
|
787
|
+
pulumi_gcp/developerconnect/git_repository_link.py,sha256=pMIIAdsidpJpkkqhUHAmUwgrQLXGO8fXxKY-YyuqmKM,43452
|
788
|
+
pulumi_gcp/developerconnect/outputs.py,sha256=2WT5kkgxWp0TTZAtGr9miNXh-vWT8_8obbvmDMSDn9o,9056
|
782
789
|
pulumi_gcp/diagflow/__init__.py,sha256=bGX5ZkTr6SY85lTIjOgrVR4r0OdyKOqbbMsO6K7pnyI,682
|
783
790
|
pulumi_gcp/diagflow/_inputs.py,sha256=9Un8RNF7MF__Em2KsYSmwwR1g3iprzZdCbhg14BRbIA,488153
|
784
791
|
pulumi_gcp/diagflow/agent.py,sha256=2ezEu7vI9gz24cnZUT4qm7TbQ9OkH7lsRvjODcduzec,51699
|
@@ -953,11 +960,11 @@ pulumi_gcp/gkehub/scope_iam_member.py,sha256=JxLxgd5_17TBM_UkJpWz1XTNDp14cTBV7Jg
|
|
953
960
|
pulumi_gcp/gkehub/scope_iam_policy.py,sha256=8CNaZs3BCnfjespaYQbFBr-XYwUXaeBfn2cLy_sN40g,24136
|
954
961
|
pulumi_gcp/gkehub/scope_rbac_role_binding.py,sha256=M6bxo8eqFrHsYUrigcQMwKcu__mVwHE4R07ZWY1n6oM,36409
|
955
962
|
pulumi_gcp/gkeonprem/__init__.py,sha256=Mvd41ZaItFnzM4iQtQTqhAwcPeZ-cpWq1hjgdvBi_e8,488
|
956
|
-
pulumi_gcp/gkeonprem/_inputs.py,sha256=
|
963
|
+
pulumi_gcp/gkeonprem/_inputs.py,sha256=EzgjZ06KPg3jWy4XLOWtKyzICXF3kokDkJLMrIV-qOk,366620
|
957
964
|
pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py,sha256=E34fGzH-F_roLCpVEpduu5pXqtAnh8QP65-kXifhgEA,88311
|
958
965
|
pulumi_gcp/gkeonprem/bare_metal_cluster.py,sha256=DJtZHVoGtrYJjKDOhUXPe3JUEV3UHHEPMMy4i1KYjpE,104819
|
959
966
|
pulumi_gcp/gkeonprem/bare_metal_node_pool.py,sha256=XrG6U4f1LZ1czH3MsipW-N4C5lmV_B8O3r5uIH_5BLA,49519
|
960
|
-
pulumi_gcp/gkeonprem/outputs.py,sha256=
|
967
|
+
pulumi_gcp/gkeonprem/outputs.py,sha256=DRyuMAlBsV6UBrbeECPFtcZ6G7oPhW7PAmoijynkD18,271543
|
961
968
|
pulumi_gcp/gkeonprem/v_mware_cluster.py,sha256=GR8h7aEOuAh0p6XeO4vk4Th-fqtPDg9yuPvMjBPnl4s,95946
|
962
969
|
pulumi_gcp/gkeonprem/v_mware_node_pool.py,sha256=MGgMQLBsgDxHisud25S0EgCZc1t7se-h60qay6o1Pug,50073
|
963
970
|
pulumi_gcp/healthcare/__init__.py,sha256=va96glIWoYUrqVJFXE5I-k0g4vXw3qTjwMD7qWY0J9E,1212
|
@@ -1140,6 +1147,10 @@ pulumi_gcp/memcache/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0
|
|
1140
1147
|
pulumi_gcp/memcache/_inputs.py,sha256=RmLaU7WN7jxNrnQWJDIRQS5hbDPwNRR9ZH2UCBdQIro,26940
|
1141
1148
|
pulumi_gcp/memcache/instance.py,sha256=0Bv8wo0GCpssG4jOF99wIK5doBUXzouwdSV19lIegmw,55246
|
1142
1149
|
pulumi_gcp/memcache/outputs.py,sha256=Po7hfUgZz1XzZtmeY5res3sxQUauz2Xj2pKuRTLpOMA,19541
|
1150
|
+
pulumi_gcp/memorystore/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0sc,338
|
1151
|
+
pulumi_gcp/memorystore/_inputs.py,sha256=KdqEmMcMXfLGiKEJ8_NJxNFfjmN5KVI41fqULbV_xHw,26037
|
1152
|
+
pulumi_gcp/memorystore/instance.py,sha256=22ctpwcpPQbjPYK6aQiEWDFgmEu-sC0O0LaTPFi6B4o,78256
|
1153
|
+
pulumi_gcp/memorystore/outputs.py,sha256=Q6GpmCTotGhy3ew2Cd-R4YGAhlosFPpUTRbKADUH024,20797
|
1143
1154
|
pulumi_gcp/migrationcenter/__init__.py,sha256=g4TuRiPN23lqw1gxJ_8DcfUnWfVq35Jv6vCVG9FAYNw,365
|
1144
1155
|
pulumi_gcp/migrationcenter/_inputs.py,sha256=UCOkNuStYN2kRGTscStVXr3N_LdQEt7kYDzovpeZsZo,36366
|
1145
1156
|
pulumi_gcp/migrationcenter/group.py,sha256=F9824NdgSfbCpi2NaC2jpkRpkXaMuqh34-pLz3AKqxI,28722
|
@@ -1178,7 +1189,7 @@ pulumi_gcp/netapp/backup_vault.py,sha256=JD_W918-Dav327i3q83YuMwdpK7zbJ8VrLsULvV
|
|
1178
1189
|
pulumi_gcp/netapp/kmsconfig.py,sha256=UhY3qreZTndzW0bYejVen1LFwGuHxry7T2bis1ZrioY,29268
|
1179
1190
|
pulumi_gcp/netapp/outputs.py,sha256=QkE3tEL0CCqcxvHGdkAtHrqjtPCGFm-OvLVx5fQER-M,42342
|
1180
1191
|
pulumi_gcp/netapp/storage_pool.py,sha256=ultfJe6AxYk_20QzGmsXvlJU8mKHz773iSGU4qlqvIY,53168
|
1181
|
-
pulumi_gcp/netapp/volume.py,sha256=
|
1192
|
+
pulumi_gcp/netapp/volume.py,sha256=R5q-WAVdW3KOe6RQNCZRakiWJjSHfKENW08SEpwmY80,95171
|
1182
1193
|
pulumi_gcp/netapp/volume_replication.py,sha256=FVjUd9UBdpJKE54VyF-wTu3x5pD45Y_Nslf3QrfCZNc,61864
|
1183
1194
|
pulumi_gcp/netapp/volume_snapshot.py,sha256=-7fJfPboj_Kan3LwtOwi0QuaQNmPC-rXN9aTLunkWb0,28538
|
1184
1195
|
pulumi_gcp/networkconnectivity/__init__.py,sha256=precnbXbVh3d-l7PCBvQ47Y1KmPL3O_L-Xemc_OROYg,492
|
@@ -1248,7 +1259,7 @@ pulumi_gcp/notebooks/runtime_iam_policy.py,sha256=1W3UhIRKAihLQr9rt7QtBym65pGB15
|
|
1248
1259
|
pulumi_gcp/organizations/__init__.py,sha256=Niv6DN8thas05JIZKrLcl7ijyly0dXPk723BEOKw2qI,850
|
1249
1260
|
pulumi_gcp/organizations/_inputs.py,sha256=LDTQGYuOgNkrOR6ba5UxsQOlxXduxKXdaHmFYiCteNk,37223
|
1250
1261
|
pulumi_gcp/organizations/access_approval_settings.py,sha256=W1ytw9ZITAwGwVQpxmfiFKPwde9E0UA8jQjB4oGOXus,32967
|
1251
|
-
pulumi_gcp/organizations/folder.py,sha256=
|
1262
|
+
pulumi_gcp/organizations/folder.py,sha256=14dVWd7r1VA1PRO8iRtkCMlA-Jsda6jlSpQ2GHGZNbg,24551
|
1252
1263
|
pulumi_gcp/organizations/get_active_folder.py,sha256=RyBIG97q39OH3VuIVq8xohbzKWZTxtuqmzEEBPs9500,6323
|
1253
1264
|
pulumi_gcp/organizations/get_billing_account.py,sha256=XF-Iv8NFQrZ0ainbBsMLvPktrLn6zpHKUrJPnndQKlM,7938
|
1254
1265
|
pulumi_gcp/organizations/get_client_config.py,sha256=NsN9W82g8dqk4-TDerxvPp7BbrbxRr0gCuGKv1TbsGo,4748
|
@@ -1411,7 +1422,7 @@ pulumi_gcp/securitycenter/v2_organization_source.py,sha256=YOTlQypT17CDhCcfzozFh
|
|
1411
1422
|
pulumi_gcp/securitycenter/v2_organization_source_iam_binding.py,sha256=3eDosMrG5Avr1q-qifM8yl0_daekg5n8HRuSX7dKBEM,39002
|
1412
1423
|
pulumi_gcp/securitycenter/v2_organization_source_iam_member.py,sha256=ZZco4ozA8ClTqFRLudQM6FrnGrtXWBudKBYDbIWr_PM,38603
|
1413
1424
|
pulumi_gcp/securitycenter/v2_organization_source_iam_policy.py,sha256=F5LFwqJu8qiUirjL_R1C-QOIhqzWxLiI8MPN2RVFqIg,25043
|
1414
|
-
pulumi_gcp/securitycenter/v2_project_mute_config.py,sha256=
|
1425
|
+
pulumi_gcp/securitycenter/v2_project_mute_config.py,sha256=LEYzZdQsNDa0FTLNXfxmlOSvmQIv21RtXayqOJWOyy8,28828
|
1415
1426
|
pulumi_gcp/securitycenter/v2_project_notification_config.py,sha256=6bXEH6mJ-9kZZiiJed5AdoQQ3hHGGzj6J92QDtmrrio,25409
|
1416
1427
|
pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py,sha256=sx9OW-n438UiDGG_0_Cg_4wRjsr02DZgBME3IxahbPE,38464
|
1417
1428
|
pulumi_gcp/securityposture/__init__.py,sha256=mXkpJfV_Dx5wXVxmTviMibDkwEnBzQKLcAb8ySL4yow,371
|
@@ -1611,7 +1622,7 @@ pulumi_gcp/vmwareengine/private_cloud.py,sha256=gMMyYbTs_8gCr2OdnQdj2yd4HKx8BZ-6
|
|
1611
1622
|
pulumi_gcp/vmwareengine/subnet.py,sha256=fI_S16YC05LEarY8H4pWJ3X5SYBa3CP3NLrvuStTq5M,29552
|
1612
1623
|
pulumi_gcp/vpcaccess/__init__.py,sha256=jJr9gxIqUsUWWesAqiYgHCU2aDlXvh7deDVD9kM2Qng,368
|
1613
1624
|
pulumi_gcp/vpcaccess/_inputs.py,sha256=as8MsKkrhygTA6QaWvFNNlUMNfY1hpXuYQ8MHVopsao,3142
|
1614
|
-
pulumi_gcp/vpcaccess/connector.py,sha256=
|
1625
|
+
pulumi_gcp/vpcaccess/connector.py,sha256=XOR0MvAAQL-va5QM1XTK-n9iiMasq8kZzNATCE5AkiY,42492
|
1615
1626
|
pulumi_gcp/vpcaccess/get_connector.py,sha256=E5VwSvWcztQ55QSpy4p6Qzx2npjPQS9k_KnqjhuvH1s,10604
|
1616
1627
|
pulumi_gcp/vpcaccess/outputs.py,sha256=pCJRnA5dG978_ANLO8TAu6j3QACtzlXw56B3B4SeYSQ,3686
|
1617
1628
|
pulumi_gcp/workbench/__init__.py,sha256=gNUlNEXeqvCKDmkugD4D2BJYgjTxkoU883peNvn04G8,483
|
@@ -1638,7 +1649,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=lyD1PT_XiLqOCTMa
|
|
1638
1649
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=v1_3Z7qkX8soy9cEXEQBmDB_eBjFu0_7kXU8MDrWvDQ,37784
|
1639
1650
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=Pa7-SRLzY5Hwcs3bky3UNMLldVUhaQl75RXMXWCXMuk,37385
|
1640
1651
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=xglGMHFGQY-gU2mogi8-yrBUSPW0hpBV25DNHSI2J90,24019
|
1641
|
-
pulumi_gcp-8.2.
|
1642
|
-
pulumi_gcp-8.2.
|
1643
|
-
pulumi_gcp-8.2.
|
1644
|
-
pulumi_gcp-8.2.
|
1652
|
+
pulumi_gcp-8.2.0a1726675738.dist-info/METADATA,sha256=u4OPVtBKi-9fDDrX9ru46csyJ7WfRyAxP1tjaUXO-P8,2727
|
1653
|
+
pulumi_gcp-8.2.0a1726675738.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
1654
|
+
pulumi_gcp-8.2.0a1726675738.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1655
|
+
pulumi_gcp-8.2.0a1726675738.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.2.0a1726675738.dist-info}/top_level.txt
RENAMED
File without changes
|