pulumi-gcp 7.17.0a1712402830__py3-none-any.whl → 7.17.0a1712602552__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +566 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/billing/project_info.py +4 -4
  13. pulumi_gcp/cloudquota/__init__.py +2 -0
  14. pulumi_gcp/cloudquota/_inputs.py +131 -0
  15. pulumi_gcp/cloudquota/outputs.py +118 -0
  16. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  17. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  18. pulumi_gcp/compute/network_endpoint.py +8 -0
  19. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  20. pulumi_gcp/compute/region_backend_service.py +28 -0
  21. pulumi_gcp/compute/target_instance.py +4 -4
  22. pulumi_gcp/config/__init__.pyi +2 -0
  23. pulumi_gcp/config/vars.py +4 -0
  24. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  25. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  26. pulumi_gcp/dataplex/task.py +16 -16
  27. pulumi_gcp/dataproc/_inputs.py +71 -0
  28. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  29. pulumi_gcp/dataproc/metastore_service.py +120 -0
  30. pulumi_gcp/dataproc/outputs.py +128 -0
  31. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  32. pulumi_gcp/firestore/backup_schedule.py +14 -14
  33. pulumi_gcp/firestore/field.py +4 -4
  34. pulumi_gcp/gkehub/membership_binding.py +6 -6
  35. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  36. pulumi_gcp/gkehub/namespace.py +4 -4
  37. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  38. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  39. pulumi_gcp/kms/_inputs.py +46 -0
  40. pulumi_gcp/kms/crypto_key.py +54 -0
  41. pulumi_gcp/kms/crypto_key_version.py +54 -0
  42. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  43. pulumi_gcp/kms/outputs.py +54 -0
  44. pulumi_gcp/orgpolicy/policy.py +2 -2
  45. pulumi_gcp/provider.py +20 -0
  46. pulumi_gcp/pubsub/subscription.py +4 -4
  47. pulumi_gcp/vertex/__init__.py +1 -0
  48. pulumi_gcp/vertex/_inputs.py +169 -0
  49. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  50. pulumi_gcp/vertex/outputs.py +194 -0
  51. pulumi_gcp/vpcaccess/connector.py +77 -28
  52. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +55 -47
  54. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
@@ -31,10 +31,17 @@ class ConnectorArgs:
31
31
  The set of arguments for constructing a Connector resource.
32
32
  :param pulumi.Input[str] ip_cidr_range: The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`.
33
33
  :param pulumi.Input[str] machine_type: Machine type of VM Instance underlying connector. Default is e2-micro
34
- :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector.
35
- :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
36
- :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector.
37
- :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200.
34
+ :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
35
+ higher than the value specified by min_instances.
36
+ :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
37
+ 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
38
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
39
+ max_throughput is discouraged in favor of max_instances.
40
+ :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
41
+ lower than the value specified by max_instances.
42
+ :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.
43
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
44
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
38
45
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
39
46
 
40
47
 
@@ -97,7 +104,8 @@ class ConnectorArgs:
97
104
  @pulumi.getter(name="maxInstances")
98
105
  def max_instances(self) -> Optional[pulumi.Input[int]]:
99
106
  """
100
- Maximum value of instances in autoscaling group underlying the connector.
107
+ Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
108
+ higher than the value specified by min_instances.
101
109
  """
102
110
  return pulumi.get(self, "max_instances")
103
111
 
@@ -109,7 +117,10 @@ class ConnectorArgs:
109
117
  @pulumi.getter(name="maxThroughput")
110
118
  def max_throughput(self) -> Optional[pulumi.Input[int]]:
111
119
  """
112
- Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
120
+ Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
121
+ 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
122
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
123
+ max_throughput is discouraged in favor of max_instances.
113
124
  """
114
125
  return pulumi.get(self, "max_throughput")
115
126
 
@@ -121,7 +132,8 @@ class ConnectorArgs:
121
132
  @pulumi.getter(name="minInstances")
122
133
  def min_instances(self) -> Optional[pulumi.Input[int]]:
123
134
  """
124
- Minimum value of instances in autoscaling group underlying the connector.
135
+ Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
136
+ lower than the value specified by max_instances.
125
137
  """
126
138
  return pulumi.get(self, "min_instances")
127
139
 
@@ -133,7 +145,9 @@ class ConnectorArgs:
133
145
  @pulumi.getter(name="minThroughput")
134
146
  def min_throughput(self) -> Optional[pulumi.Input[int]]:
135
147
  """
136
- Minimum throughput of the connector in Mbps. Default and min is 200.
148
+ Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
149
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
150
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
137
151
  """
138
152
  return pulumi.get(self, "min_throughput")
139
153
 
@@ -229,10 +243,17 @@ class _ConnectorState:
229
243
  :param pulumi.Input[Sequence[pulumi.Input[str]]] connected_projects: List of projects using the connector.
230
244
  :param pulumi.Input[str] ip_cidr_range: The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`.
231
245
  :param pulumi.Input[str] machine_type: Machine type of VM Instance underlying connector. Default is e2-micro
232
- :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector.
233
- :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
234
- :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector.
235
- :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200.
246
+ :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
247
+ higher than the value specified by min_instances.
248
+ :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
249
+ 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
250
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
251
+ max_throughput is discouraged in favor of max_instances.
252
+ :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
253
+ lower than the value specified by max_instances.
254
+ :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.
255
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
256
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
236
257
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
237
258
 
238
259
 
@@ -315,7 +336,8 @@ class _ConnectorState:
315
336
  @pulumi.getter(name="maxInstances")
316
337
  def max_instances(self) -> Optional[pulumi.Input[int]]:
317
338
  """
318
- Maximum value of instances in autoscaling group underlying the connector.
339
+ Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
340
+ higher than the value specified by min_instances.
319
341
  """
320
342
  return pulumi.get(self, "max_instances")
321
343
 
@@ -327,7 +349,10 @@ class _ConnectorState:
327
349
  @pulumi.getter(name="maxThroughput")
328
350
  def max_throughput(self) -> Optional[pulumi.Input[int]]:
329
351
  """
330
- Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
352
+ Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
353
+ 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
354
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
355
+ max_throughput is discouraged in favor of max_instances.
331
356
  """
332
357
  return pulumi.get(self, "max_throughput")
333
358
 
@@ -339,7 +364,8 @@ class _ConnectorState:
339
364
  @pulumi.getter(name="minInstances")
340
365
  def min_instances(self) -> Optional[pulumi.Input[int]]:
341
366
  """
342
- Minimum value of instances in autoscaling group underlying the connector.
367
+ Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
368
+ lower than the value specified by max_instances.
343
369
  """
344
370
  return pulumi.get(self, "min_instances")
345
371
 
@@ -351,7 +377,9 @@ class _ConnectorState:
351
377
  @pulumi.getter(name="minThroughput")
352
378
  def min_throughput(self) -> Optional[pulumi.Input[int]]:
353
379
  """
354
- Minimum throughput of the connector in Mbps. Default and min is 200.
380
+ Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
381
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
382
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
355
383
  """
356
384
  return pulumi.get(self, "min_throughput")
357
385
 
@@ -548,10 +576,17 @@ class Connector(pulumi.CustomResource):
548
576
  :param pulumi.ResourceOptions opts: Options for the resource.
549
577
  :param pulumi.Input[str] ip_cidr_range: The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`.
550
578
  :param pulumi.Input[str] machine_type: Machine type of VM Instance underlying connector. Default is e2-micro
551
- :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector.
552
- :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
553
- :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector.
554
- :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200.
579
+ :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
580
+ higher than the value specified by min_instances.
581
+ :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
582
+ 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
583
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
584
+ max_throughput is discouraged in favor of max_instances.
585
+ :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
586
+ lower than the value specified by max_instances.
587
+ :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.
588
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
589
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
555
590
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
556
591
 
557
592
 
@@ -730,10 +765,17 @@ class Connector(pulumi.CustomResource):
730
765
  :param pulumi.Input[Sequence[pulumi.Input[str]]] connected_projects: List of projects using the connector.
731
766
  :param pulumi.Input[str] ip_cidr_range: The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`.
732
767
  :param pulumi.Input[str] machine_type: Machine type of VM Instance underlying connector. Default is e2-micro
733
- :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector.
734
- :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
735
- :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector.
736
- :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200.
768
+ :param pulumi.Input[int] max_instances: Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
769
+ higher than the value specified by min_instances.
770
+ :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
771
+ 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
772
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
773
+ max_throughput is discouraged in favor of max_instances.
774
+ :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
775
+ lower than the value specified by max_instances.
776
+ :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.
777
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
778
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
737
779
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
738
780
 
739
781
 
@@ -795,7 +837,8 @@ class Connector(pulumi.CustomResource):
795
837
  @pulumi.getter(name="maxInstances")
796
838
  def max_instances(self) -> pulumi.Output[int]:
797
839
  """
798
- Maximum value of instances in autoscaling group underlying the connector.
840
+ Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
841
+ higher than the value specified by min_instances.
799
842
  """
800
843
  return pulumi.get(self, "max_instances")
801
844
 
@@ -803,7 +846,10 @@ class Connector(pulumi.CustomResource):
803
846
  @pulumi.getter(name="maxThroughput")
804
847
  def max_throughput(self) -> pulumi.Output[Optional[int]]:
805
848
  """
806
- Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300.
849
+ Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
850
+ 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
851
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
852
+ max_throughput is discouraged in favor of max_instances.
807
853
  """
808
854
  return pulumi.get(self, "max_throughput")
809
855
 
@@ -811,7 +857,8 @@ class Connector(pulumi.CustomResource):
811
857
  @pulumi.getter(name="minInstances")
812
858
  def min_instances(self) -> pulumi.Output[int]:
813
859
  """
814
- Minimum value of instances in autoscaling group underlying the connector.
860
+ Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
861
+ lower than the value specified by max_instances.
815
862
  """
816
863
  return pulumi.get(self, "min_instances")
817
864
 
@@ -819,7 +866,9 @@ class Connector(pulumi.CustomResource):
819
866
  @pulumi.getter(name="minThroughput")
820
867
  def min_throughput(self) -> pulumi.Output[Optional[int]]:
821
868
  """
822
- Minimum throughput of the connector in Mbps. Default and min is 200.
869
+ Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
870
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
871
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
823
872
  """
824
873
  return pulumi.get(self, "min_throughput")
825
874
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.17.0a1712402830
3
+ Version: 7.17.0a1712602552
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
@@ -1,7 +1,7 @@
1
- pulumi_gcp/__init__.py,sha256=q5qbBHGHDMVIK9Dhp922nbOfOg4-zB-073xBom86FMA,184745
1
+ pulumi_gcp/__init__.py,sha256=hK-wYHKUffcNGW0LhWWIDCuvHjcoJF0kLD5JjVzMs6A,185547
2
2
  pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
3
3
  pulumi_gcp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_gcp/provider.py,sha256=emWh3cxSYydb5yYmHK7qmkcyfFr2t6ruKt11hJGPrMQ,183162
4
+ pulumi_gcp/provider.py,sha256=0aPHW3JF3gy-iabYUgSzf2qA-dszO5nXdXus0t7eR6o,184256
5
5
  pulumi_gcp/pulumi-plugin.json,sha256=hqqvCNOjkQUnsCresqHpje3VJwwA09jwaivXfqGtCDg,40
6
6
  pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
@@ -98,15 +98,20 @@ pulumi_gcp/appengine/get_default_service_account.py,sha256=sm54cWcYXNOP8k9_wqYK9
98
98
  pulumi_gcp/appengine/outputs.py,sha256=_1Wfs1scdl52opYdL-KAdlJNoVin94iMGpOSnjfdjk0,128868
99
99
  pulumi_gcp/appengine/service_network_settings.py,sha256=SfM6tt_m5P7RHvQjfHLzZB6UmPQbM9AmeQJWDTUZVBQ,16676
100
100
  pulumi_gcp/appengine/standard_app_version.py,sha256=5oBMEZq91CBsWF8HIaZt1KKyFjFMVukrXjyMRzVpFtQ,78664
101
- pulumi_gcp/apphub/__init__.py,sha256=BlLyvHb7uiT5svtR5KbyQyfIUEYqJgAWVh2plgLl2bY,507
101
+ pulumi_gcp/apphub/__init__.py,sha256=0vP83m7GyaK0lfN-wTfa8B4Xhh_aSHwluUlK-e0FrQI,538
102
102
  pulumi_gcp/apphub/_inputs.py,sha256=j1Xub5rrIkUcocSrYQNL_UrDpIC4o7FPSgIFKQg8eUo,37444
103
103
  pulumi_gcp/apphub/application.py,sha256=KRqF2NRGtv5UFCet278LwivyanL0z49t4VOals1T2NA,30385
104
+ pulumi_gcp/apphub/get_application.py,sha256=doNugRf9Twoi3ZmG_H19kcNRLy_4l86kSBvvSSLQoqE,8206
104
105
  pulumi_gcp/apphub/get_discovered_service.py,sha256=7YPbLyMvfTqU-PDI-SHDPMQSFTMBN_58AgiftXkJvSU,6822
105
106
  pulumi_gcp/apphub/get_discovered_workload.py,sha256=eOlh6aSofN1oXJcZSZbAtmJddDpjx6b324j7qazMMk8,7192
106
- pulumi_gcp/apphub/outputs.py,sha256=_Alnj-DLibF_JZ-ispdNJ5lwVI93Xhq74WcYW6RgkGU,41262
107
+ pulumi_gcp/apphub/outputs.py,sha256=7OYClYtUCenMkNxADHvPf2ld60c7Ae2egDev_qbJVXQ,48655
107
108
  pulumi_gcp/apphub/service.py,sha256=jCXxcM4PVhon2lWVdyQvSLx5o0rHjLbn9Yttq1ZAoKc,48998
108
109
  pulumi_gcp/apphub/service_project_attachment.py,sha256=589pKkz1dJnwmN0snHjju4Oe9wx_NKUbB_b5OdAsXxc,22962
109
110
  pulumi_gcp/apphub/workload.py,sha256=7afsE99C7qY6-cnw2QAiLLfSuVGRji3bIkYdhu9KJ7w,53572
111
+ pulumi_gcp/applicationintegration/__init__.py,sha256=ausSKqpug2Jb8qm9cKAnN9m8qLFm0szr6xjU9Fkx_c0,336
112
+ pulumi_gcp/applicationintegration/_inputs.py,sha256=tdbt5yVk_SKGFImNuQ5t_Qnbt5sWkQZNc8yzsjmJZXY,5008
113
+ pulumi_gcp/applicationintegration/client.py,sha256=a43b3zg85A_WqKnWcssPBMRnv54qbqmPJbUsZc1bF_c,23642
114
+ pulumi_gcp/applicationintegration/outputs.py,sha256=0K4yCXQyOb4YtzOXzVJv530cdV9ZGs2vuIifHpCgpY4,4964
110
115
  pulumi_gcp/artifactregistry/__init__.py,sha256=23W9EF8nOJfmk0n2SszUDCj8BE-0yYb_ozXI5ZqTVAA,551
111
116
  pulumi_gcp/artifactregistry/_inputs.py,sha256=e9fGGZ91PBe-yd3xlBSRjHg9dXZHkGBkMDENYTbL29Q,39733
112
117
  pulumi_gcp/artifactregistry/get_repository.py,sha256=ZnO9BNXIORx_O8bbR-s_4ZkLHQ4crp8Wxr1yGUYOMvs,13031
@@ -142,7 +147,7 @@ pulumi_gcp/biglake/database.py,sha256=hGXCIUWVH_fXYQmM1S3AMjEnq-EhjpKHY-58JPJZHZ
142
147
  pulumi_gcp/biglake/outputs.py,sha256=G-nuuY6ouZIv3bA_-Sr5LI4o-bfKfpdNax7b_Prraqs,7540
143
148
  pulumi_gcp/biglake/table.py,sha256=gK9xfiUqe7siNqu_SK_MnfUSuVFVVMlHfMTVxeNM5wE,29522
144
149
  pulumi_gcp/bigquery/__init__.py,sha256=kZS2vw_OB-Azsnpm24Ioq03ew7ktEImnUhyCV4GF61g,1128
145
- pulumi_gcp/bigquery/_inputs.py,sha256=Knk3hG3k0_rSXS0PfO9ZSS_fSabiAPeT4YF4h5zl9DQ,248859
150
+ pulumi_gcp/bigquery/_inputs.py,sha256=LtGYUfKOQ2f_h1xQ5lKPW0etUGtj1kiNdroyjInBmDw,249822
146
151
  pulumi_gcp/bigquery/app_profile.py,sha256=cVYj7JP-Tdiwx2BbzMBCXur_7roPDXkIBYaaBzgwNOg,42509
147
152
  pulumi_gcp/bigquery/bi_reservation.py,sha256=vL-x78OoAFv76CbsCLAy9ulrxh-K4PPOfwRk-AkeaOs,18925
148
153
  pulumi_gcp/bigquery/capacity_commitment.py,sha256=aGlNVnuwyMO19b47THYMiC-rn13QV9R4TAflsI7_gkI,35608
@@ -165,10 +170,10 @@ pulumi_gcp/bigquery/iam_binding.py,sha256=CNjbFoFWobt8nKiNHRgPffed4CSKqZ3kVOS3ai
165
170
  pulumi_gcp/bigquery/iam_member.py,sha256=RFKlSrDiSj9uT-ie-WdUl_9QsfWoOuAKTEzhbQN38gU,41286
166
171
  pulumi_gcp/bigquery/iam_policy.py,sha256=EPrGxM5wYHgrS-HeJNgT9yxkEykJHWGZkN3vVyXneR0,36507
167
172
  pulumi_gcp/bigquery/job.py,sha256=oFsLyFZG_09c-l3Uc0oMBsTh8h2Fdrse6mHhknFjlGs,65893
168
- pulumi_gcp/bigquery/outputs.py,sha256=acgqfCYFtRE-M1dOSe5QOZVEQWKJqWxxQ3Vb2ho9jvI,259234
173
+ pulumi_gcp/bigquery/outputs.py,sha256=AyfZlcqQtW6T-_FCRbXE2UpxTL_VNRFiAU2F9YxSC7M,260087
169
174
  pulumi_gcp/bigquery/reservation.py,sha256=S9XA3Nd-BrMM0u-EH76tA3arUzC7BSN03718qOY6T24,33933
170
175
  pulumi_gcp/bigquery/reservation_assignment.py,sha256=RPCjAfrAdWGQMF4oTW1HWOegAX3W4miJOgs-XCjzkfE,19955
171
- pulumi_gcp/bigquery/routine.py,sha256=JVjP_jRxh6x3Se__hpe1bmkmiZmnd8ZKFocsOSehfkc,68247
176
+ pulumi_gcp/bigquery/routine.py,sha256=JyImkVRQcWxYI3mnWTyMrPe-8u18Bq38ysTqq7KwXAQ,73659
172
177
  pulumi_gcp/bigquery/table.py,sha256=-BRYGVpPLinVuhB8x21DQ207U0fERa4sjIQudd8ofYQ,94308
173
178
  pulumi_gcp/bigqueryanalyticshub/__init__.py,sha256=eLlmMzRfmFiCGrCneuBoup0vdx0zGFCV1J6lMnF1bkk,672
174
179
  pulumi_gcp/bigqueryanalyticshub/_inputs.py,sha256=_EM90SX_M7JV8_MyltnAyC2KuyHxUI0YUAzetWwGZzI,10040
@@ -213,7 +218,7 @@ pulumi_gcp/billing/account_iam_policy.py,sha256=-jRAVruNXpsmJF_0CYrQ5IL4bIMhoex7
213
218
  pulumi_gcp/billing/budget.py,sha256=gZitM7rIZP7MhKlxH359FnIHDo4T2WuQgsCxOtTuiHs,38489
214
219
  pulumi_gcp/billing/get_account_iam_policy.py,sha256=je3TQnVg968Insdz5W8Lk2AMxSTpGeKWPQvyQr4RvDA,4336
215
220
  pulumi_gcp/billing/outputs.py,sha256=_cvcFhnp93eWP92Q6BDxkI5BdFgUjEeVieqWpC5iazc,30032
216
- pulumi_gcp/billing/project_info.py,sha256=XUa_1nON1fc3S4Vzv9VTB-6wJst_6EduZnkvCMqGezg,12129
221
+ pulumi_gcp/billing/project_info.py,sha256=RE_oJv91_f23ggo4v3VJ8QGBpKOcmQk-alMsf7A5Q2g,12129
217
222
  pulumi_gcp/billing/sub_account.py,sha256=QOYl0ZL6zyQl_slINyA2PHyUX3cXjOYFymB6-oBi7So,17255
218
223
  pulumi_gcp/binaryauthorization/__init__.py,sha256=m7d8G8patRN0kKPrHK4inwl9q1bGQfCo0b3BkYN54cQ,505
219
224
  pulumi_gcp/binaryauthorization/_inputs.py,sha256=TOVE7BLWbYDFQ06_ZvwOZH9iSUg1cXoka-oxP1a7PnU,24798
@@ -328,10 +333,12 @@ pulumi_gcp/cloudidentity/group_membership.py,sha256=VJwhG3p8jViovYHqK6wTd1qrOoSU
328
333
  pulumi_gcp/cloudidentity/outputs.py,sha256=sLx05FtMOsXAqDVGXDkCFC8KXBLSJdQeGde_0x32V1o,34253
329
334
  pulumi_gcp/cloudids/__init__.py,sha256=W-QWG4l3271x7rK-t56HvDIiXsfaM3724RSwFqvWS1o,293
330
335
  pulumi_gcp/cloudids/endpoint.py,sha256=6S5tK_PrSqFjhMuR7NEoZuOM94u6banarx9DMiUbDJ4,29291
331
- pulumi_gcp/cloudquota/__init__.py,sha256=CrSWm__sJlY0axAZYb7_sbGNKBWjZdNA3bI_P7eQdtc,356
336
+ pulumi_gcp/cloudquota/__init__.py,sha256=PCqhLy0h840k7_L0roFK52lpUAaI8omz5RxjePHkl5g,413
337
+ pulumi_gcp/cloudquota/_inputs.py,sha256=vLgucGgkqsMpzF1NNi8qJvdBbdjwGWpvW_gftt0UmPc,5728
332
338
  pulumi_gcp/cloudquota/get_s_quota_info.py,sha256=yMQ3xSoVxoAKt-oOBsLmEyceeHOnafbiwHTOYVRV_y4,14198
333
339
  pulumi_gcp/cloudquota/get_s_quota_infos.py,sha256=YHijRXaUMdx3Sjg-SQEWx--4N_1sKokK5aRiDw-cYCI,4923
334
- pulumi_gcp/cloudquota/outputs.py,sha256=I6YYqjwoQlvr9YSaXGj1tGoyGe0-f4jAat7on3rPVOM,18588
340
+ pulumi_gcp/cloudquota/outputs.py,sha256=3WG-wWZkJcrCwvrvb8U7OfHP0S2A39KLUeIurom6X-A,23707
341
+ pulumi_gcp/cloudquota/s_quota_preference.py,sha256=olPp75P1vXLp7XOAsnPjzamPEHvTPK5-HsoT9HS3hVw,42351
335
342
  pulumi_gcp/cloudrun/__init__.py,sha256=k3lyAmFSjg3IgexkAy6gOkyouFN1cOP2_n0iybhb5uI,540
336
343
  pulumi_gcp/cloudrun/_inputs.py,sha256=c49dVvJPJjOTyNRTnfe2rnbDC0RI-bnKX30ucEta214,151702
337
344
  pulumi_gcp/cloudrun/domain_mapping.py,sha256=AlTtCLVL1E6LlgXf2hf117IGmlA8SYAdX83hx33yzkc,20978
@@ -481,7 +488,7 @@ pulumi_gcp/compute/instance_iam_member.py,sha256=q05oj_LwGqME5T7xFnPYWlWWV6HimZg
481
488
  pulumi_gcp/compute/instance_iam_policy.py,sha256=OciSrmzm7sIE3DuMC_7f8yV95jR2OWLv9BkGm8NVneg,40143
482
489
  pulumi_gcp/compute/instance_settings.py,sha256=IsM0lhUh5vy5asQBtJVDmwa550I-fxx73AoGVW-8frI,14771
483
490
  pulumi_gcp/compute/instance_template.py,sha256=LtyQ7udY9wx5O4c8Gj5YJalLx2q89zCpLCPe5EVHCPs,118623
484
- pulumi_gcp/compute/interconnect_attachment.py,sha256=0XIiPaA4k4WuIemIOKJ-UQWJ_2v6nZ9gnYNZ4qm1Pbs,91892
491
+ pulumi_gcp/compute/interconnect_attachment.py,sha256=PQ7N15UD2XyqK1-upAjfps-jUELnvTSYRL5rJqlcpkY,95315
485
492
  pulumi_gcp/compute/machine_image.py,sha256=IH0-gDXFB8Sb6Y3bNiD2k3sL_UXJnGySnJRpi6ybD6A,29516
486
493
  pulumi_gcp/compute/machine_image_iam_binding.py,sha256=zBHn5GfRsVg7845Gnrblfby-h-zGIfI-7TR6rv8ODJ4,41490
487
494
  pulumi_gcp/compute/machine_image_iam_member.py,sha256=ernz2zFMf0LXoZ568agkPN0LcDwjjm43iYEBTRL6O7M,41190
@@ -491,9 +498,9 @@ pulumi_gcp/compute/manged_ssl_certificate.py,sha256=ZhpH6W4pOHuABpnJiYss3qcRTnYG
491
498
  pulumi_gcp/compute/network.py,sha256=rrQPLuGTfocH_B10csvcOBH81BCJEoZfuvII4xsoGJo,50142
492
499
  pulumi_gcp/compute/network_attachment.py,sha256=fMxOVDnFkyZ4wjCeYagX2E-O877tCJNa0k9A5W-5_l0,47746
493
500
  pulumi_gcp/compute/network_edge_security_service.py,sha256=fDdHEr5WQJ2qD8p0pAexFwYzsrBqAzaZOTnPhGxaPYU,24831
494
- pulumi_gcp/compute/network_endpoint.py,sha256=7gaLAl1L9em3vOFNoy68BMfMEXXTZg_DvAh0YFD-WLg,26307
501
+ pulumi_gcp/compute/network_endpoint.py,sha256=TFdKeyoM6ASpeT8v7MIImCnAllrmD_Cfg5mLK_v7p7k,26819
495
502
  pulumi_gcp/compute/network_endpoint_group.py,sha256=YJ5ViwseUCfQdr2RMA0TaIQ_gtkouClsyFhLBJaia2M,39643
496
- pulumi_gcp/compute/network_endpoint_list.py,sha256=a1PnqXFCC8V8uoUI6QsJuRyIUGox7M3ARNpEm0FlCTA,24778
503
+ pulumi_gcp/compute/network_endpoint_list.py,sha256=rCc_m-r1KHQbS8GWhvIFlerHjFfF66J5BULqfv0awVs,25290
497
504
  pulumi_gcp/compute/network_firewall_policy.py,sha256=QJ5ZRLJ6d5sUYtqZmXVzllFDQwKQ7nUFld5huRi5pBc,23518
498
505
  pulumi_gcp/compute/network_firewall_policy_association.py,sha256=AyidcuUpGxpBxXjZRmZllWdBg-5TMaJaVBqtcY_bOJI,16396
499
506
  pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=bvBPcZmVbLWLRqpAB2jIctrkvLIKvoI92WiG-t-PtIA,49233
@@ -513,7 +520,7 @@ pulumi_gcp/compute/project_metadata_item.py,sha256=nUdOPZkKeIt2mTIA5lRs1R1kcFPyA
513
520
  pulumi_gcp/compute/public_advertised_prefix.py,sha256=Q-HM-w6MAAOVopRb5nfQ9Lyk-5cJ22hT9689jwZoxrY,21720
514
521
  pulumi_gcp/compute/public_delegated_prefix.py,sha256=9WcgJHnjHCdsmfKcyqaq56OwNHUJ0sXy4o1DtLvNBR0,26514
515
522
  pulumi_gcp/compute/region_autoscaler.py,sha256=0EWGLIKbwzGj-k-Q0fomSxoK3HGnzIrfWlQyV6hKuPU,31073
516
- pulumi_gcp/compute/region_backend_service.py,sha256=mH8pfUGTUmpXSEDD1pvtsYHk0wglxiMB8buOzNtZmv8,121762
523
+ pulumi_gcp/compute/region_backend_service.py,sha256=UkStTEjTQWyS2vHv3FpQoW_wZaW9qniZ38F9UmrHAbM,123040
517
524
  pulumi_gcp/compute/region_backend_service_iam_binding.py,sha256=ze2t9CfD38cOT1oqtnliGfpAIQIIG5c8-R6EpdMEkXk,35554
518
525
  pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=mvzkHJuOoPuKfEkXIbNjUCgHbrSd_yuUBcIAaB7kBic,35254
519
526
  pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=E7X7xgK2nHxz8QYakEH9Wz-6w_64t5B7HK4oU7ce7LM,30062
@@ -566,7 +573,7 @@ pulumi_gcp/compute/subnetwork_iam_policy.py,sha256=2zfxD4WxSXcq91EilAoj2GxCIdq9Z
566
573
  pulumi_gcp/compute/target_grpc_proxy.py,sha256=DHm94IuW1oGE2T9ETTqic5XXQqbfvkDj2VGZS4cILZI,40220
567
574
  pulumi_gcp/compute/target_http_proxy.py,sha256=1UmcaZ_QFgW5gfI_86iUKmUg9c4mC-0fpebPdGZXMbs,36422
568
575
  pulumi_gcp/compute/target_https_proxy.py,sha256=_ua3c29Nh6dkXm0vedpVpRWyaS3oWvJ1LhHCVy1zZXI,76779
569
- pulumi_gcp/compute/target_instance.py,sha256=PVRaLPRlYIclOVMuEpivfOF_zEF-uggCuFSzmgKOL1s,41957
576
+ pulumi_gcp/compute/target_instance.py,sha256=cnBU8RtmGcmyCdOS8C1zi6t0bjSxZhoZ81SgC0ZDbhw,41957
570
577
  pulumi_gcp/compute/target_pool.py,sha256=veakO3lthnzXh_jH3j2yeTpYXF3rI1jwKEEmZwuz0KU,33759
571
578
  pulumi_gcp/compute/target_ssl_proxy.py,sha256=TJMoWdlwOJXQpCL9vqhJoWBArF_XL4VegXFwu7NCdwY,36660
572
579
  pulumi_gcp/compute/target_tcp_proxy.py,sha256=thwh70GB1w16-nJckhEkPDDuIedv8irZPgCPTU8Xr_Q,28160
@@ -574,9 +581,9 @@ pulumi_gcp/compute/url_map.py,sha256=KUfPlZCs2Pl4heJe_KxEWSW3lFynB_AKNmG-SscbtHM
574
581
  pulumi_gcp/compute/vpn_gateway.py,sha256=8ya63AMq3J9lF9wSdzckT18JUyu4Yg3_ewvhDteDEco,25848
575
582
  pulumi_gcp/compute/vpn_tunnel.py,sha256=t4gWzmk180wpio0iJxoTPH5ww00kISdSqpfAJTC0eXo,70670
576
583
  pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
577
- pulumi_gcp/config/__init__.pyi,sha256=IZoxeZgA-jKwPA3rSZo6QNc1YOP3PVHDWiZwj2lZAz0,7308
584
+ pulumi_gcp/config/__init__.pyi,sha256=NY0oQwd2gHvuI7ZOI7N90wXilygK0aydXxc6jJNazFY,7351
578
585
  pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
579
- pulumi_gcp/config/vars.py,sha256=Q7ZkousUF_v9eUBJpXkhfILIsHufLQ6uNBJ-bFhCaic,23153
586
+ pulumi_gcp/config/vars.py,sha256=A9rJ2Z1JebNqZvPUjTeELutJnQcdbT3fFcH7eSmowSw,23289
580
587
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
581
588
  pulumi_gcp/container/_inputs.py,sha256=e0jJ-JYNLB_t0sGE21onj5ACEEkwrRFKw9b5Qayk5qk,609066
582
589
  pulumi_gcp/container/attached_cluster.py,sha256=MPUTP1ZuhZiBSdVCLZgX7dCtKwCVu6lkQF237GQWhbI,75112
@@ -608,7 +615,7 @@ pulumi_gcp/containeranalysis/occurence.py,sha256=ePkkThHAGA6mItyPXVoAHN4ns3P0YdI
608
615
  pulumi_gcp/containeranalysis/outputs.py,sha256=tKTjBy_TUrQtU5fLgeGLZVDuQ7_1ODp-fKw7PgG6sRw,11707
609
616
  pulumi_gcp/databasemigrationservice/__init__.py,sha256=TSOKMMGWNU2jmJt9LlIW8nNA9vCQf0pxMpZpbsIpV8M,382
610
617
  pulumi_gcp/databasemigrationservice/_inputs.py,sha256=iN2VndIAYH2Szo5WrxKLdwJqjpvHNF28naXsNsPJ61Y,78007
611
- pulumi_gcp/databasemigrationservice/connection_profile.py,sha256=XGRo3lUt6pNMqak9Hx97_qVKeS4N9Fp6t2YzL3dIhck,60645
618
+ pulumi_gcp/databasemigrationservice/connection_profile.py,sha256=5IgND40bMkVMTPo1_MjprsxLAGoDlxAXI0l22KjZCRI,60645
612
619
  pulumi_gcp/databasemigrationservice/outputs.py,sha256=vdKP9Creyr2lV1ldecHGOD39dBFS0ZImvvnMiGl6fg4,74814
613
620
  pulumi_gcp/databasemigrationservice/private_connection.py,sha256=jMkbOksZRdfHbsb3Wzw8BqY9plmSSDpMQqKH_K1X6qo,30826
614
621
  pulumi_gcp/datacatalog/__init__.py,sha256=M4wloqnS9CGbzIsU_zjPk4erIdmSgZFRcrrO9MC5pmI,1075
@@ -638,7 +645,7 @@ pulumi_gcp/datacatalog/taxonomy_iam_member.py,sha256=jo12UDfXK0F1OgBIT9bdPfA4s6I
638
645
  pulumi_gcp/datacatalog/taxonomy_iam_policy.py,sha256=owZ41cJolqmULpD_E4mUJJO1wTqe-vnpdB8zxG_egdI,31783
639
646
  pulumi_gcp/dataflow/__init__.py,sha256=qS8pqb0y81sac2hdiA-ho_6vCzHWikL_04SBITos24I,390
640
647
  pulumi_gcp/dataflow/_inputs.py,sha256=9iNp5uv7PEvSYaUjJ-N6fzn1HH-z16_hD2kzuy5r10Y,55942
641
- pulumi_gcp/dataflow/flex_template_job.py,sha256=-L7jfkwchxb29sq-cWRqimtWDUiepoIpwTH6V15dH4o,82900
648
+ pulumi_gcp/dataflow/flex_template_job.py,sha256=8KiGE-Fc_IXXgRIRsLa7u-FMXI8Tg1tWpHXAvTsQBlw,84335
642
649
  pulumi_gcp/dataflow/job.py,sha256=KIZ5LQigcSLE9u5mEJu0M08cKBrt_hqfgToQyUFuYOI,74759
643
650
  pulumi_gcp/dataflow/outputs.py,sha256=DVSc_fgMZ5AAIU4BrrksgcIcTFpV3o0dFeE22BaQo_I,52474
644
651
  pulumi_gcp/dataflow/pipeline.py,sha256=MiVitO1EBYpyYtd49LwBHGvWMPPsv4YULBYNlMXqvSY,53692
@@ -684,7 +691,7 @@ pulumi_gcp/dataplex/lake_iam_binding.py,sha256=Y4ippT3rKz9tG2EIByeyfIUx104bUE0Kn
684
691
  pulumi_gcp/dataplex/lake_iam_member.py,sha256=6nRFHOrCXmjeyXpPk0AoNaZh4NchOSiUI_jFIv0BYdo,35111
685
692
  pulumi_gcp/dataplex/lake_iam_policy.py,sha256=FyDiRlwZzCAzgnc8MwCQC5GKY_yoeE4oLzJNCkaxfHQ,31622
686
693
  pulumi_gcp/dataplex/outputs.py,sha256=S2trle-G3hQnAGHO_3TKmduORljdLBAPgiqDkLb7EsU,151703
687
- pulumi_gcp/dataplex/task.py,sha256=v2dV19nUdZgyhIMpZ56aCMAhBtafNhq8OqXeEQICsFU,56493
694
+ pulumi_gcp/dataplex/task.py,sha256=LjJp7jRigCO4NVK33laaV2lwb_vpe9ezeZsAAy_5iVk,56493
688
695
  pulumi_gcp/dataplex/task_iam_binding.py,sha256=dWtF9HSuwNv_ZhPqooJd-BL-YvyFh7JCrBkibugQNew,38671
689
696
  pulumi_gcp/dataplex/task_iam_member.py,sha256=ReBRqzbUJnboA_FLahT-8_yX-ZkWKUXhuuUlV1isR2E,38375
690
697
  pulumi_gcp/dataplex/task_iam_policy.py,sha256=BEsQ_2blWpJvCtqdHd5pC_xKBk3QuHZQWph8uBu4GVI,34886
@@ -693,7 +700,7 @@ pulumi_gcp/dataplex/zone_iam_binding.py,sha256=sFZ1vlV3qMmXrstRjKrAAQIsvd6XMiUSi
693
700
  pulumi_gcp/dataplex/zone_iam_member.py,sha256=iI_vnHCkAUc3YibyZys7ipwNY7vaIfgtiikK3qGsw4A,37044
694
701
  pulumi_gcp/dataplex/zone_iam_policy.py,sha256=yCxhEOHoEilXSlt8CUQ5J2oTZE8LJ9ehw_3QyFhuYR4,33555
695
702
  pulumi_gcp/dataproc/__init__.py,sha256=ltohNvj10PWTrJaJPlS5M9NjDVVBI8pZSw_-NC8ZNhU,1354
696
- pulumi_gcp/dataproc/_inputs.py,sha256=GBoRHIFB0-j1XJxTwkNk-sxiWcNYVOX8EVE7QyhTMaw,484163
703
+ pulumi_gcp/dataproc/_inputs.py,sha256=9JOnIqGXX_PvbfjM6q0U7CDrq6f-t4DuWMPFM_ZbJtE,487753
697
704
  pulumi_gcp/dataproc/autoscaling_policy.py,sha256=ZI4NfXiVVTOGek6hnHnsjCXNb9tcgbdOF5Ye0asipt8,26346
698
705
  pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py,sha256=8wzUdbX9SoLyWR6BJudHZ8bqcFzm1HgmbwLYyKw06Mo,40150
699
706
  pulumi_gcp/dataproc/autoscaling_policy_iam_member.py,sha256=ko-t5vGr1LPVMeWSYxXxyA8nUC7h8ymTwk_v6Kr_8fk,39854
@@ -706,7 +713,7 @@ pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py,sha256=SpKoKNaPsWaAhxL3
706
713
  pulumi_gcp/dataproc/get_cluster_iam_policy.py,sha256=WSGwAThfQN3uaKsn9mSrTdtKQC3YWCX9EJvn03Eyd0U,5338
707
714
  pulumi_gcp/dataproc/get_job_iam_policy.py,sha256=5Viqp-ptUlkZkPgqFQ4vplOrsdonGXRWhhhZFm3sFIQ,5245
708
715
  pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py,sha256=EMqAhQ_-gKxNQ_M6XP_g36LV8DVWE-jxgk78QLe9C1I,6086
709
- pulumi_gcp/dataproc/get_metastore_service.py,sha256=i4hoaNNao0gc2b2HIumvjcyqoaKnVGHv19-WiHLfsW4,14502
716
+ pulumi_gcp/dataproc/get_metastore_service.py,sha256=VXluJNPoo8zf415YDWgHq7sdmGv1O4oTKGL7zT-WOqQ,15082
710
717
  pulumi_gcp/dataproc/get_metastore_service_iam_policy.py,sha256=zYRt0uaH49Hcwkd7hwxWuYCHs-gEV8DSWesuDz_AxjI,6644
711
718
  pulumi_gcp/dataproc/job.py,sha256=TLzbNVd3x4XXUkWQlxMYa9ibppzHzJFpro3MmsFQz1k,51791
712
719
  pulumi_gcp/dataproc/job_iam_binding.py,sha256=9eBfXDlmx-HKHT2tCb8u6-q3A0M1D0VaxH4oJrFBRtY,23049
@@ -716,11 +723,11 @@ pulumi_gcp/dataproc/metastore_federation.py,sha256=1WIMEsR42KXgfHLm__bsA7Dbx9xeS
716
723
  pulumi_gcp/dataproc/metastore_federation_iam_binding.py,sha256=3BvpjSC7CSpZ9JB5eKeZjKmAterLJVZra39pa-pGVLw,31698
717
724
  pulumi_gcp/dataproc/metastore_federation_iam_member.py,sha256=Ch5XptuiBdmmecTtYD-Raca4Tewf-4XD4gfaJMxHhSo,31402
718
725
  pulumi_gcp/dataproc/metastore_federation_iam_policy.py,sha256=l165GnyJMJVBLRbY2J6dk7vZY2fMYcUl3Sx68s1mW6c,27658
719
- pulumi_gcp/dataproc/metastore_service.py,sha256=mLsSG4hWk8dW5bBxaOVQpz6PQuAwLcxqESgJOV7BbX8,76528
726
+ pulumi_gcp/dataproc/metastore_service.py,sha256=4hXDu4Ryhu_v75rhGqZ1A6nez-nzxKearuAlTsh9ajs,82002
720
727
  pulumi_gcp/dataproc/metastore_service_iam_binding.py,sha256=1-7HZiEUga3buSygAGTFUwn-cHcskW2XEPBrUQtNueY,37638
721
728
  pulumi_gcp/dataproc/metastore_service_iam_member.py,sha256=r74fxe-JfzfgVdOv63Jb22bFmArj9pVef7jUy5-ldAU,37342
722
729
  pulumi_gcp/dataproc/metastore_service_iam_policy.py,sha256=U6ORLmrgpw6BE9hvbSQBFtwDO3Slkf6lWZ2Uray5iQQ,33649
723
- pulumi_gcp/dataproc/outputs.py,sha256=c8sepCLaf41tetG9xZFhgUVnA6GKgomH6nJDMIyJ3qs,497350
730
+ pulumi_gcp/dataproc/outputs.py,sha256=2DiyHPpM1T7xKCHlUlqMkKHurkOZToWKGxooQ605yPY,503712
724
731
  pulumi_gcp/dataproc/workflow_template.py,sha256=GUOXICW_xqnTu-MKPDEHSHqZzyId5oSO_4j6WTIYIrY,50152
725
732
  pulumi_gcp/datastore/__init__.py,sha256=xavoW_--DyiX4VnpwCCr6VflCuvOLj8AreJ2ZbrJIF8,346
726
733
  pulumi_gcp/datastore/_inputs.py,sha256=41bwKSAhrKSmDSec3CYsMoYkcdeMIhiNvqPi-bHXcZU,1580
@@ -827,7 +834,7 @@ pulumi_gcp/firebase/app_check_device_check_config.py,sha256=BAi88jeobuTl97-IQSmO
827
834
  pulumi_gcp/firebase/app_check_play_integrity_config.py,sha256=x8mgcE-VQaeC6-mMCYhFUHLvFYoV3XsitfSsk2Xc4HU,20918
828
835
  pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py,sha256=cGJgwJk5Kkq4LT9zW_XdShBM397BcrZaRwdK4V8rKnw,22047
829
836
  pulumi_gcp/firebase/app_check_recaptcha_v3_config.py,sha256=qTKsvOmQYAmeM1lirl7qlfrZrwO7N_0GwMNcp86g2T0,23307
830
- pulumi_gcp/firebase/app_check_service_config.py,sha256=We1pBQLcf0s1e81oSVVqo9Bq89OLb42r0p6_bP-KThw,34587
837
+ pulumi_gcp/firebase/app_check_service_config.py,sha256=gXUfps3aqww_2iSAMQI4IMEQsegPKZ-wH366QzSAA8I,34585
831
838
  pulumi_gcp/firebase/apple_app.py,sha256=l3ienzWAFSU5C1iqYcHNKXfVVSWyvvgx-S7W2LaDPcs,29838
832
839
  pulumi_gcp/firebase/database_instance.py,sha256=djI2EhofTiTplASpA37rHVI6pVUVbS6SrhBKQZtvOnw,29542
833
840
  pulumi_gcp/firebase/extensions_instance.py,sha256=btuNRDqLzt5LCPHdiZH8cJBu9IZ2Rv9DS7uAdkOS-gQ,30483
@@ -854,10 +861,10 @@ pulumi_gcp/firebaserules/release.py,sha256=sjJt0ja1sZ4zNxv5IjdI7ATJx7PbU74fhQ2c7
854
861
  pulumi_gcp/firebaserules/ruleset.py,sha256=uEeIHnqDczLp7GONwhGFb36TCXwHhTTiXquQoOy0fPg,15136
855
862
  pulumi_gcp/firestore/__init__.py,sha256=Wchkbc9GSPt9us5HelFU99PgiE-yVU5bzw3DQKtttgg,435
856
863
  pulumi_gcp/firestore/_inputs.py,sha256=ZP_DGV_TkebbKrp-3g2y7MWY0FOztcw_tRveApC371Y,12947
857
- pulumi_gcp/firestore/backup_schedule.py,sha256=Ib9Zn8kk2Kh4JmoXnU1ZMsSnLVoX9lqvOjf9Xoy_z0s,26251
864
+ pulumi_gcp/firestore/backup_schedule.py,sha256=1oQZ8_PD0m96sqgaHgamRhyYDLwd7gkrPb_cHErG2_I,26048
858
865
  pulumi_gcp/firestore/database.py,sha256=OIrwmmqON-8oCuQXVjD3y6b1JjZM1cf3qdOc5v0muHI,70491
859
866
  pulumi_gcp/firestore/document.py,sha256=Zwoy7jdFwA9s8vmE6O-vJ2y-AlQTddaR2ZSQqmcoka4,28695
860
- pulumi_gcp/firestore/field.py,sha256=5VwRgstZIYRYn4LSmZ7MruMqfJWQlZz4TsJ-CXBd1z8,29818
867
+ pulumi_gcp/firestore/field.py,sha256=Udo7jJY-LdIndhf43Mq-RX5v6uRxgKJGo9s3sHH6bDE,29818
861
868
  pulumi_gcp/firestore/index.py,sha256=ZML3xvouUY_BpHUp1SQh5-wD-iAUSiDIfMbwUJZW6Wc,28903
862
869
  pulumi_gcp/firestore/outputs.py,sha256=K8-Nu0LSRaC213XQVRBHDuLvuFYIbuQkwdgiNAMiAn8,12872
863
870
  pulumi_gcp/folder/__init__.py,sha256=wLVz30d4tKDtVPp4BsH10obSXoVPu1gK7SMra3jJf88,569
@@ -896,18 +903,18 @@ pulumi_gcp/gkehub/get_feature_iam_policy.py,sha256=ZzVm3ushPjpESEoT23Ot__rfXWAxe
896
903
  pulumi_gcp/gkehub/get_membership_iam_policy.py,sha256=dIaSrT6seiYWQYJO2qeDgSdB1lbLDIH3JGGTKAkBlDU,6492
897
904
  pulumi_gcp/gkehub/get_scope_iam_policy.py,sha256=nD7W_IKNEEqHVEjvp_hAIfZqm8lp1Uj_JwwQh0C08uc,5241
898
905
  pulumi_gcp/gkehub/membership.py,sha256=a2trjy_7WOMFB17IcxLVm7YCd8NkOK3a4LsMWIev0jQ,37993
899
- pulumi_gcp/gkehub/membership_binding.py,sha256=DYzFMmiOJph23TtgZeQ2z4DkAEvmRrDkaYxRhVeNqSs,34372
906
+ pulumi_gcp/gkehub/membership_binding.py,sha256=BjuWj9GHFJrGl1se0mpj_GQ0XnAXx37LUKXvV_w6MSs,34372
900
907
  pulumi_gcp/gkehub/membership_iam_binding.py,sha256=zAeGFpe4JKQs3uNmme0Nu70z3lfi8e06YWM2_yhl_x8,37117
901
908
  pulumi_gcp/gkehub/membership_iam_member.py,sha256=4C8utTViW0L95cX3llnqmlS2iRZTtY86A2bBBJZqxQY,36821
902
909
  pulumi_gcp/gkehub/membership_iam_policy.py,sha256=6QI7EhchyeuUeKbOnPO4Oyn49cd8J2cBumV4lAzHNgI,33244
903
- pulumi_gcp/gkehub/membership_rbac_role_binding.py,sha256=vWhOEE9e8hVpwUwAJBiBEumr1Gtx2JS6s8oy2A0RLAg,30524
904
- pulumi_gcp/gkehub/namespace.py,sha256=Lgma3lMQjtghwKKGdXf9bygEfMcnaPYDNyIjAN4snLw,34469
910
+ pulumi_gcp/gkehub/membership_rbac_role_binding.py,sha256=p19IJi8Qo_AtsWkbjWHVba4eRs4-x_58Bac5S9uPUq0,30524
911
+ pulumi_gcp/gkehub/namespace.py,sha256=ZY2ebizpMGDbOrqYdZeoqZpWgpd2ut4qQzX6Jt9xzIc,34467
905
912
  pulumi_gcp/gkehub/outputs.py,sha256=LdeKG63TpGQrrF2RLIwG7YoeXbe91KkdTdSdsuZHnT0,149753
906
913
  pulumi_gcp/gkehub/scope.py,sha256=1wJg4NJOuuaNU2fDDaDTG6CxRwLwQrMZmvEOtmNYRxE,29730
907
914
  pulumi_gcp/gkehub/scope_iam_binding.py,sha256=seUhKJFMa8Uu-GPGr2eTo4oK1B0k4zxybB3pPu2WRoo,33365
908
915
  pulumi_gcp/gkehub/scope_iam_member.py,sha256=hvCwZw9B143tOpQAwQ0Ab0s-63W3hjvblns6iCTtsaY,33069
909
916
  pulumi_gcp/gkehub/scope_iam_policy.py,sha256=oSHLQly4bWcN1xZowAnFYj2dnRVyhqHoHhMxQRVWXZc,29577
910
- pulumi_gcp/gkehub/scope_rbac_role_binding.py,sha256=NEVdjZUV_pU2RKzLhLdufzSs9hubu9DIkDMcO_GhJN8,37567
917
+ pulumi_gcp/gkehub/scope_rbac_role_binding.py,sha256=52ahNdA34U1sEWgXeU95dSzDdRO4p5NZ9ujeifopjMM,37569
911
918
  pulumi_gcp/gkeonprem/__init__.py,sha256=Mvd41ZaItFnzM4iQtQTqhAwcPeZ-cpWq1hjgdvBi_e8,488
912
919
  pulumi_gcp/gkeonprem/_inputs.py,sha256=sm51hTeb7yn51JTz_RJPfjymd0iA6J0UhbRBEjKjLdI,270640
913
920
  pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py,sha256=iqvG4elXn47TVlVgOuhIKGx8oQJ51HvxDlbN-Ipvozs,92780
@@ -979,7 +986,7 @@ pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py,sha256=ozN5xSUg6EaSj
979
986
  pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py,sha256=LETU1zOHDsXY0pOnBVn9lKJDDno34o0OS4l8B1hFyqk,5741
980
987
  pulumi_gcp/iap/get_web_type_compute_iam_policy.py,sha256=kW6P9yK9LWNmkdcUXol_4dwj12u4zu_mQAwAHjci2Yk,4848
981
988
  pulumi_gcp/iap/outputs.py,sha256=-WFuCAlF6s38Xa9fHO1czU_7af6GN1KHOvGjKwg2xB8,40188
982
- pulumi_gcp/iap/tunnel_dest_group.py,sha256=lpPsox4M55y4aGepE1HRci04M7sKfvnadURUFP48Sls,19852
989
+ pulumi_gcp/iap/tunnel_dest_group.py,sha256=VFhs26QnHZoY56EdHhAASG6WVHV_DGb-Qwx7lKme62Y,19852
983
990
  pulumi_gcp/iap/tunnel_dest_group_iam_binding.py,sha256=o19V_j95We7ZY-uHSUS5cRWfcDA7mLtrsPq6X_IKLxg,46331
984
991
  pulumi_gcp/iap/tunnel_dest_group_iam_member.py,sha256=k3gqEVNyDL5YRdlW3_C8JEQqK4BiEX6VisyzyLDjBJQ,46031
985
992
  pulumi_gcp/iap/tunnel_dest_group_iam_policy.py,sha256=0XUrVg6zXIHjNfEfDS9C9oLbmFtJLwxsGCLMg2qr8pM,40972
@@ -1022,16 +1029,16 @@ pulumi_gcp/integrationconnectors/connection.py,sha256=mnPVPdJO5id2B-mqN9QrTZBQoS
1022
1029
  pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=BS0iqmdn_Q8lM6lePgwgSJ-Nq5Xclbj8EkrPH94LFzI,28607
1023
1030
  pulumi_gcp/integrationconnectors/outputs.py,sha256=MIddrgLnnsZEEcndtHanUCmjEK8z27ThjjWItzFow2I,104747
1024
1031
  pulumi_gcp/kms/__init__.py,sha256=kW1sTv51kdDy5g3riS5K_jOEh0YzEl4ePE2elGuWjjM,1014
1025
- pulumi_gcp/kms/_inputs.py,sha256=tU3cueGaTH_suyZP4XkwIXFKwLPeLvspP5xxRs_28uM,37300
1026
- pulumi_gcp/kms/crypto_key.py,sha256=zAuAgUidKncI5H31MEVZaSjlVJGReGD7swAuEswMosw,42737
1032
+ pulumi_gcp/kms/_inputs.py,sha256=dGRHob4muqvxJiKBrVnsHsi0vJhylKqBUxc8k8-aZak,40159
1033
+ pulumi_gcp/kms/crypto_key.py,sha256=uxrqKcGGTtY0KuGtaCR3fKqb_67lwjk1n8sgn8j3Ff4,46274
1027
1034
  pulumi_gcp/kms/crypto_key_iam_binding.py,sha256=hEEnCKO_zNaADcfe63vLyIEDMJ9vMGRQ5Zrx5xM3SG0,33236
1028
1035
  pulumi_gcp/kms/crypto_key_iam_member.py,sha256=zLWuee0PRF4fQmG0S2vcUWwWvK3AaLwZ7WW_-drnS-U,32944
1029
1036
  pulumi_gcp/kms/crypto_key_iam_policy.py,sha256=i0G4qgO0M1zJEeLnoFNUJJF_-8vRQeuAgrnxnUZplYk,28494
1030
- pulumi_gcp/kms/crypto_key_version.py,sha256=_kpAn1w5WU1E7V9uDvJ9qtSbwqFU4Rk9xeD8U3ncWOQ,19836
1037
+ pulumi_gcp/kms/crypto_key_version.py,sha256=wT8nUJgRh-g1P2C7Y8u6jrzLy_TqWLK_EWVg3uG3sRM,24642
1031
1038
  pulumi_gcp/kms/ekm_connection.py,sha256=-zDuRup-Hxqoa4XmIrfnwozPG0Wj0wZE7xfcJFBdE4Q,28648
1032
1039
  pulumi_gcp/kms/get_crypto_key_iam_policy.py,sha256=lywh5gT-jBhxd33LFitIBmlwyYiAa-mHLdZv5QvPYxA,4284
1033
1040
  pulumi_gcp/kms/get_key_ring_iam_policy.py,sha256=PfhVYNwzCZZ41bvvaxRZSz1-wymXlvbFstBDgKsjTPE,4686
1034
- pulumi_gcp/kms/get_kms_crypto_key.py,sha256=UMXTwqxUDxi9WTjHmhC3e7dBxmQ2nNwPA_uxLwRV-js,10547
1041
+ pulumi_gcp/kms/get_kms_crypto_key.py,sha256=TvGVlnWx69aUvC-w_OWwcc2u-XhfqGhYV6pa8ArWTlE,11080
1035
1042
  pulumi_gcp/kms/get_kms_crypto_key_version.py,sha256=8x6zvZVGqn8OfVAuICIbINhxOFPROD13fze-wDSFZ1A,8610
1036
1043
  pulumi_gcp/kms/get_kms_key_ring.py,sha256=QcS93totc6WBd8N0w9ue7J9UHwqLEKScueqwAQ5Ap7g,5794
1037
1044
  pulumi_gcp/kms/get_kms_secret.py,sha256=v52wX39qQxM7TQj2NeYQgemFv1pEX7M9Rawh0CyL_AY,9843
@@ -1042,7 +1049,7 @@ pulumi_gcp/kms/key_ring_iam_binding.py,sha256=3zfn2kZFuHqbvQmIeqxfsjS2Tw1cewEj2Z
1042
1049
  pulumi_gcp/kms/key_ring_iam_member.py,sha256=yrSFVL4neUmPA3Eq3w3sk9TT-PPCB1FduYUJEhS8Rdo,33150
1043
1050
  pulumi_gcp/kms/key_ring_iam_policy.py,sha256=i06bcynMmglW9GH8polzadAqa9UNNnDAHOM0EK4ogvk,28259
1044
1051
  pulumi_gcp/kms/key_ring_import_job.py,sha256=ziEIleZbg1AJJi4_kmT6h6VaHLqt1MPfA6Xhp7tvLqg,25981
1045
- pulumi_gcp/kms/outputs.py,sha256=WiRdV6N3zGs3LaC4jwo2-URhwQ8Ihk0RUpt66KZmr08,38070
1052
+ pulumi_gcp/kms/outputs.py,sha256=3RPDyqb5yKjk2GX_pYkuvDL6xYwHmD_lPM8FRH6sjgA,40777
1046
1053
  pulumi_gcp/kms/secret_ciphertext.py,sha256=7gXE9QUS0qHV7A4IOY3pa0lc53DpIucq_03JpRaPAhs,18743
1047
1054
  pulumi_gcp/logging/__init__.py,sha256=PHX-RqZFu4YOg6m6uTxWPrM7fQ09NEcZFl5VGptSNyc,1063
1048
1055
  pulumi_gcp/logging/_inputs.py,sha256=M-UkCHpDHzz36fZMnZT_y7f-gwxKq81p1BswKbmhIak,69922
@@ -1201,7 +1208,7 @@ pulumi_gcp/orgpolicy/__init__.py,sha256=bdd_oQduV_xUj2RtYRYe5h9NzODH1KbvCbkkZLJp
1201
1208
  pulumi_gcp/orgpolicy/_inputs.py,sha256=Q9nLVXMAjQODetqcoXCQ_RmZDRouqelJqF3RB7YkdZc,32256
1202
1209
  pulumi_gcp/orgpolicy/custom_constraint.py,sha256=viPIRJ2yrh70NvJiTlYTBptljpF9JQb4iMaphtj0pUE,33533
1203
1210
  pulumi_gcp/orgpolicy/outputs.py,sha256=lWC69234Vv4r2aFVHKj8jz6_XxBCvOhWG-LFBM7WK3Y,30184
1204
- pulumi_gcp/orgpolicy/policy.py,sha256=AMS2qq8Rej0JyZr8g0Ew4DZRb-r6J6x2sMxc49KZO3w,30561
1211
+ pulumi_gcp/orgpolicy/policy.py,sha256=v68ms8soZXuA8sdm6HzsLovG_M6nEREPFvYrUogp4o8,30561
1205
1212
  pulumi_gcp/osconfig/__init__.py,sha256=yDD2y1RayZ6ZJsosFD0HA15H2OCYk_GwALeFoLuEusk,412
1206
1213
  pulumi_gcp/osconfig/_inputs.py,sha256=mFZ0_vJRhp0Am7JCUMYEnHdZmHHE7GcJwKVh3qfo5IY,276549
1207
1214
  pulumi_gcp/osconfig/guest_policies.py,sha256=YGZhjyENygyAR7nxAkwIKYuWwPB9JgW0QdzmOSd31cE,49455
@@ -1244,7 +1251,7 @@ pulumi_gcp/pubsub/schema.py,sha256=Ex0cYp4HtS79I32IYQKlnmpy9p1nslW_TIZdcPOpOvk,2
1244
1251
  pulumi_gcp/pubsub/schema_iam_binding.py,sha256=i7T3O_r9qps4IBmy4Tzx3y9POexBaRFmZfluNOlS8c8,33865
1245
1252
  pulumi_gcp/pubsub/schema_iam_member.py,sha256=24vaP-gU8UOtUtgeOGNCl5P62bLV3x9uxP1xtpn8kDo,33569
1246
1253
  pulumi_gcp/pubsub/schema_iam_policy.py,sha256=v8Qz_1-fJfwVnkEmLk4xnht8CL-g_tv1hjNF037Pgvc,30060
1247
- pulumi_gcp/pubsub/subscription.py,sha256=32YdO9QDGIBWL4RpOPdSfu-6do8iaWgO2-Tii2XZA58,101792
1254
+ pulumi_gcp/pubsub/subscription.py,sha256=JXAwUn0aiekonelAnlFINpri87LS-YTjBHws8IzSQZw,101792
1248
1255
  pulumi_gcp/pubsub/subscription_iam_binding.py,sha256=GMKTAf_2NvKjO5HlbixZ3n93ILmyYtEhLm-exADcdVc,28956
1249
1256
  pulumi_gcp/pubsub/subscription_iam_member.py,sha256=no_pqxxoR8tWvyunhWqyL2jWb_b6pzY42swTalzC2F4,28668
1250
1257
  pulumi_gcp/pubsub/subscription_iam_policy.py,sha256=TRVsaIL2-g6r392KWf45u_eAiNk-Vj9cihyVcOtt4K0,25250
@@ -1443,9 +1450,10 @@ pulumi_gcp/tpu/get_v2_runtime_versions.py,sha256=WIlvXOLsuXLOyBNKMkCJnPh7K-2wK6v
1443
1450
  pulumi_gcp/tpu/node.py,sha256=aiXsJdGuSkR91a378xeCaCBorgR2SJwKpXVcAjOqSi8,50224
1444
1451
  pulumi_gcp/tpu/outputs.py,sha256=ljZWgasz3UzZjErw4DsWX6PDhwpVgex5JGISeVIhid0,19368
1445
1452
  pulumi_gcp/tpu/v2_vm.py,sha256=gLW1Z3uJpYzyfdIAZXvWfJey8Oy9cUf4Jxf0F6QSoAw,71428
1446
- pulumi_gcp/vertex/__init__.py,sha256=_T81Haq-KUSfRY5RixqEB75yVwH7aXeIDKdB3JXlQT0,1361
1447
- pulumi_gcp/vertex/_inputs.py,sha256=H5cq-UucZtZ0xbS6V1ObyWtg5Js-C-DjG1diFdJ8MhY,114385
1453
+ pulumi_gcp/vertex/__init__.py,sha256=Jd1TvW8y8vguTNphnbv4pWVVZNFrlP5WL_3aRgP7Tmc,1404
1454
+ pulumi_gcp/vertex/_inputs.py,sha256=uXZxH400S8owjexkRg8sVY4Ngzy7JOMPdUDUru-s9QU,124851
1448
1455
  pulumi_gcp/vertex/ai_dataset.py,sha256=qfnTQ9mMfuAJ1EgEHC-uceXUrcLpNxR-7NPtIGwogCc,31163
1456
+ pulumi_gcp/vertex/ai_deployment_resource_pool.py,sha256=xfsHVcxCqqS64nrLBbtXS8qthklCnUHrbYB5rYsrD1w,20424
1449
1457
  pulumi_gcp/vertex/ai_endpoint.py,sha256=ZWRdIjYhlufODwEc7M4KMC734b2s-Z2ipaQW8xIUpnc,49022
1450
1458
  pulumi_gcp/vertex/ai_endpoint_iam_binding.py,sha256=6WE5W1z2dKhY8awJ0MeZU5hQJP_0Rl9yEYNOh6_7xB0,12649
1451
1459
  pulumi_gcp/vertex/ai_endpoint_iam_member.py,sha256=HRFaDhejeaIM0TEadgAVj05fVK2x52k0xELf0Ra_YNw,12363
@@ -1471,7 +1479,7 @@ pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py,sha256=HCaJM6x0WYCx2haezTaCkWFdS
1471
1479
  pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py,sha256=Q8iADyN8HOvbptbYoxx4ekbtK0p3nYhB_t9mVqqO-1g,5307
1472
1480
  pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py,sha256=KHFi6S8zmTG59u8fjCMwk251F9GYdxzg8ME7DgTyOsM,6471
1473
1481
  pulumi_gcp/vertex/get_ai_index.py,sha256=9IfQ_Mq15GumzG9nQVwQyaOL7wUriyEMjDPuawDW2rg,10085
1474
- pulumi_gcp/vertex/outputs.py,sha256=CGqoF8YWhsreZoooj-iOL6t4GNKQ1-y6QG9OmkpxDhg,131438
1482
+ pulumi_gcp/vertex/outputs.py,sha256=aBGG2UDHkEqT-lM9CYDGjd0fDsJFwX-yZuBhifkc8ZI,142524
1475
1483
  pulumi_gcp/vmwareengine/__init__.py,sha256=5opTrk1vrtEmzz_tp4Dn8bOdnok6H9_mZwp6BmR1ftU,872
1476
1484
  pulumi_gcp/vmwareengine/_inputs.py,sha256=71Gvo7nHDAfCdxzFlPiE3Cv7QeAN-YYdDnXXPSDBF-c,29805
1477
1485
  pulumi_gcp/vmwareengine/cluster.py,sha256=dy_IKpeej7CvmHka6r8123RwWJ8WssVlv0AJuwPEAiA,23295
@@ -1495,7 +1503,7 @@ pulumi_gcp/vmwareengine/private_cloud.py,sha256=syJE7YxeHs69P-vn97dK67dQE0N-YlhA
1495
1503
  pulumi_gcp/vmwareengine/subnet.py,sha256=SZvwwQJ8bGfJHl-8peAlF-KKG2SHZbESsHVHnbLGZ3Q,29772
1496
1504
  pulumi_gcp/vpcaccess/__init__.py,sha256=jJr9gxIqUsUWWesAqiYgHCU2aDlXvh7deDVD9kM2Qng,368
1497
1505
  pulumi_gcp/vpcaccess/_inputs.py,sha256=on2mdTWvXTBAQibtU3apCiVfxC_biyAhC0ePLiFQoaI,2243
1498
- pulumi_gcp/vpcaccess/connector.py,sha256=YRwvTrDPRbNYMksvy-WggJVMGGTGnUXoHs038oYCHoY,36326
1506
+ pulumi_gcp/vpcaccess/connector.py,sha256=ZRtRhvI5VtwOw0qL4HoI_ribiS4jSlMhjHvojCDkFJo,43340
1499
1507
  pulumi_gcp/vpcaccess/get_connector.py,sha256=z4rIcIYwcyCokjXsAWQnIaK-C-xGydBYfIgGbWPKA7U,10470
1500
1508
  pulumi_gcp/vpcaccess/outputs.py,sha256=3q4ptgwUB_nILu-kQ2NCHxs6356IFbmPqD22PD8b7uw,3512
1501
1509
  pulumi_gcp/workbench/__init__.py,sha256=gNUlNEXeqvCKDmkugD4D2BJYgjTxkoU883peNvn04G8,483
@@ -1522,7 +1530,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=TyWHa1bvUxE2G6qS
1522
1530
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ThXeqkGmcUcMVuZl7dEEtWNN9sJJoQqwupeiHK4ztTY,35859
1523
1531
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=LOBURSVWn3zQetagM4edFqG0EWE8D1XTHjHFcw7-Hhw,35563
1524
1532
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=hzOeqd9JE1VzAA70Pj2bJH7hsCZWCpdEoJ8RY8Sj1xU,31927
1525
- pulumi_gcp-7.17.0a1712402830.dist-info/METADATA,sha256=tXrGL32khWtKRzn8S5U3CcV5dUM0eAolTHkkF9-is-o,2662
1526
- pulumi_gcp-7.17.0a1712402830.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1527
- pulumi_gcp-7.17.0a1712402830.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1528
- pulumi_gcp-7.17.0a1712402830.dist-info/RECORD,,
1533
+ pulumi_gcp-7.17.0a1712602552.dist-info/METADATA,sha256=SgFxcOR0l6fJ3lVoy3roghV1AdIqlhgBDxuTxzc3U-s,2662
1534
+ pulumi_gcp-7.17.0a1712602552.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1535
+ pulumi_gcp-7.17.0a1712602552.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1536
+ pulumi_gcp-7.17.0a1712602552.dist-info/RECORD,,