pulumi-gcp 7.8.0a1706829616__py3-none-any.whl → 7.8.0a1706905467__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. pulumi_gcp/__init__.py +30 -0
  2. pulumi_gcp/artifactregistry/repository.py +26 -28
  3. pulumi_gcp/cloudrun/_inputs.py +87 -4
  4. pulumi_gcp/cloudrun/outputs.py +152 -4
  5. pulumi_gcp/composer/_inputs.py +63 -0
  6. pulumi_gcp/composer/outputs.py +136 -0
  7. pulumi_gcp/compute/_inputs.py +8 -18
  8. pulumi_gcp/compute/backend_service.py +28 -0
  9. pulumi_gcp/compute/outputs.py +10 -20
  10. pulumi_gcp/compute/region_backend_service.py +30 -0
  11. pulumi_gcp/config/__init__.pyi +4 -0
  12. pulumi_gcp/config/vars.py +8 -0
  13. pulumi_gcp/discoveryengine/__init__.py +8 -0
  14. pulumi_gcp/discoveryengine/data_store.py +734 -0
  15. pulumi_gcp/eventarc/_inputs.py +2 -2
  16. pulumi_gcp/eventarc/outputs.py +2 -2
  17. pulumi_gcp/firebase/_inputs.py +4 -2
  18. pulumi_gcp/firebase/extensions_instance.py +6 -8
  19. pulumi_gcp/firebase/outputs.py +4 -2
  20. pulumi_gcp/firestore/backup_schedule.py +36 -12
  21. pulumi_gcp/firestore/database.py +0 -8
  22. pulumi_gcp/firestore/document.py +0 -68
  23. pulumi_gcp/firestore/field.py +22 -102
  24. pulumi_gcp/firestore/index.py +4 -42
  25. pulumi_gcp/gkehub/feature.py +2 -2
  26. pulumi_gcp/provider.py +40 -0
  27. pulumi_gcp/pubsub/_inputs.py +26 -4
  28. pulumi_gcp/pubsub/outputs.py +45 -8
  29. pulumi_gcp/pubsub/subscription.py +82 -0
  30. pulumi_gcp/securityposture/__init__.py +11 -0
  31. pulumi_gcp/securityposture/_inputs.py +1364 -0
  32. pulumi_gcp/securityposture/outputs.py +1372 -0
  33. pulumi_gcp/securityposture/posture.py +828 -0
  34. pulumi_gcp/securityposture/posture_deployment.py +872 -0
  35. pulumi_gcp/vertex/_inputs.py +156 -0
  36. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +259 -3
  37. pulumi_gcp/vertex/outputs.py +170 -0
  38. pulumi_gcp/workflows/workflow.py +75 -7
  39. pulumi_gcp/workstations/_inputs.py +38 -0
  40. pulumi_gcp/workstations/outputs.py +30 -0
  41. pulumi_gcp/workstations/workstation_config.py +54 -0
  42. {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/METADATA +1 -1
  43. {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/RECORD +45 -38
  44. {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/WHEEL +0 -0
  45. {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,7 @@ class WorkstationConfigArgs:
30
30
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
31
  persistent_directories: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigPersistentDirectoryArgs']]]] = None,
32
32
  project: Optional[pulumi.Input[str]] = None,
33
+ readiness_checks: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]] = None,
33
34
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
34
35
  running_timeout: Optional[pulumi.Input[str]] = None):
35
36
  """
@@ -64,6 +65,8 @@ class WorkstationConfigArgs:
64
65
  Structure is documented below.
65
66
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
66
67
  If it is not provided, the provider project is used.
68
+ :param pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]] readiness_checks: Readiness checks to be performed on a workstation.
69
+ Structure is documented below.
67
70
  :param pulumi.Input[Sequence[pulumi.Input[str]]] replica_zones: Specifies the zones used to replicate the VM and disk resources within the region. If set, exactly two zones within the workstation cluster's region must be specified—for example, `['us-central1-a', 'us-central1-f']`.
68
71
  If this field is empty, two default zones within the region are used. Immutable after the workstation configuration is created.
69
72
  :param pulumi.Input[str] running_timeout: How long to wait before automatically stopping a workstation after it was started. A value of 0 indicates that workstations using this configuration should never time out from running duration. Must be greater than 0 and less than 24 hours if `encryption_key` is set. Defaults to 12 hours.
@@ -94,6 +97,8 @@ class WorkstationConfigArgs:
94
97
  pulumi.set(__self__, "persistent_directories", persistent_directories)
95
98
  if project is not None:
96
99
  pulumi.set(__self__, "project", project)
100
+ if readiness_checks is not None:
101
+ pulumi.set(__self__, "readiness_checks", readiness_checks)
97
102
  if replica_zones is not None:
98
103
  pulumi.set(__self__, "replica_zones", replica_zones)
99
104
  if running_timeout is not None:
@@ -283,6 +288,19 @@ class WorkstationConfigArgs:
283
288
  def project(self, value: Optional[pulumi.Input[str]]):
284
289
  pulumi.set(self, "project", value)
285
290
 
291
+ @property
292
+ @pulumi.getter(name="readinessChecks")
293
+ def readiness_checks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]]:
294
+ """
295
+ Readiness checks to be performed on a workstation.
296
+ Structure is documented below.
297
+ """
298
+ return pulumi.get(self, "readiness_checks")
299
+
300
+ @readiness_checks.setter
301
+ def readiness_checks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]]):
302
+ pulumi.set(self, "readiness_checks", value)
303
+
286
304
  @property
287
305
  @pulumi.getter(name="replicaZones")
288
306
  def replica_zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -333,6 +351,7 @@ class _WorkstationConfigState:
333
351
  persistent_directories: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigPersistentDirectoryArgs']]]] = None,
334
352
  project: Optional[pulumi.Input[str]] = None,
335
353
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
354
+ readiness_checks: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]] = None,
336
355
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
337
356
  running_timeout: Optional[pulumi.Input[str]] = None,
338
357
  uid: Optional[pulumi.Input[str]] = None,
@@ -380,6 +399,8 @@ class _WorkstationConfigState:
380
399
  If it is not provided, the provider project is used.
381
400
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
382
401
  and default labels configured on the provider.
402
+ :param pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]] readiness_checks: Readiness checks to be performed on a workstation.
403
+ Structure is documented below.
383
404
  :param pulumi.Input[Sequence[pulumi.Input[str]]] replica_zones: Specifies the zones used to replicate the VM and disk resources within the region. If set, exactly two zones within the workstation cluster's region must be specified—for example, `['us-central1-a', 'us-central1-f']`.
384
405
  If this field is empty, two default zones within the region are used. Immutable after the workstation configuration is created.
385
406
  :param pulumi.Input[str] running_timeout: How long to wait before automatically stopping a workstation after it was started. A value of 0 indicates that workstations using this configuration should never time out from running duration. Must be greater than 0 and less than 24 hours if `encryption_key` is set. Defaults to 12 hours.
@@ -428,6 +449,8 @@ class _WorkstationConfigState:
428
449
  pulumi.set(__self__, "project", project)
429
450
  if pulumi_labels is not None:
430
451
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
452
+ if readiness_checks is not None:
453
+ pulumi.set(__self__, "readiness_checks", readiness_checks)
431
454
  if replica_zones is not None:
432
455
  pulumi.set(__self__, "replica_zones", replica_zones)
433
456
  if running_timeout is not None:
@@ -699,6 +722,19 @@ class _WorkstationConfigState:
699
722
  def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
700
723
  pulumi.set(self, "pulumi_labels", value)
701
724
 
725
+ @property
726
+ @pulumi.getter(name="readinessChecks")
727
+ def readiness_checks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]]:
728
+ """
729
+ Readiness checks to be performed on a workstation.
730
+ Structure is documented below.
731
+ """
732
+ return pulumi.get(self, "readiness_checks")
733
+
734
+ @readiness_checks.setter
735
+ def readiness_checks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigReadinessCheckArgs']]]]):
736
+ pulumi.set(self, "readiness_checks", value)
737
+
702
738
  @property
703
739
  @pulumi.getter(name="replicaZones")
704
740
  def replica_zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -779,6 +815,7 @@ class WorkstationConfig(pulumi.CustomResource):
779
815
  location: Optional[pulumi.Input[str]] = None,
780
816
  persistent_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigPersistentDirectoryArgs']]]]] = None,
781
817
  project: Optional[pulumi.Input[str]] = None,
818
+ readiness_checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigReadinessCheckArgs']]]]] = None,
782
819
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
783
820
  running_timeout: Optional[pulumi.Input[str]] = None,
784
821
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
@@ -1159,6 +1196,8 @@ class WorkstationConfig(pulumi.CustomResource):
1159
1196
  Structure is documented below.
1160
1197
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
1161
1198
  If it is not provided, the provider project is used.
1199
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigReadinessCheckArgs']]]] readiness_checks: Readiness checks to be performed on a workstation.
1200
+ Structure is documented below.
1162
1201
  :param pulumi.Input[Sequence[pulumi.Input[str]]] replica_zones: Specifies the zones used to replicate the VM and disk resources within the region. If set, exactly two zones within the workstation cluster's region must be specified—for example, `['us-central1-a', 'us-central1-f']`.
1163
1202
  If this field is empty, two default zones within the region are used. Immutable after the workstation configuration is created.
1164
1203
  :param pulumi.Input[str] running_timeout: How long to wait before automatically stopping a workstation after it was started. A value of 0 indicates that workstations using this configuration should never time out from running duration. Must be greater than 0 and less than 24 hours if `encryption_key` is set. Defaults to 12 hours.
@@ -1544,6 +1583,7 @@ class WorkstationConfig(pulumi.CustomResource):
1544
1583
  location: Optional[pulumi.Input[str]] = None,
1545
1584
  persistent_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigPersistentDirectoryArgs']]]]] = None,
1546
1585
  project: Optional[pulumi.Input[str]] = None,
1586
+ readiness_checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigReadinessCheckArgs']]]]] = None,
1547
1587
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1548
1588
  running_timeout: Optional[pulumi.Input[str]] = None,
1549
1589
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
@@ -1571,6 +1611,7 @@ class WorkstationConfig(pulumi.CustomResource):
1571
1611
  __props__.__dict__["location"] = location
1572
1612
  __props__.__dict__["persistent_directories"] = persistent_directories
1573
1613
  __props__.__dict__["project"] = project
1614
+ __props__.__dict__["readiness_checks"] = readiness_checks
1574
1615
  __props__.__dict__["replica_zones"] = replica_zones
1575
1616
  __props__.__dict__["running_timeout"] = running_timeout
1576
1617
  if workstation_cluster_id is None and not opts.urn:
@@ -1620,6 +1661,7 @@ class WorkstationConfig(pulumi.CustomResource):
1620
1661
  persistent_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigPersistentDirectoryArgs']]]]] = None,
1621
1662
  project: Optional[pulumi.Input[str]] = None,
1622
1663
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1664
+ readiness_checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigReadinessCheckArgs']]]]] = None,
1623
1665
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1624
1666
  running_timeout: Optional[pulumi.Input[str]] = None,
1625
1667
  uid: Optional[pulumi.Input[str]] = None,
@@ -1672,6 +1714,8 @@ class WorkstationConfig(pulumi.CustomResource):
1672
1714
  If it is not provided, the provider project is used.
1673
1715
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
1674
1716
  and default labels configured on the provider.
1717
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigReadinessCheckArgs']]]] readiness_checks: Readiness checks to be performed on a workstation.
1718
+ Structure is documented below.
1675
1719
  :param pulumi.Input[Sequence[pulumi.Input[str]]] replica_zones: Specifies the zones used to replicate the VM and disk resources within the region. If set, exactly two zones within the workstation cluster's region must be specified—for example, `['us-central1-a', 'us-central1-f']`.
1676
1720
  If this field is empty, two default zones within the region are used. Immutable after the workstation configuration is created.
1677
1721
  :param pulumi.Input[str] running_timeout: How long to wait before automatically stopping a workstation after it was started. A value of 0 indicates that workstations using this configuration should never time out from running duration. Must be greater than 0 and less than 24 hours if `encryption_key` is set. Defaults to 12 hours.
@@ -1704,6 +1748,7 @@ class WorkstationConfig(pulumi.CustomResource):
1704
1748
  __props__.__dict__["persistent_directories"] = persistent_directories
1705
1749
  __props__.__dict__["project"] = project
1706
1750
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1751
+ __props__.__dict__["readiness_checks"] = readiness_checks
1707
1752
  __props__.__dict__["replica_zones"] = replica_zones
1708
1753
  __props__.__dict__["running_timeout"] = running_timeout
1709
1754
  __props__.__dict__["uid"] = uid
@@ -1891,6 +1936,15 @@ class WorkstationConfig(pulumi.CustomResource):
1891
1936
  """
1892
1937
  return pulumi.get(self, "pulumi_labels")
1893
1938
 
1939
+ @property
1940
+ @pulumi.getter(name="readinessChecks")
1941
+ def readiness_checks(self) -> pulumi.Output[Optional[Sequence['outputs.WorkstationConfigReadinessCheck']]]:
1942
+ """
1943
+ Readiness checks to be performed on a workstation.
1944
+ Structure is documented below.
1945
+ """
1946
+ return pulumi.get(self, "readiness_checks")
1947
+
1894
1948
  @property
1895
1949
  @pulumi.getter(name="replicaZones")
1896
1950
  def replica_zones(self) -> pulumi.Output[Sequence[str]]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.8.0a1706829616
3
+ Version: 7.8.0a1706905467
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=03xiWNfCWzfGaX-1Sp7nzQ1rd7UkajQZA5WbsZMeWAA,175623
1
+ pulumi_gcp/__init__.py,sha256=QCH1Az3S-mdwjI56S_V-yt6h00kP8PcEwtDFr66tb3o,176526
2
2
  pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
3
3
  pulumi_gcp/_utilities.py,sha256=jMbim532bPc1u3rZevJSaM4zw6tbQPf2c85Dkyq_7_g,9327
4
- pulumi_gcp/provider.py,sha256=zDDEFfbvxDBDZ8AT4Lq9cpSB-9EMaFyblmM_tE_ZaIc,173898
4
+ pulumi_gcp/provider.py,sha256=X5evT5h08Us-P60W9k8bHcYgPZqAAm0fkh-QHQmciE8,176203
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
@@ -102,7 +102,7 @@ pulumi_gcp/artifactregistry/_inputs.py,sha256=e9fGGZ91PBe-yd3xlBSRjHg9dXZHkGBkMD
102
102
  pulumi_gcp/artifactregistry/get_repository.py,sha256=rWTB-BaiFeYIEIFOYUg_9vTHAjlg1lDCGaEFXUbYyE8,12891
103
103
  pulumi_gcp/artifactregistry/get_repository_iam_policy.py,sha256=FRKUfdNL17aJtr2yyhZNynkzkr77w5Dfakg4h1kVT5Q,6662
104
104
  pulumi_gcp/artifactregistry/outputs.py,sha256=StgI68slNW28gHvDHK1bl0zTtQpC9DJbKVq_bfm3gDQ,68122
105
- pulumi_gcp/artifactregistry/repository.py,sha256=AtZCz0ZPtijrCuweLJeuigqgokppg62N6YyPSjxs9xk,79925
105
+ pulumi_gcp/artifactregistry/repository.py,sha256=CGD0z3rf6PG2XXnq6jjEvc-KOGMqMIdj5Ym3LGa7_zQ,79799
106
106
  pulumi_gcp/artifactregistry/repository_iam_binding.py,sha256=5D5zXwzvmAXsSJqCUsYdNUF7ZVR6bbRD6HZw8-vkuiI,38156
107
107
  pulumi_gcp/artifactregistry/repository_iam_member.py,sha256=XUU86XECvFECahGK6zd5heVjEi5Hn0TMUYnt_CPSNmI,37860
108
108
  pulumi_gcp/artifactregistry/repository_iam_policy.py,sha256=cWiv7RJY3BJONprkaTKPfnLi5t04SpqHPvPpMS4R9CE,34213
@@ -302,7 +302,7 @@ pulumi_gcp/cloudidentity/outputs.py,sha256=sLx05FtMOsXAqDVGXDkCFC8KXBLSJdQeGde_0
302
302
  pulumi_gcp/cloudids/__init__.py,sha256=W-QWG4l3271x7rK-t56HvDIiXsfaM3724RSwFqvWS1o,293
303
303
  pulumi_gcp/cloudids/endpoint.py,sha256=NeP7HR30LiZmkczpAGCp7Ipn9R2WMC5IcCbmrW4_N-U,29059
304
304
  pulumi_gcp/cloudrun/__init__.py,sha256=k3lyAmFSjg3IgexkAy6gOkyouFN1cOP2_n0iybhb5uI,540
305
- pulumi_gcp/cloudrun/_inputs.py,sha256=i56ldcHTZitgRaNp1RM90br1YUiLsT-v6t1IhMl0kUk,147708
305
+ pulumi_gcp/cloudrun/_inputs.py,sha256=c49dVvJPJjOTyNRTnfe2rnbDC0RI-bnKX30ucEta214,151702
306
306
  pulumi_gcp/cloudrun/domain_mapping.py,sha256=u_9E0OPLamhwWjbun31MmrkZOBq6Snz2qmWPXHTUkks,20674
307
307
  pulumi_gcp/cloudrun/get_locations.py,sha256=uk6llzUTD8d2MwA_5x7S1hQWDDlv6xGZLep6zyaY-sw,3946
308
308
  pulumi_gcp/cloudrun/get_service.py,sha256=njxT2v6gJ1fquz5wjNo9g0NjNX2pwjpYSNixeEJgBR0,7096
@@ -310,7 +310,7 @@ pulumi_gcp/cloudrun/get_service_iam_policy.py,sha256=L1tE-CQ8GpXiMXw6WlicAiWXhE3
310
310
  pulumi_gcp/cloudrun/iam_binding.py,sha256=un4yLv3-1-OK8H14hRiXEh28KkYGzZY0hSo2OxECpS0,36341
311
311
  pulumi_gcp/cloudrun/iam_member.py,sha256=lmR4rcs4zQKZBL_upKjA__8LQ5VBijar5SbOdm0B6vQ,36045
312
312
  pulumi_gcp/cloudrun/iam_policy.py,sha256=DK7KlgsGgTzbcDo5ng3j1ggCLhl1bOfhnBB-8dyWPNM,32624
313
- pulumi_gcp/cloudrun/outputs.py,sha256=sEW5xLFeYkh1cow29iCxOQwHYHvwUi6CuwRJ28Xydec,212035
313
+ pulumi_gcp/cloudrun/outputs.py,sha256=ED_IxUFk9U1UVZvOnMZUFwGrAaKpcAgnA7aFZYVWBEk,218998
314
314
  pulumi_gcp/cloudrun/service.py,sha256=6ewuOvn_YkYp_eVddL5XcFSs0PwFsuG3AWXEjpH5Dd0,51673
315
315
  pulumi_gcp/cloudrunv2/__init__.py,sha256=7dnEvU3VMMpOmrF9q-Efb8BkNNmT3oNa79ZMYxDKb_A,672
316
316
  pulumi_gcp/cloudrunv2/_inputs.py,sha256=mQgxoqWjjTXDfylzsvE26EFE4Q2_HkqPrF3Zqn1eEtM,187467
@@ -340,13 +340,13 @@ pulumi_gcp/cloudtasks/queue_iam_binding.py,sha256=SLSqfPRTDL7WdaqQv9qvyX3UsQBNOS
340
340
  pulumi_gcp/cloudtasks/queue_iam_member.py,sha256=A4L68N_BHtih9nFB5DRhsFlxFNGe5GgXV6Mp5ouz8nY,35685
341
341
  pulumi_gcp/cloudtasks/queue_iam_policy.py,sha256=MwHqgq_8mFBaNMdlkTWxEc53GvV3_74fQdosIIUTWQ4,32165
342
342
  pulumi_gcp/composer/__init__.py,sha256=sT22K33omGyjGceEz-nlpbvZjsOBVzGkSluHLBMDnEY,406
343
- pulumi_gcp/composer/_inputs.py,sha256=_e0PmWzf5klQxhCTit8t3w5aJJsoLMYvQ9K9rP1AQnU,95929
343
+ pulumi_gcp/composer/_inputs.py,sha256=FL1A2dReruWL2SyRGVu6JK41DTnIA4FtMuUgbjzw25g,99394
344
344
  pulumi_gcp/composer/environment.py,sha256=qh6dGqvwBGV5c2dxcj6TICYn4foUy5TE8uUu6Izm6qg,26748
345
345
  pulumi_gcp/composer/get_environment.py,sha256=qId83Ka4ZRP0Mq7eEARBGgEtx5ft0ZZK6RoQWKHG_7Y,6588
346
346
  pulumi_gcp/composer/get_image_versions.py,sha256=KBJWKBoucdXX_1r3uS6lN-zbFPwYNF5ltyRiwUmSqq8,5202
347
- pulumi_gcp/composer/outputs.py,sha256=9Z1zVfrt7WMSbybV9NDKzRHnyW8Qx178FV2CvEb52gA,167327
347
+ pulumi_gcp/composer/outputs.py,sha256=wbVzbnxcULgc51v0fhiX589JhSKXojWGW3qXrWp7lSw,174163
348
348
  pulumi_gcp/compute/__init__.py,sha256=0pjsBZNl1JGuYiB3BAy0Ga5wXXY5BG1YmtUhxNbztL0,7085
349
- pulumi_gcp/compute/_inputs.py,sha256=7S0Eooz7ri_a5Hxm0dYcqmEiDLG6Kn8smzE_pfgGVSc,1782886
349
+ pulumi_gcp/compute/_inputs.py,sha256=DzbGHH81Y9MQBT0sASn2BLULm7OFANTRBSFMQUJQwbs,1782395
350
350
  pulumi_gcp/compute/address.py,sha256=quxly6ubCOAwbiooclmIFUIheeUOxwhkwjC2mb217xY,69005
351
351
  pulumi_gcp/compute/attached_disk.py,sha256=5r5ZALD7BFF0__40XsnvLSeay0z-vaKYdEvIJFzwmr8,28023
352
352
  pulumi_gcp/compute/autoscaler.py,sha256=YqbmWYAXC98e5rolTIBNB1lkmn_FKKYceOttVZP2LYc,34388
@@ -355,7 +355,7 @@ pulumi_gcp/compute/backend_bucket_iam_binding.py,sha256=OsQsmO12KDAvh4yYR0-WA23a
355
355
  pulumi_gcp/compute/backend_bucket_iam_member.py,sha256=j5sMtU7o9997s8PoHyHsZHWOqwfV0qUditLFtdI3CGQ,28612
356
356
  pulumi_gcp/compute/backend_bucket_iam_policy.py,sha256=hxeAKvQ4KQfX0hhDD4ys1q60b5IBYQ0xYTQIQQGUeWk,24977
357
357
  pulumi_gcp/compute/backend_bucket_signed_url_key.py,sha256=aIFEGh3LrAqHBd1y1wMMzfBX6UEkfYbOFwoTmD3AVLY,15701
358
- pulumi_gcp/compute/backend_service.py,sha256=9-8to_rGAVdzznd94iMaY8MrnHnSinrizKEutOi6UTA,114944
358
+ pulumi_gcp/compute/backend_service.py,sha256=AG6zTya7_xfPI1ViofMgMRxsvAc8qiKmu21d2HhwNDs,115762
359
359
  pulumi_gcp/compute/backend_service_iam_binding.py,sha256=UTK_f8nnRGiC9YRju6DorZvN6IbLZjdSRRYMnI2OUoA,30419
360
360
  pulumi_gcp/compute/backend_service_iam_member.py,sha256=xgFQp361eoPG7pJJ9KHCkdlDSFQ69K5WTrnD_20wdFM,30119
361
361
  pulumi_gcp/compute/backend_service_iam_policy.py,sha256=r_Md-wxu7-5MtPhq15EmSf2Y5SstJ-g0ZdTcxhXv4dI,25053
@@ -470,7 +470,7 @@ pulumi_gcp/compute/node_template.py,sha256=NT5lTc4_bks-GgNB7r50pRIQIVXlow6c-3guI
470
470
  pulumi_gcp/compute/organization_security_policy.py,sha256=e8jVFYP6qe36aKV2cCPiyzOJWRzlhgEsdCEt0T_AZWw,19192
471
471
  pulumi_gcp/compute/organization_security_policy_association.py,sha256=7BXqnov-nz40OpUkOGU7sG26TCPANl6Wl97tCLuVOBk,17395
472
472
  pulumi_gcp/compute/organization_security_policy_rule.py,sha256=X4OwyQO5A-3NGX2VpmJWdpddD-QF73El6HE2-1Tvbng,36209
473
- pulumi_gcp/compute/outputs.py,sha256=a6H_6H4zabPgtGS8kbASyO7tsOvtRcxdwVdDsH4x2Ec,2153573
473
+ pulumi_gcp/compute/outputs.py,sha256=RmSnJxt2xze_bXUcpzJKAus-7TGUIewoQj2MfypRJPQ,2152818
474
474
  pulumi_gcp/compute/packet_mirroring.py,sha256=sPpszG4SaxUrGG4WNGh-brqb6i73ru9LC3Xp8-m__DY,31167
475
475
  pulumi_gcp/compute/per_instance_config.py,sha256=4Ndm82xQWH7heK4Cjs2Z0A807JXpDAdVAl5E5FahdfM,38415
476
476
  pulumi_gcp/compute/project_default_network_tier.py,sha256=nPz2i_SQbm3KdLR-C9V7kxfcLUT4YrDF2nSuW-XaDu8,11061
@@ -479,7 +479,7 @@ pulumi_gcp/compute/project_metadata_item.py,sha256=Kmd-vR5RrAp17Cf8Rbcdd7ImDACBA
479
479
  pulumi_gcp/compute/public_advertised_prefix.py,sha256=fjGuuKq1turVvRCGRguMUy_RnjQRRGjM9vzUIPRW_LA,21430
480
480
  pulumi_gcp/compute/public_delegated_prefix.py,sha256=nZH15LPh-KPiJsdagAuJZDgdWEHhS2EcWXpZL9Ka894,26148
481
481
  pulumi_gcp/compute/region_autoscaler.py,sha256=_0hsfDjNfmGw_P79QXb4V97-5UZCBnXPzcmDzp_uenI,30721
482
- pulumi_gcp/compute/region_backend_service.py,sha256=RZpV_qqzKTHYHYHzQ4hxI3Pk9AD7dxWfafLctj37U-Q,102102
482
+ pulumi_gcp/compute/region_backend_service.py,sha256=Drg04ILUnWkqkNHkx6oVRgySmhErSw9LS4IDV66wAco,103026
483
483
  pulumi_gcp/compute/region_backend_service_iam_binding.py,sha256=qWJS1Eg4-660sDpEz29heO8dW8FqXR7rw9Ymq8UyoyM,35422
484
484
  pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=HU-T0Q41OQyb88oT-P27sUxXypq3otjPKe7_4gC_Yr4,35122
485
485
  pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=YdIBfGG-y8kip0CV3qhim3XdXjXsW0bawHIMXqPNFAk,29930
@@ -539,9 +539,9 @@ pulumi_gcp/compute/url_map.py,sha256=wbgWFrv00M905WDzNCTCZSFQFP8ajtXzCH6-qxOs57Y
539
539
  pulumi_gcp/compute/vpn_gateway.py,sha256=vNE7nFR_RH5VbN7s1IGt6HuJL_4g0CyGGmtAYqc94Nk,25476
540
540
  pulumi_gcp/compute/vpn_tunnel.py,sha256=Ku-mp5J1XvTIHSg4CDW4_Ga-2yv7IhhJ212Em04poXs,70296
541
541
  pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
542
- pulumi_gcp/config/__init__.pyi,sha256=D4OOb3vHkBiYFFgPd2SfyvtmM1c5F7BIKuKpjNdKhNw,6935
542
+ pulumi_gcp/config/__init__.pyi,sha256=_9jZslZfu_QZtGiV6EdwaF9CXKa-TFQGq-4twRp2QhU,7027
543
543
  pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
544
- pulumi_gcp/config/vars.py,sha256=BoTPXv2ZPfuRyLSCVUYqfVcUwxnAxP4p1IKq_NX3wek,21994
544
+ pulumi_gcp/config/vars.py,sha256=10zyaWqIPTg04AlRs_2c17C9EECSb014qCL7_1FPKJw,22279
545
545
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
546
546
  pulumi_gcp/container/_inputs.py,sha256=kFx7eFtiMg10lwkUSwIfV_7Aq7OESdTl2CAXQR_-gNc,600135
547
547
  pulumi_gcp/container/attached_cluster.py,sha256=t5AolKe-U1KtitgCcsooZ3VG1a-lLD8mGaPT7enew8g,69294
@@ -718,6 +718,8 @@ pulumi_gcp/diagflow/entity_type.py,sha256=dw8Z1UCYh85n6EFAyi884XiiqN00Kcmm3F2V91
718
718
  pulumi_gcp/diagflow/fulfillment.py,sha256=Di70r4B7PtCTthAGgj3AMl7mvwEv_yJaSEtU3F9rKUA,22810
719
719
  pulumi_gcp/diagflow/intent.py,sha256=C38DHubQbkW4D-G8jPiUMJAoJwHdr102bBR79THpwr4,53619
720
720
  pulumi_gcp/diagflow/outputs.py,sha256=j8nQ7OQ1Z6cAtcnnK3BG0_rpvNNkotSDcjcsc0kdL_w,354624
721
+ pulumi_gcp/discoveryengine/__init__.py,sha256=-CCO7jZ3O-5jV4MI4ha1gFlUSGsV8LT9dsK2jLLIHeg,295
722
+ pulumi_gcp/discoveryengine/data_store.py,sha256=NwjlT6dB-sHMZcCxAQjgAtmnBEN0g4jRcTj4NJkbRas,33627
721
723
  pulumi_gcp/dns/__init__.py,sha256=ab8wmKnXkDvmMb7X3WwoVTvxilHhbzmO8IbqcXVdsjU,749
722
724
  pulumi_gcp/dns/_inputs.py,sha256=uOPh5yDmniNfft7ALIGpePwfdHbOd4CSRQs7MHZiVAw,77085
723
725
  pulumi_gcp/dns/dns_managed_zone_iam_binding.py,sha256=NJgHSgpBEucZiXBsdfiNkDqY1dWRSwMl2FfVFcoFCmg,34563
@@ -764,10 +766,10 @@ pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py,sha256=37Z
764
766
  pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py,sha256=6BuQiGSEEdF8Q9oT-6TTOP6fAYLMs7zLGjR18OEvczo,23684
765
767
  pulumi_gcp/essentialcontacts/outputs.py,sha256=s8qAkBJztcLlBNbokDY_MolEnAyrD2HgCeL6Ycc1ahk,39048
766
768
  pulumi_gcp/eventarc/__init__.py,sha256=RvqhNf1i9c9eRJpcF6S1JUehv5uPrkFHKTQSqCdVGCk,397
767
- pulumi_gcp/eventarc/_inputs.py,sha256=g4PXkgIQjU9aWxmW7JYX_Pg13wRaYlzoMWBIIwbbT9g,15798
769
+ pulumi_gcp/eventarc/_inputs.py,sha256=NCfMrAvzKFN42BZAOebvBLmQN1FUwoVK8aWIOqRdhqY,16072
768
770
  pulumi_gcp/eventarc/channel.py,sha256=H51BV4WITA6_NkfWDLV5BIh3uIgUE-guhjjbCZK5vz8,27590
769
771
  pulumi_gcp/eventarc/google_channel_config.py,sha256=NMBBhNlAJu-kw3HZ-lWn4aZ_gvYD-pD_rbmyjx6WmZU,17597
770
- pulumi_gcp/eventarc/outputs.py,sha256=JztYPLCj6SB2BlYYXUy1x2ivFOyPuYQ72t3XaMe2o3M,13475
772
+ pulumi_gcp/eventarc/outputs.py,sha256=I9woXTDF9hr3R7Z4isG29AXvtmVOStKWuT3MRMTyOTk,13749
771
773
  pulumi_gcp/eventarc/trigger.py,sha256=mUBPQ0G-WKsfPNdbyjzQBQdjilMSyPhpdSSQoqvTCU0,50470
772
774
  pulumi_gcp/filestore/__init__.py,sha256=XGJIEHPl8E3GlnPYyB9uE9viG5049boXz74d-3eA6sw,412
773
775
  pulumi_gcp/filestore/_inputs.py,sha256=v7X9WXj1UX_VfAaZ6zvz63gFWJVZn06fDFslJWS5Irw,13415
@@ -777,11 +779,11 @@ pulumi_gcp/filestore/instance.py,sha256=bpdp-NtkN33lW_Lh7qPqb2bb_sXdG7rokPRWexuJ
777
779
  pulumi_gcp/filestore/outputs.py,sha256=FcCqmAZy8pU8T4CdWOhbQqo3Qy6RF4DWmGrIgfgfWiY,22385
778
780
  pulumi_gcp/filestore/snapshot.py,sha256=_E7teKyd1PXVIzGTqnJBoXKYqCB4DDap1x4ESWHKHZs,33749
779
781
  pulumi_gcp/firebase/__init__.py,sha256=IZUMfEfp0grMYPP1XlwrNuIOT7c8PcXOpOU778SJ-TE,898
780
- pulumi_gcp/firebase/_inputs.py,sha256=Z61p75DwqhBWR_UFGc-iuVc0pzdZxNGhifNGAdaNako,62239
782
+ pulumi_gcp/firebase/_inputs.py,sha256=CN1Ucr4z-7FahgzMHLuZxAbFXq8Rz1z0GW5YKmPtnAM,62510
781
783
  pulumi_gcp/firebase/android_app.py,sha256=dEDokonE9Q9ssLZdlb41rQKBM2UF4pdig9Z5cAb0kQo,33416
782
784
  pulumi_gcp/firebase/apple_app.py,sha256=liKIZGw9Xhe5jk-1S1YMN5y323M7Ff2yMteMBkDqtwg,29742
783
785
  pulumi_gcp/firebase/database_instance.py,sha256=DM6YOFQCp9z5nHhefcfrjStPEfXWY82HiF_295HiXsA,29928
784
- pulumi_gcp/firebase/extensions_instance.py,sha256=a0NtOljK7gw0NBK7-4Z5TrhpKH1sylIg7SOVgr4w_Lg,30511
786
+ pulumi_gcp/firebase/extensions_instance.py,sha256=ONsPhdSBdMsTexekdKNUpYcMkEfuCEs2OKb1jYnPQBY,30443
785
787
  pulumi_gcp/firebase/get_android_app.py,sha256=pi2U1FGl1bpytOHIWweXs3lemMq03AfRc7hihecGaBE,7950
786
788
  pulumi_gcp/firebase/get_android_app_config.py,sha256=v1_HuVSptf_-6MWin3sCQHfs1CF9k7kaWBeIMUNdxNs,4146
787
789
  pulumi_gcp/firebase/get_apple_app.py,sha256=vRGu_TSikUZFF8g6-kd4D61jdLvPcLxKLvDuMoxq2bA,7235
@@ -794,7 +796,7 @@ pulumi_gcp/firebase/hosting_custom_domain.py,sha256=s4QKXxEHBglXdkwkPny0Nw9yv--k
794
796
  pulumi_gcp/firebase/hosting_release.py,sha256=bG7x4uNgYogGGQTqTV72Id4z2RFbFrxqOln923DH0tQ,31011
795
797
  pulumi_gcp/firebase/hosting_site.py,sha256=1Uy45dtpCHew2TfQdaLfR5zNBOMfJzc0ftmdr23ubUQ,19819
796
798
  pulumi_gcp/firebase/hosting_version.py,sha256=e2l19hE6HIwMLkQWh-CLUtHe3dIEesPqLDznuu5PV5g,22230
797
- pulumi_gcp/firebase/outputs.py,sha256=N4Xd5S-IfRtTCcQe5QXMox9fYPCAvmvk6dggd6_nDEg,60250
799
+ pulumi_gcp/firebase/outputs.py,sha256=nnIVtHUrBov_aI8NXMznYaq7DoyZ8cfD2mN2cvrLJak,60521
798
800
  pulumi_gcp/firebase/project.py,sha256=MtqmvbnLHTGmIUA_h__Kx4VqUbCXcEICZl3nHkjhZ4Y,11470
799
801
  pulumi_gcp/firebase/storage_bucket.py,sha256=x8LaiU3h_a4RTCSmNggEHcx3uQt0s6fDmWVFgVsEc7A,11686
800
802
  pulumi_gcp/firebase/web_app.py,sha256=YptZL5Vcw76RMqlNia8ekl59np--U3w_NLiF3QCxDxA,27126
@@ -805,11 +807,11 @@ pulumi_gcp/firebaserules/release.py,sha256=wsxBdKaiOMc8uXNEegTUF6Lq6Xcvpmy6uAs2u
805
807
  pulumi_gcp/firebaserules/ruleset.py,sha256=OkWJKaqXlH5YPeLBq4RxKLRg2pMunQAMLb2bIN_ASRc,14750
806
808
  pulumi_gcp/firestore/__init__.py,sha256=Wchkbc9GSPt9us5HelFU99PgiE-yVU5bzw3DQKtttgg,435
807
809
  pulumi_gcp/firestore/_inputs.py,sha256=ti-isFku5gF1aFvlIsTciSka2LFd4R97iPr8m9hQWIk,8943
808
- pulumi_gcp/firestore/backup_schedule.py,sha256=RX1UlCHebd5SUQ0ufcbx7qUWxt90gOMG-4FJca_FeYU,24717
809
- pulumi_gcp/firestore/database.py,sha256=welYzRyn74SrIrUqF-m5CXkpGkH-d3rYrKMPzX0IBfk,60596
810
- pulumi_gcp/firestore/document.py,sha256=wV8Mvz3K6xKQCi-meS_N171xPG2aggGbN1TWF2IApQY,25611
811
- pulumi_gcp/firestore/field.py,sha256=9bdnm3Td863X52TBydcbf1MsKf3cJLm5-qZxrO34UAg,27450
812
- pulumi_gcp/firestore/index.py,sha256=RQzDrdfPfhjCXLkxP3ATDehyypubXJa_Ah8Z6mrbe5E,27247
810
+ pulumi_gcp/firestore/backup_schedule.py,sha256=16mX8XKviQoQQAwuNt9Im0LiR-bzosQVHPyZ3To7L-0,25737
811
+ pulumi_gcp/firestore/database.py,sha256=5HJSnsbYdx6Momhxvw5aYZpxt5sCCWgdeOqPfWx8Ns4,60184
812
+ pulumi_gcp/firestore/document.py,sha256=v0qMw6-RfrqiL7ii90BE7ItAy7ccPzm5Ti2Wgu11BqA,22607
813
+ pulumi_gcp/firestore/field.py,sha256=emx6lzpUUsWYE8YAiK-RCLVKO_OFp8CTnKzKZcCqAEQ,24794
814
+ pulumi_gcp/firestore/index.py,sha256=ex8RLc614_EMprYP-rCkoN3sEOuRs-zvC2pZjFwgFbE,26101
813
815
  pulumi_gcp/firestore/outputs.py,sha256=UjiWBJ2jJOdwLiCptvLdaHFZfyxMlAMc_VYYwjMOkfQ,8646
814
816
  pulumi_gcp/folder/__init__.py,sha256=wLVz30d4tKDtVPp4BsH10obSXoVPu1gK7SMra3jJf88,569
815
817
  pulumi_gcp/folder/_inputs.py,sha256=B6VFPMW7b7INnDQKjCx5dchEe_1sSokrW2iYGzFSLV0,16936
@@ -837,7 +839,7 @@ pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=sVl2eONgsJI76fo86HJtJbpn1
837
839
  pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=UB75kyRxDG41XRS-FeQmJnEqPiOeo83NMeUyvyeGAJg,42969
838
840
  pulumi_gcp/gkehub/__init__.py,sha256=iLb4Z8dfMN3lOqheVhtE2RRRRbx_I32y5BCU_AqNwyI,1008
839
841
  pulumi_gcp/gkehub/_inputs.py,sha256=XF8NtYfC7rvZ2qD3nFO6gEppBIFLpWv8piomrpSm2Es,143274
840
- pulumi_gcp/gkehub/feature.py,sha256=7aBnuGQht0-SOoBySR53KFjJkpWX4QDS3xrpHxWVkEk,50113
842
+ pulumi_gcp/gkehub/feature.py,sha256=Nnbr7PuGsAgEhLBAtRCBrmKoR-tFzqErITCk_VjHe0g,50109
841
843
  pulumi_gcp/gkehub/feature_iam_binding.py,sha256=zNsCbpX8sZfWUHk-7Z2_hD19kWswym4aaZF59OaCMHY,35999
842
844
  pulumi_gcp/gkehub/feature_iam_member.py,sha256=of4eMAaMkKGiv87oOkIcay4JBOymBy02amNktgbRYq4,35703
843
845
  pulumi_gcp/gkehub/feature_iam_policy.py,sha256=VQAH8RVOisGOdi91nWkh9oHuigkQ10bOj__c5km_dWw,32177
@@ -1167,7 +1169,7 @@ pulumi_gcp/projects/service.py,sha256=KQPEi_cCl8YMJxdNJ2ay0WPJ5n5NZQFE_VVlXKjGQ4
1167
1169
  pulumi_gcp/projects/service_identity.py,sha256=idwwVXY5pleadnbTiLyKi9lXyaHVDX82pXKL5CY_Vlc,11811
1168
1170
  pulumi_gcp/projects/usage_export_bucket.py,sha256=aBTBWcfA1nzTmMsS0oMCWU7iKICMsWScPFMI1wdngZ4,13696
1169
1171
  pulumi_gcp/pubsub/__init__.py,sha256=_pM7YrPAIm5j-Atas4c6IaxUEBa2mXg8uZNbwVf2L1o,964
1170
- pulumi_gcp/pubsub/_inputs.py,sha256=53Gyr5eKSdXItdBZVB4gut5PY_Es2cQCIbRafa8nWxg,46446
1172
+ pulumi_gcp/pubsub/_inputs.py,sha256=wkkDgdAVHGr1xE8Qv2TiU0P3I1QoOIVUN3YPon0Hkp8,47687
1171
1173
  pulumi_gcp/pubsub/get_schema_iam_policy.py,sha256=n2RfE49wX36NMEFZTNhAAXDQeHcJAJ7c-B_E6xzY7uY,5339
1172
1174
  pulumi_gcp/pubsub/get_subscription.py,sha256=djJVJlgM84TiRDcHrcW-aeARsQN2UyVsNXmqO4htmsw,12745
1173
1175
  pulumi_gcp/pubsub/get_subscription_iam_policy.py,sha256=BzHEpzmOoVQi_FQvKBL4INiFWY0x4NiJwyer0TrcAjI,5115
@@ -1176,12 +1178,12 @@ pulumi_gcp/pubsub/get_topic_iam_policy.py,sha256=Peb6U13k9T8rNDIlLiQHBYSZv-8AGDl
1176
1178
  pulumi_gcp/pubsub/lite_reservation.py,sha256=4sgBKpJsHlCxtIbgDhhoGInnCTQXSYqWc5RJ-z5zQL4,15894
1177
1179
  pulumi_gcp/pubsub/lite_subscription.py,sha256=vNtCEDStK_7RHR1_behp7QZwmx1aL6zPIZm-zpTxzZU,20635
1178
1180
  pulumi_gcp/pubsub/lite_topic.py,sha256=FzOHkRAYrf4U5nuAYJPeI03MJFu95MlCj7oz3pEY6kg,24272
1179
- pulumi_gcp/pubsub/outputs.py,sha256=3OQQhcvwZMMUpcyIkaQd3TC5fqdMSnMu8VHUeBMEVjY,71351
1181
+ pulumi_gcp/pubsub/outputs.py,sha256=5surQswlU6db-Ys2L6yf6l2i6kWUMh_JgzhXEpU3P8Y,73454
1180
1182
  pulumi_gcp/pubsub/schema.py,sha256=iA-XbawC7yxv5EvDezIWg4TPSXlj0OQ2d7xVAg4LvGA,20948
1181
1183
  pulumi_gcp/pubsub/schema_iam_binding.py,sha256=ovyOxBRURJ6pUwG1nzhg_mkhRRmD7bYGegSEsG40cc0,33571
1182
1184
  pulumi_gcp/pubsub/schema_iam_member.py,sha256=AZh4VgcKGgkN_iUc__WFJSzf1lttV-k7YelKOk-F5CU,33275
1183
1185
  pulumi_gcp/pubsub/schema_iam_policy.py,sha256=SnFvq158trV3rETuVn6zuiFoydQeKQejjGDo58emopA,29766
1184
- pulumi_gcp/pubsub/subscription.py,sha256=Vb8cKAoCdbirceWITAPWlRm3wlqhYOBes5m_4oDDl-w,92756
1186
+ pulumi_gcp/pubsub/subscription.py,sha256=xwlvQURoRPdDoNJ2w1hkN71TEBUOJA6ZooRMteb3UEo,96260
1185
1187
  pulumi_gcp/pubsub/subscription_iam_binding.py,sha256=GGWCnOD_k__GTQvTHX-C-Dd781qki_WuA9rWUF4eMmg,28350
1186
1188
  pulumi_gcp/pubsub/subscription_iam_member.py,sha256=cT6cSsCQTnCL9pE1LM0Dg5IWJXDZQIuhdaWbgeDbMCw,28062
1187
1189
  pulumi_gcp/pubsub/subscription_iam_policy.py,sha256=3bOI-riBmAW52AAg8vdyCFBJdUueGvuAuC5zz-pwakw,24644
@@ -1250,6 +1252,11 @@ pulumi_gcp/securitycenter/source.py,sha256=FR0iWmBLuaeozRB0YzNh0tH1aawVN3QqcUF8M
1250
1252
  pulumi_gcp/securitycenter/source_iam_binding.py,sha256=gm61dnlm4BveYzzAZqlwziHbVVcvXYoudukVIBi_OYw,15394
1251
1253
  pulumi_gcp/securitycenter/source_iam_member.py,sha256=ZyQ_YiEZpg167wnDDgCHFzfXuR1JmtLZAm7DCcx12KY,15102
1252
1254
  pulumi_gcp/securitycenter/source_iam_policy.py,sha256=Tna3wgzAHPRYyhXBrNjJ5mcFiTUz_avxpyrjMfasIBU,12489
1255
+ pulumi_gcp/securityposture/__init__.py,sha256=mXkpJfV_Dx5wXVxmTviMibDkwEnBzQKLcAb8ySL4yow,371
1256
+ pulumi_gcp/securityposture/_inputs.py,sha256=Owo4JBT4S7KCftEL0ezCr4b3D8b1dwY_26tkWqvx0UY,62934
1257
+ pulumi_gcp/securityposture/outputs.py,sha256=dOtX39kkdBuNTmmdc2Vxbb4wlEuXcNL9j6QFgQ1JG-U,60544
1258
+ pulumi_gcp/securityposture/posture.py,sha256=o8o_WJqYrU0ogKfJkYZZVQ_g4blHRyQd_skkikHFpmY,38839
1259
+ pulumi_gcp/securityposture/posture_deployment.py,sha256=yfldj63MOlmRH2qQ194w_4RLCxvipCwx9tndBnnspRo,39108
1253
1260
  pulumi_gcp/serviceaccount/__init__.py,sha256=47f9JEfUT9MItWVBuxkmo2TVfW5Z2mRi67zG_DB_hs8,630
1254
1261
  pulumi_gcp/serviceaccount/_inputs.py,sha256=CMU7Ai_1-5lLfpN6rljjpyMg8H182fd_JEMjSFCWzUU,5822
1255
1262
  pulumi_gcp/serviceaccount/account.py,sha256=KYAYl9Z6WQcRyWVKw_FzataKzArRsTJvmUvEgx2xT_w,28136
@@ -1376,7 +1383,7 @@ pulumi_gcp/tpu/node.py,sha256=KNr9ARXDXBZlQjhQgsJBwhY499fG7ILuWIMYWtRG-iQ,49574
1376
1383
  pulumi_gcp/tpu/outputs.py,sha256=ljZWgasz3UzZjErw4DsWX6PDhwpVgex5JGISeVIhid0,19368
1377
1384
  pulumi_gcp/tpu/v2_vm.py,sha256=l-lY1aCPhR9dIBgmM1tEctDF3ZhpT1E3oN3T9Yzw6sc,66292
1378
1385
  pulumi_gcp/vertex/__init__.py,sha256=_T81Haq-KUSfRY5RixqEB75yVwH7aXeIDKdB3JXlQT0,1361
1379
- pulumi_gcp/vertex/_inputs.py,sha256=Usn6CzgKhVXKPSKVXDMCjbdZKEbVrr4IEVLCxZ0CVG8,102976
1386
+ pulumi_gcp/vertex/_inputs.py,sha256=k2Rk6cnnVfRICCFzBSk06ZmnSvX3sBoR4Ij0WOukmxQ,111680
1380
1387
  pulumi_gcp/vertex/ai_dataset.py,sha256=GWvp9afaGt8kOLVIsB-EgAqeroARSCETxnWD9x7M92o,31005
1381
1388
  pulumi_gcp/vertex/ai_endpoint.py,sha256=NAsMyFy0KpLMuygrJAxF4sDJHcaxVYr1M3Pr5lQXkSU,48760
1382
1389
  pulumi_gcp/vertex/ai_endpoint_iam_binding.py,sha256=6WE5W1z2dKhY8awJ0MeZU5hQJP_0Rl9yEYNOh6_7xB0,12649
@@ -1385,7 +1392,7 @@ pulumi_gcp/vertex/ai_endpoint_iam_policy.py,sha256=pUvYy2M6r-0PQwg3bUjp0biAqnHbX
1385
1392
  pulumi_gcp/vertex/ai_feature_group.py,sha256=PCUOG8C9JHs3E3TS-zAZBs5_lDP3i_GHpX7UwVlQO4U,32152
1386
1393
  pulumi_gcp/vertex/ai_feature_group_feature.py,sha256=tMJT7y4gYvaBbJdDTwNI2oibWV6ASmYwhrEFll9Wc3Y,34238
1387
1394
  pulumi_gcp/vertex/ai_feature_online_store.py,sha256=t3V6uiU1jX1SYZOLx5EliZ8BXuA8UaOB7xUkhFQAE78,48907
1388
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py,sha256=KLQ4_EJbML7qNEQf9kDlP1v9EXlLxvWqm-LxDkjXk6A,39900
1395
+ pulumi_gcp/vertex/ai_feature_online_store_featureview.py,sha256=_JTNGY6uwuGzGjBhUpjXDk3UT9QIRrtn-bltgNZ_KIU,52461
1389
1396
  pulumi_gcp/vertex/ai_feature_store.py,sha256=J06Tfp_ktdaEPRoMRx76WU2QDW9Xv_atsSYhBJqlm9k,41580
1390
1397
  pulumi_gcp/vertex/ai_feature_store_entity_type.py,sha256=U3VhLyyFz3iCvhNjLHmuX7dwRWgUJY_wZoB0H2zF-lg,41079
1391
1398
  pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py,sha256=760kzoewUCNp7KTeBEoRMqY2MzSz0_wxsiYtIVl_1HU,33758
@@ -1403,7 +1410,7 @@ pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py,sha256=HCaJM6x0WYCx2haezTaCkWFdS
1403
1410
  pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py,sha256=Q8iADyN8HOvbptbYoxx4ekbtK0p3nYhB_t9mVqqO-1g,5307
1404
1411
  pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py,sha256=KHFi6S8zmTG59u8fjCMwk251F9GYdxzg8ME7DgTyOsM,6471
1405
1412
  pulumi_gcp/vertex/get_ai_index.py,sha256=9IfQ_Mq15GumzG9nQVwQyaOL7wUriyEMjDPuawDW2rg,10085
1406
- pulumi_gcp/vertex/outputs.py,sha256=Es9F84A2nGqjOuf_m6hTR6FzRIJgFbOfRTeAi4I4O5I,119134
1413
+ pulumi_gcp/vertex/outputs.py,sha256=L2HkUe2jrC_jwKjzw6VK6DwwyrZSUB19oeP_-1TsSpE,127978
1407
1414
  pulumi_gcp/vmwareengine/__init__.py,sha256=5opTrk1vrtEmzz_tp4Dn8bOdnok6H9_mZwp6BmR1ftU,872
1408
1415
  pulumi_gcp/vmwareengine/_inputs.py,sha256=71Gvo7nHDAfCdxzFlPiE3Cv7QeAN-YYdDnXXPSDBF-c,29805
1409
1416
  pulumi_gcp/vmwareengine/cluster.py,sha256=16Btf64fbchA09j-JPbhid25Ta0pznQIenHmwFzXlts,22589
@@ -1439,22 +1446,22 @@ pulumi_gcp/workbench/instance_iam_member.py,sha256=U3WRgY3sKqCLoZEAtWyc4H3obWrH0
1439
1446
  pulumi_gcp/workbench/instance_iam_policy.py,sha256=8e35m3Efq4ScMh2B86euvjgTrUuJO6Qmc4KFgIXNau4,9513
1440
1447
  pulumi_gcp/workbench/outputs.py,sha256=v7-j_IXTJ48bB_jkGiqu-mTmfVMGD-ihX8L_O1b_3yo,31638
1441
1448
  pulumi_gcp/workflows/__init__.py,sha256=uhAhkKJ_coi33o3gwBKGeZVzrmlMOBEFZddAAsKuQQQ,293
1442
- pulumi_gcp/workflows/workflow.py,sha256=R11agbTmOgvNtWG-3AdjpBqLhS5tHEx6iyVT_j_WqrU,42820
1449
+ pulumi_gcp/workflows/workflow.py,sha256=vPA_Lj-P9EbtabgQv-plZt01OqyMROUVYWpFolm5Qx8,47036
1443
1450
  pulumi_gcp/workstations/__init__.py,sha256=3c3cPqiGi7-tnoqgtL-4AEXzxEgVTRGJIT2eIu5fnts,752
1444
- pulumi_gcp/workstations/_inputs.py,sha256=OFr6lGn4kIV2sfTxpB50Bb4uIK3Ocaea7NtLuWcNHCw,43440
1451
+ pulumi_gcp/workstations/_inputs.py,sha256=SeuIfBBbtxdu53FudN1nX1rKydH-5ILI1YSsOy5qiwc,44520
1445
1452
  pulumi_gcp/workstations/get_workstation_config_iam_policy.py,sha256=5sFHRvTPRJVyxXrurFPwjLvTeemNEn_bW8py2RotYQg,7026
1446
1453
  pulumi_gcp/workstations/get_workstation_iam_policy.py,sha256=y16YlBiMS5XMb2t8nyyBBqUyUL0IeskmBG0hG6irnMU,7529
1447
- pulumi_gcp/workstations/outputs.py,sha256=aZEr659mmMBaaUXrSNfPWWyulnSFhE7S6tO9U_88E88,40240
1454
+ pulumi_gcp/workstations/outputs.py,sha256=py1U0HzdTnz8AkMwwx3iW7iK_deCWlHmuZ6J6NEzQbY,41027
1448
1455
  pulumi_gcp/workstations/workstation.py,sha256=I8p376gBas92JqDTR6tVuJ9nAVi2aiHTYAiILZH5_uc,46085
1449
1456
  pulumi_gcp/workstations/workstation_cluster.py,sha256=uoUJUWjABwT9yQPp3T42t21CADaCOgo28Loki9lXdsQ,55203
1450
- pulumi_gcp/workstations/workstation_config.py,sha256=ZsVmuNkCWBXnTUI3w27o_D9ySFp0a1E9hYafTupcjCE,106895
1457
+ pulumi_gcp/workstations/workstation_config.py,sha256=CoCTZFZsd51fbpPnd9NfWPAtiao2sO3XD3UjVaRQyOA,110275
1451
1458
  pulumi_gcp/workstations/workstation_config_iam_binding.py,sha256=tldTH1VjHhmDdasOnRODygnDhxNM20Arm3E8qEVz8Lw,34236
1452
1459
  pulumi_gcp/workstations/workstation_config_iam_member.py,sha256=dG5xLBDHme35mj-2l_oCFSyNjF96f5D1tN8e51TV5es,33940
1453
1460
  pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=ZS9JWOhvwHgpZdI12k2Ezk15Q8wn0xskjFsVHKE5YMk,30202
1454
1461
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=sLyb9vNFrG9sh_1uGiWddwbZFGLtaj5JGY31oh-SwS8,35727
1455
1462
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=QOR7nZrcFdheKQrUxv6gOj74o1QZwiGcTxXvKTIWArY,35431
1456
1463
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=t_pyrWOuX9A4kuJ3IV9S7Qg4Xb8zRRCzRDdatPshlIU,31795
1457
- pulumi_gcp-7.8.0a1706829616.dist-info/METADATA,sha256=5L71q14WrtGx1TZRY5qAM_EcRGGB-yH0mKv5vfVSQuc,2735
1458
- pulumi_gcp-7.8.0a1706829616.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
1459
- pulumi_gcp-7.8.0a1706829616.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1460
- pulumi_gcp-7.8.0a1706829616.dist-info/RECORD,,
1464
+ pulumi_gcp-7.8.0a1706905467.dist-info/METADATA,sha256=9m42mHRZKuYVLe7WicCHvfZDCeeJ486dVnlwDhvNxa4,2735
1465
+ pulumi_gcp-7.8.0a1706905467.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
1466
+ pulumi_gcp-7.8.0a1706905467.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1467
+ pulumi_gcp-7.8.0a1706905467.dist-info/RECORD,,