pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.0a1741242890__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +64 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/compute/__init__.py +5 -0
- pulumi_gcp/compute/_inputs.py +770 -0
- pulumi_gcp/compute/backend_service.py +14 -7
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +295 -0
- pulumi_gcp/compute/get_disk.py +56 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1329 -6
- pulumi_gcp/compute/region_backend_service.py +14 -7
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +40 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +41 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/_inputs.py +33 -9
- pulumi_gcp/iam/outputs.py +22 -6
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networkservices/grpc_route.py +116 -12
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/RECORD +56 -46
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class TransferJobArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
description: pulumi.Input[str],
|
25
25
|
event_stream: Optional[pulumi.Input['TransferJobEventStreamArgs']] = None,
|
26
|
+
logging_config: Optional[pulumi.Input['TransferJobLoggingConfigArgs']] = None,
|
26
27
|
name: Optional[pulumi.Input[str]] = None,
|
27
28
|
notification_config: Optional[pulumi.Input['TransferJobNotificationConfigArgs']] = None,
|
28
29
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -34,6 +35,7 @@ class TransferJobArgs:
|
|
34
35
|
The set of arguments for constructing a TransferJob resource.
|
35
36
|
:param pulumi.Input[str] description: Unique description to identify the Transfer Job.
|
36
37
|
:param pulumi.Input['TransferJobEventStreamArgs'] event_stream: Specifies the Event-driven transfer options. Event-driven transfers listen to an event stream to transfer updated files. Structure documented below Either `event_stream` or `schedule` must be set.
|
38
|
+
:param pulumi.Input['TransferJobLoggingConfigArgs'] logging_config: Logging configuration. Structure documented below.
|
37
39
|
:param pulumi.Input[str] name: The name of the Transfer Job. This name must start with "transferJobs/" prefix and end with a letter or a number, and should be no more than 128 characters ( `transferJobs/^(?!OPI)[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For transfers involving PosixFilesystem, this name must start with transferJobs/OPI specifically ( `transferJobs/OPI^[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For all other transfer types, this name must not start with transferJobs/OPI. Default the provider will assign a random unique name with `transferJobs/{{name}}` format, where `name` is a numeric value.
|
38
40
|
:param pulumi.Input['TransferJobNotificationConfigArgs'] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
39
41
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
@@ -48,6 +50,8 @@ class TransferJobArgs:
|
|
48
50
|
pulumi.set(__self__, "description", description)
|
49
51
|
if event_stream is not None:
|
50
52
|
pulumi.set(__self__, "event_stream", event_stream)
|
53
|
+
if logging_config is not None:
|
54
|
+
pulumi.set(__self__, "logging_config", logging_config)
|
51
55
|
if name is not None:
|
52
56
|
pulumi.set(__self__, "name", name)
|
53
57
|
if notification_config is not None:
|
@@ -87,6 +91,18 @@ class TransferJobArgs:
|
|
87
91
|
def event_stream(self, value: Optional[pulumi.Input['TransferJobEventStreamArgs']]):
|
88
92
|
pulumi.set(self, "event_stream", value)
|
89
93
|
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="loggingConfig")
|
96
|
+
def logging_config(self) -> Optional[pulumi.Input['TransferJobLoggingConfigArgs']]:
|
97
|
+
"""
|
98
|
+
Logging configuration. Structure documented below.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "logging_config")
|
101
|
+
|
102
|
+
@logging_config.setter
|
103
|
+
def logging_config(self, value: Optional[pulumi.Input['TransferJobLoggingConfigArgs']]):
|
104
|
+
pulumi.set(self, "logging_config", value)
|
105
|
+
|
90
106
|
@property
|
91
107
|
@pulumi.getter
|
92
108
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -183,6 +199,7 @@ class _TransferJobState:
|
|
183
199
|
description: Optional[pulumi.Input[str]] = None,
|
184
200
|
event_stream: Optional[pulumi.Input['TransferJobEventStreamArgs']] = None,
|
185
201
|
last_modification_time: Optional[pulumi.Input[str]] = None,
|
202
|
+
logging_config: Optional[pulumi.Input['TransferJobLoggingConfigArgs']] = None,
|
186
203
|
name: Optional[pulumi.Input[str]] = None,
|
187
204
|
notification_config: Optional[pulumi.Input['TransferJobNotificationConfigArgs']] = None,
|
188
205
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -197,6 +214,7 @@ class _TransferJobState:
|
|
197
214
|
:param pulumi.Input[str] description: Unique description to identify the Transfer Job.
|
198
215
|
:param pulumi.Input['TransferJobEventStreamArgs'] event_stream: Specifies the Event-driven transfer options. Event-driven transfers listen to an event stream to transfer updated files. Structure documented below Either `event_stream` or `schedule` must be set.
|
199
216
|
:param pulumi.Input[str] last_modification_time: When the Transfer Job was last modified.
|
217
|
+
:param pulumi.Input['TransferJobLoggingConfigArgs'] logging_config: Logging configuration. Structure documented below.
|
200
218
|
:param pulumi.Input[str] name: The name of the Transfer Job. This name must start with "transferJobs/" prefix and end with a letter or a number, and should be no more than 128 characters ( `transferJobs/^(?!OPI)[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For transfers involving PosixFilesystem, this name must start with transferJobs/OPI specifically ( `transferJobs/OPI^[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For all other transfer types, this name must not start with transferJobs/OPI. Default the provider will assign a random unique name with `transferJobs/{{name}}` format, where `name` is a numeric value.
|
201
219
|
:param pulumi.Input['TransferJobNotificationConfigArgs'] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
202
220
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
@@ -218,6 +236,8 @@ class _TransferJobState:
|
|
218
236
|
pulumi.set(__self__, "event_stream", event_stream)
|
219
237
|
if last_modification_time is not None:
|
220
238
|
pulumi.set(__self__, "last_modification_time", last_modification_time)
|
239
|
+
if logging_config is not None:
|
240
|
+
pulumi.set(__self__, "logging_config", logging_config)
|
221
241
|
if name is not None:
|
222
242
|
pulumi.set(__self__, "name", name)
|
223
243
|
if notification_config is not None:
|
@@ -293,6 +313,18 @@ class _TransferJobState:
|
|
293
313
|
def last_modification_time(self, value: Optional[pulumi.Input[str]]):
|
294
314
|
pulumi.set(self, "last_modification_time", value)
|
295
315
|
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="loggingConfig")
|
318
|
+
def logging_config(self) -> Optional[pulumi.Input['TransferJobLoggingConfigArgs']]:
|
319
|
+
"""
|
320
|
+
Logging configuration. Structure documented below.
|
321
|
+
"""
|
322
|
+
return pulumi.get(self, "logging_config")
|
323
|
+
|
324
|
+
@logging_config.setter
|
325
|
+
def logging_config(self, value: Optional[pulumi.Input['TransferJobLoggingConfigArgs']]):
|
326
|
+
pulumi.set(self, "logging_config", value)
|
327
|
+
|
296
328
|
@property
|
297
329
|
@pulumi.getter
|
298
330
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -388,6 +420,7 @@ class TransferJob(pulumi.CustomResource):
|
|
388
420
|
opts: Optional[pulumi.ResourceOptions] = None,
|
389
421
|
description: Optional[pulumi.Input[str]] = None,
|
390
422
|
event_stream: Optional[pulumi.Input[Union['TransferJobEventStreamArgs', 'TransferJobEventStreamArgsDict']]] = None,
|
423
|
+
logging_config: Optional[pulumi.Input[Union['TransferJobLoggingConfigArgs', 'TransferJobLoggingConfigArgsDict']]] = None,
|
391
424
|
name: Optional[pulumi.Input[str]] = None,
|
392
425
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
393
426
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -480,6 +513,16 @@ class TransferJob(pulumi.CustomResource):
|
|
480
513
|
],
|
481
514
|
"payload_format": "JSON",
|
482
515
|
},
|
516
|
+
logging_config={
|
517
|
+
"log_actions": [
|
518
|
+
"COPY",
|
519
|
+
"DELETE",
|
520
|
+
],
|
521
|
+
"log_action_states": [
|
522
|
+
"SUCCEEDED",
|
523
|
+
"FAILED",
|
524
|
+
],
|
525
|
+
},
|
483
526
|
opts = pulumi.ResourceOptions(depends_on=[
|
484
527
|
s3_backup_bucket_bucket_iam_member,
|
485
528
|
notification_config,
|
@@ -502,6 +545,7 @@ class TransferJob(pulumi.CustomResource):
|
|
502
545
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
503
546
|
:param pulumi.Input[str] description: Unique description to identify the Transfer Job.
|
504
547
|
:param pulumi.Input[Union['TransferJobEventStreamArgs', 'TransferJobEventStreamArgsDict']] event_stream: Specifies the Event-driven transfer options. Event-driven transfers listen to an event stream to transfer updated files. Structure documented below Either `event_stream` or `schedule` must be set.
|
548
|
+
:param pulumi.Input[Union['TransferJobLoggingConfigArgs', 'TransferJobLoggingConfigArgsDict']] logging_config: Logging configuration. Structure documented below.
|
505
549
|
:param pulumi.Input[str] name: The name of the Transfer Job. This name must start with "transferJobs/" prefix and end with a letter or a number, and should be no more than 128 characters ( `transferJobs/^(?!OPI)[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For transfers involving PosixFilesystem, this name must start with transferJobs/OPI specifically ( `transferJobs/OPI^[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For all other transfer types, this name must not start with transferJobs/OPI. Default the provider will assign a random unique name with `transferJobs/{{name}}` format, where `name` is a numeric value.
|
506
550
|
:param pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
507
551
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
@@ -603,6 +647,16 @@ class TransferJob(pulumi.CustomResource):
|
|
603
647
|
],
|
604
648
|
"payload_format": "JSON",
|
605
649
|
},
|
650
|
+
logging_config={
|
651
|
+
"log_actions": [
|
652
|
+
"COPY",
|
653
|
+
"DELETE",
|
654
|
+
],
|
655
|
+
"log_action_states": [
|
656
|
+
"SUCCEEDED",
|
657
|
+
"FAILED",
|
658
|
+
],
|
659
|
+
},
|
606
660
|
opts = pulumi.ResourceOptions(depends_on=[
|
607
661
|
s3_backup_bucket_bucket_iam_member,
|
608
662
|
notification_config,
|
@@ -638,6 +692,7 @@ class TransferJob(pulumi.CustomResource):
|
|
638
692
|
opts: Optional[pulumi.ResourceOptions] = None,
|
639
693
|
description: Optional[pulumi.Input[str]] = None,
|
640
694
|
event_stream: Optional[pulumi.Input[Union['TransferJobEventStreamArgs', 'TransferJobEventStreamArgsDict']]] = None,
|
695
|
+
logging_config: Optional[pulumi.Input[Union['TransferJobLoggingConfigArgs', 'TransferJobLoggingConfigArgsDict']]] = None,
|
641
696
|
name: Optional[pulumi.Input[str]] = None,
|
642
697
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
643
698
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -658,6 +713,7 @@ class TransferJob(pulumi.CustomResource):
|
|
658
713
|
raise TypeError("Missing required property 'description'")
|
659
714
|
__props__.__dict__["description"] = description
|
660
715
|
__props__.__dict__["event_stream"] = event_stream
|
716
|
+
__props__.__dict__["logging_config"] = logging_config
|
661
717
|
__props__.__dict__["name"] = name
|
662
718
|
__props__.__dict__["notification_config"] = notification_config
|
663
719
|
__props__.__dict__["project"] = project
|
@@ -683,6 +739,7 @@ class TransferJob(pulumi.CustomResource):
|
|
683
739
|
description: Optional[pulumi.Input[str]] = None,
|
684
740
|
event_stream: Optional[pulumi.Input[Union['TransferJobEventStreamArgs', 'TransferJobEventStreamArgsDict']]] = None,
|
685
741
|
last_modification_time: Optional[pulumi.Input[str]] = None,
|
742
|
+
logging_config: Optional[pulumi.Input[Union['TransferJobLoggingConfigArgs', 'TransferJobLoggingConfigArgsDict']]] = None,
|
686
743
|
name: Optional[pulumi.Input[str]] = None,
|
687
744
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
688
745
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -702,6 +759,7 @@ class TransferJob(pulumi.CustomResource):
|
|
702
759
|
:param pulumi.Input[str] description: Unique description to identify the Transfer Job.
|
703
760
|
:param pulumi.Input[Union['TransferJobEventStreamArgs', 'TransferJobEventStreamArgsDict']] event_stream: Specifies the Event-driven transfer options. Event-driven transfers listen to an event stream to transfer updated files. Structure documented below Either `event_stream` or `schedule` must be set.
|
704
761
|
:param pulumi.Input[str] last_modification_time: When the Transfer Job was last modified.
|
762
|
+
:param pulumi.Input[Union['TransferJobLoggingConfigArgs', 'TransferJobLoggingConfigArgsDict']] logging_config: Logging configuration. Structure documented below.
|
705
763
|
:param pulumi.Input[str] name: The name of the Transfer Job. This name must start with "transferJobs/" prefix and end with a letter or a number, and should be no more than 128 characters ( `transferJobs/^(?!OPI)[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For transfers involving PosixFilesystem, this name must start with transferJobs/OPI specifically ( `transferJobs/OPI^[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For all other transfer types, this name must not start with transferJobs/OPI. Default the provider will assign a random unique name with `transferJobs/{{name}}` format, where `name` is a numeric value.
|
706
764
|
:param pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
707
765
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
@@ -722,6 +780,7 @@ class TransferJob(pulumi.CustomResource):
|
|
722
780
|
__props__.__dict__["description"] = description
|
723
781
|
__props__.__dict__["event_stream"] = event_stream
|
724
782
|
__props__.__dict__["last_modification_time"] = last_modification_time
|
783
|
+
__props__.__dict__["logging_config"] = logging_config
|
725
784
|
__props__.__dict__["name"] = name
|
726
785
|
__props__.__dict__["notification_config"] = notification_config
|
727
786
|
__props__.__dict__["project"] = project
|
@@ -771,6 +830,14 @@ class TransferJob(pulumi.CustomResource):
|
|
771
830
|
"""
|
772
831
|
return pulumi.get(self, "last_modification_time")
|
773
832
|
|
833
|
+
@property
|
834
|
+
@pulumi.getter(name="loggingConfig")
|
835
|
+
def logging_config(self) -> pulumi.Output[Optional['outputs.TransferJobLoggingConfig']]:
|
836
|
+
"""
|
837
|
+
Logging configuration. Structure documented below.
|
838
|
+
"""
|
839
|
+
return pulumi.get(self, "logging_config")
|
840
|
+
|
774
841
|
@property
|
775
842
|
@pulumi.getter
|
776
843
|
def name(self) -> pulumi.Output[str]:
|
@@ -1,8 +1,8 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=MhvMxvtmVG1omDOMYwtFbrNa7HHEysdVtbk4WO1s7pE,227357
|
2
2
|
pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
|
3
3
|
pulumi_gcp/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
4
4
|
pulumi_gcp/provider.py,sha256=06t-eVjlz80Ql9MnyxDWkwjGbV-0AKyn6QfeeNJshBs,206294
|
5
|
-
pulumi_gcp/pulumi-plugin.json,sha256=
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=l5DdEmz8oqB6f4pEBdWseqRckujKt4Wk87jJCzDV7qY,80
|
6
6
|
pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
|
8
8
|
pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=0Lomex6X2Kp8FCHznDp0CbPYBvyRMqZOOtXbh-eq6Ug,6322
|
@@ -39,12 +39,12 @@ pulumi_gcp/activedirectory/peering.py,sha256=O7JEEwPXu2ftFWIAt-gZZrD2ld1y1uxj82I
|
|
39
39
|
pulumi_gcp/alloydb/__init__.py,sha256=iomZI9x62XfDpyCCNvDvg3zociLt1BFpeYhbJCd9caU,531
|
40
40
|
pulumi_gcp/alloydb/_inputs.py,sha256=5FgwST8ycDjeigVjrGS7xpuBkTAa7k2lYmgBuKa2nkM,99121
|
41
41
|
pulumi_gcp/alloydb/backup.py,sha256=9-RJ8SQmUc9vHfkAlGdNbCnXXdGq5ppZNOd2xt-3bXI,65866
|
42
|
-
pulumi_gcp/alloydb/cluster.py,sha256=
|
42
|
+
pulumi_gcp/alloydb/cluster.py,sha256=AdQWHHaPjPUTYi99p1YREW_Je-egEB1QOkT3IfprtBY,111496
|
43
43
|
pulumi_gcp/alloydb/get_cluster.py,sha256=-6hqWGWg9AoPFAJqLZ5cLcBoRfXtagztj9IJJ-x9uVk,24347
|
44
44
|
pulumi_gcp/alloydb/get_instance.py,sha256=4ysZcLuhp3Smv5ThRcYH6JG5pmiAObAfVOvQr3zKfmc,21816
|
45
45
|
pulumi_gcp/alloydb/get_locations.py,sha256=LQz4f1MEfq4x8O1d18Kwwd9B_W8RddjjMj2h5ks5ZMA,4307
|
46
46
|
pulumi_gcp/alloydb/get_supported_database_flags.py,sha256=C77eFDYWqv9GZSRhxWX4wY3ovoZxCvssVHkY96gldBQ,5609
|
47
|
-
pulumi_gcp/alloydb/instance.py,sha256=
|
47
|
+
pulumi_gcp/alloydb/instance.py,sha256=f6jPF2T9K8uMQV8gkjlOGA9MpLx2lsNAVSpDohpUbmM,83187
|
48
48
|
pulumi_gcp/alloydb/outputs.py,sha256=soU9kmPl9L96BsNDw9l00F86kpspa9NqZm-MfxHT1DM,138544
|
49
49
|
pulumi_gcp/alloydb/user.py,sha256=wsfqyuxU4qM0GQXWdgLWuY_RgDS112iFxeekvjJe3mw,25299
|
50
50
|
pulumi_gcp/apigateway/__init__.py,sha256=IQVCF8c98QUZ78PG1Qk8q13MVH9eQ0314cGxvy642Bk,801
|
@@ -97,9 +97,10 @@ pulumi_gcp/apigee/sharedflow.py,sha256=1WhxBrXuILrUBd0YS3KGHLoFYuTuYt_wLC44kAhYF
|
|
97
97
|
pulumi_gcp/apigee/sharedflow_deployment.py,sha256=t1KcF9gqgEBPW83tQLaD3E81D6G78yr2961HrSlOOvA,17600
|
98
98
|
pulumi_gcp/apigee/sync_authorization.py,sha256=qNmNn_DXotI98bs2DlmWGfnFcOKfTlJZ3MBYdz9Rzh4,18965
|
99
99
|
pulumi_gcp/apigee/target_server.py,sha256=2MB3Aw7YIx8ZvFi-OFm_yb01HvxyGn-HhLN6wM5ez2g,31728
|
100
|
-
pulumi_gcp/apihub/__init__.py,sha256=
|
100
|
+
pulumi_gcp/apihub/__init__.py,sha256=kt63NebyAnsm32AGfignI1XPKLBwzFtAqQhchl9N70Q,387
|
101
101
|
pulumi_gcp/apihub/_inputs.py,sha256=QsM7nczjOkuc6ixj8eWQI-HQBk4JCDzgNF6VJu1158E,6026
|
102
102
|
pulumi_gcp/apihub/api_hub_instance.py,sha256=rCP03qgpU4Db7Xjk29VHHt2FLY48aWfDGDDECF3Tktg,35448
|
103
|
+
pulumi_gcp/apihub/host_project_registration.py,sha256=okhvPf055wAvyIn9UPmaqEyGEe3J8Awjkzypn5Bs7Es,24290
|
103
104
|
pulumi_gcp/apihub/outputs.py,sha256=ZllY3ECegkGdZY1F51DAgvoz_pFfB6xgjRS10lsKyzk,4741
|
104
105
|
pulumi_gcp/appengine/__init__.py,sha256=P_FPThoe2TlxctUhwmwRUky0yfsbuDYv3JsUcTFaKck,637
|
105
106
|
pulumi_gcp/appengine/_inputs.py,sha256=Kcb2Aya4aq7dkXV8Oiu7RJfA_rMfvsQWo5NyII5fL-0,177422
|
@@ -211,7 +212,7 @@ pulumi_gcp/bigquery/outputs.py,sha256=c5pQizWST-h-DftpRWizVZv3jskN4OE32r-J456Grk
|
|
211
212
|
pulumi_gcp/bigquery/reservation.py,sha256=O_kGvU29F3n8x3B6YeLgjrkkUrkY5Mnkwiy22xoz4aw,29738
|
212
213
|
pulumi_gcp/bigquery/reservation_assignment.py,sha256=pKjkzjcdLtUXuqap1445cz5FM0Q9_cQ8zYr1G9-K_YQ,21397
|
213
214
|
pulumi_gcp/bigquery/routine.py,sha256=PLVQ6pvuG5-avy-0ZpgIkruk28wN8Q6o5Yk3xIqTIVQ,72238
|
214
|
-
pulumi_gcp/bigquery/table.py,sha256=
|
215
|
+
pulumi_gcp/bigquery/table.py,sha256=7W6xpJqaaCa-y_Kj_4VkMN2qXUrbu1xDo0vkWw-wI0M,102931
|
215
216
|
pulumi_gcp/bigqueryanalyticshub/__init__.py,sha256=6WtyJsOXFXcMMDS6YcnvCIEASCV4uI-_uGUKh1Ak6jM,708
|
216
217
|
pulumi_gcp/bigqueryanalyticshub/_inputs.py,sha256=S--MQtJyhTP_W2Grq8MlE4mD9HvMgWt2tEK_YqdY9NI,33323
|
217
218
|
pulumi_gcp/bigqueryanalyticshub/data_exchange.py,sha256=eoc95HkWoBTpLiLTMcrpLYaxpU09KSMwXzOOa9-DEBY,33732
|
@@ -451,8 +452,8 @@ pulumi_gcp/composer/get_user_workloads_secret.py,sha256=TtnPVLi3EBG9Y8DBUT69RCHO
|
|
451
452
|
pulumi_gcp/composer/outputs.py,sha256=swsVdcBmE9kbjDkUfWDgQEMJLIrhrIqhBVLw7ZCkvd4,182354
|
452
453
|
pulumi_gcp/composer/user_workloads_config_map.py,sha256=r58rKLTpSVTnL4Ad6NUl2dmy3mxUZbeeOmEUSQwlTq4,19576
|
453
454
|
pulumi_gcp/composer/user_workloads_secret.py,sha256=NVvaPvnE2XqKKiHkdrClLNdUUXlI6Ov12OASN9Hyg88,17854
|
454
|
-
pulumi_gcp/compute/__init__.py,sha256=
|
455
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
455
|
+
pulumi_gcp/compute/__init__.py,sha256=293ezpwm8-MLNAKpWCqgGnuE7s0Ymr7x3L5Ql9PwOjw,8234
|
456
|
+
pulumi_gcp/compute/_inputs.py,sha256=wBAPT6j6HxZ_dYrSICAKf1ooCliTZb836cu69sn9kDw,3235331
|
456
457
|
pulumi_gcp/compute/address.py,sha256=qS7SVwiDTdPTZMgN2u9vselU_RNa4FhKWak_uYxCms0,69402
|
457
458
|
pulumi_gcp/compute/attached_disk.py,sha256=QmFxfLOrAuyJaOd_vkM-TXoGF6fE7iv40tmDvlaqrMY,32098
|
458
459
|
pulumi_gcp/compute/autoscaler.py,sha256=9gklkTDUrkVkX9ThdEOEtEsV7OuBrZrrZsYHCdmvK_8,32510
|
@@ -461,13 +462,13 @@ pulumi_gcp/compute/backend_bucket_iam_binding.py,sha256=nKxOHKguB12DmTU8vMzcUYUS
|
|
461
462
|
pulumi_gcp/compute/backend_bucket_iam_member.py,sha256=NRLWQ6SZV830p5gS9sCvsuHpyQ2_NPIaoz7VfgdDtA0,28879
|
462
463
|
pulumi_gcp/compute/backend_bucket_iam_policy.py,sha256=L8mXu3Za60z4cQpiw6wP6PJjTLK3iJkapq2JQ1J8MsY,15508
|
463
464
|
pulumi_gcp/compute/backend_bucket_signed_url_key.py,sha256=E6X5J9_KxjMvWyoJi-NvRuH496sFO7WrBzFWUI90t9I,16139
|
464
|
-
pulumi_gcp/compute/backend_service.py,sha256=
|
465
|
+
pulumi_gcp/compute/backend_service.py,sha256=P0UWjridteOEmAYMn8mu8UK027s027Svj7bDO7dSIkw,166259
|
465
466
|
pulumi_gcp/compute/backend_service_iam_binding.py,sha256=o4afzxGT_cWVT4Swrf7oTiEojyg7sjKvWGhByGJ8nlQ,30860
|
466
467
|
pulumi_gcp/compute/backend_service_iam_member.py,sha256=ls6V6mSrB80EYHXKCiMIju5HiXj2r5O4j8PSoEnbpl0,30455
|
467
468
|
pulumi_gcp/compute/backend_service_iam_policy.py,sha256=KmZkbYNyDtBGxlBg0_wrEVLRZBg4ehxmtM0ho9BpX4o,15584
|
468
469
|
pulumi_gcp/compute/backend_service_signed_url_key.py,sha256=eDookQfM-7m_UN8v4o1kidd0xwB5tDArVF7fqffGicE,18131
|
469
|
-
pulumi_gcp/compute/ca_external_account_key.py,sha256=
|
470
|
-
pulumi_gcp/compute/disk.py,sha256=
|
470
|
+
pulumi_gcp/compute/ca_external_account_key.py,sha256=h3Gjnik-JphZcWSzjvjUwMZPOXrjxIW0mDCMwXGBRAQ,18362
|
471
|
+
pulumi_gcp/compute/disk.py,sha256=8IeZR2eJg8idLrliVy2ECZHT5k5LSI4SrRomkY7okdg,150775
|
471
472
|
pulumi_gcp/compute/disk_async_replication.py,sha256=FiGRNQiVMNbhITpUqg1qxtN2-811hG5GCPRRHmWt-5Y,11901
|
472
473
|
pulumi_gcp/compute/disk_iam_binding.py,sha256=ooxu_LOAOedNXi8oOToksuVEhiH6oxG7QQKFSoRHhfs,42318
|
473
474
|
pulumi_gcp/compute/disk_iam_member.py,sha256=IgFOCtw1Ejqu5T8o6YtsVMMBKM02Ne7cKYKRYDG1oYY,41919
|
@@ -488,7 +489,7 @@ pulumi_gcp/compute/get_backend_service.py,sha256=W7RDmPsyUM2fQAK0JFD0iyXYQk_pBC5
|
|
488
489
|
pulumi_gcp/compute/get_backend_service_iam_policy.py,sha256=1xFxihP_vZmSInyig-1N126gUbCb9eV2vWHTKaxKJj8,6136
|
489
490
|
pulumi_gcp/compute/get_certificate.py,sha256=TAQberhCWrDu3tPgKc0kc38NAFkRw0hAYxEhEjhyPws,8830
|
490
491
|
pulumi_gcp/compute/get_default_service_account.py,sha256=radZ78BnWSqqquc4gUlHtq35gnutU8WJhLlNo-XbFZ8,6682
|
491
|
-
pulumi_gcp/compute/get_disk.py,sha256=
|
492
|
+
pulumi_gcp/compute/get_disk.py,sha256=URZACX_t2F8yJhLt4ulo3N-Yyp8mKnnvy9n4Pad5ASY,30190
|
492
493
|
pulumi_gcp/compute/get_disk_iam_policy.py,sha256=q3u1lDmOij7_nObwzIEKa4N3G2z2uqBiLtKx583p3TM,7302
|
493
494
|
pulumi_gcp/compute/get_forwarding_rule.py,sha256=acm8Ma-PJSFjGGrKRZi0llJ717fqKX0B_2_sllQbvCY,23885
|
494
495
|
pulumi_gcp/compute/get_forwarding_rules.py,sha256=0Fqi9tx4SMpqdqY4UqtXLzdOTyIbClhMp_l1tUabfmk,5577
|
@@ -506,6 +507,7 @@ pulumi_gcp/compute/get_instance_iam_policy.py,sha256=-apHj_HBB4DDnCp4B8mMVfd0a4q
|
|
506
507
|
pulumi_gcp/compute/get_instance_serial_port.py,sha256=UTRU7C4UBjduoQZwMkkmUAeY6lrlFt5rYkXBLaJSbUM,11124
|
507
508
|
pulumi_gcp/compute/get_instance_template.py,sha256=VBImo296lKYK1jedq9TVVeqgBfJAwtWeMll6bXkmr_g,33149
|
508
509
|
pulumi_gcp/compute/get_instance_template_iam_policy.py,sha256=vWlTZcdx2ZTJn4sECW4bwnij6bXF7BChxmlF4Y1sjos,6320
|
510
|
+
pulumi_gcp/compute/get_instant_snapshot_iam_policy.py,sha256=39QuiHt4oepwhmy7CzMKGc1NDeVAOG5tVzGi0MjW9Rg,7672
|
509
511
|
pulumi_gcp/compute/get_lbip_ranges.py,sha256=rK7LmC-Bv2HZpbpJbumyrXPbiSv9FRsG1S7q6KkrbgM,4893
|
510
512
|
pulumi_gcp/compute/get_machine_image_iam_policy.py,sha256=YCVr8TJ587eZUUFuntckTVkjavNp3Zui2gBe1s6gOkY,6307
|
511
513
|
pulumi_gcp/compute/get_machine_types.py,sha256=UY8h8Y_KtWlK1f7vhZOWPozow7PxY_s0PmUEPzgI7Y0,6425
|
@@ -565,6 +567,10 @@ pulumi_gcp/compute/instance_template.py,sha256=4VGDupVO00cJM71-OzM9G_9AifuZfF1s7
|
|
565
567
|
pulumi_gcp/compute/instance_template_iam_binding.py,sha256=MDXj0A8eBiI_BEsYgaz8iE2mizT601KexD1azcpFBT8,50296
|
566
568
|
pulumi_gcp/compute/instance_template_iam_member.py,sha256=w2QMQwdRmfTQtIwXDqIxV4HgncnVz1M0K_o8A0M3i3c,49891
|
567
569
|
pulumi_gcp/compute/instance_template_iam_policy.py,sha256=GjMNeUi6msXwoerwrBpGrzjry2fZ2bO8tvTSgkWoKLo,34968
|
570
|
+
pulumi_gcp/compute/instant_snapshot.py,sha256=YnXuHfH1VRa6rAPYPjxTgVHMAngihS5Lcpmkak-T3PE,34505
|
571
|
+
pulumi_gcp/compute/instant_snapshot_iam_binding.py,sha256=y7YI3T9WwHu_UuOqnPOUjhq8nwdz2vENUjDOo6NSeAs,54819
|
572
|
+
pulumi_gcp/compute/instant_snapshot_iam_member.py,sha256=NEjuqBhe6poO-3AnvIbJhqKaTvn02OQbNH76iaRt8so,54414
|
573
|
+
pulumi_gcp/compute/instant_snapshot_iam_policy.py,sha256=tryqa96eefIoVpWvEE0ndyj_uFmcw4j-HKuV6Jul5Fk,39517
|
568
574
|
pulumi_gcp/compute/interconnect.py,sha256=AXk8RlaqgD032TSzCv807MYVpu_eK91dvh_hNwXYHtQ,93393
|
569
575
|
pulumi_gcp/compute/interconnect_attachment.py,sha256=G0nbrPENL84sDAreNxjTs9sgXFf2xiS38xTjTzfL2v4,112988
|
570
576
|
pulumi_gcp/compute/machine_image.py,sha256=cFUhTQWQGNcBT9aGN0uEbhqk7zAgsMJKrZ8O-HQai7M,29024
|
@@ -591,7 +597,7 @@ pulumi_gcp/compute/node_template.py,sha256=bGTpRDY309pozWV7JSf_Nx2AaxNRZvtExSUCl
|
|
591
597
|
pulumi_gcp/compute/organization_security_policy.py,sha256=mJ7JCQ3VCKkHj6BXb4K7rDcL7tSD2cSSV58K5p1Bmpk,19298
|
592
598
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=ieHcfS3d3vY7kAs5ltG_9lblp9OjkrA7yk69_XhXYOg,16371
|
593
599
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=C_0FZG1s2b7KUiP2CYPD41GhEfRhGbMq6m-9ewQ8EXU,35312
|
594
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
600
|
+
pulumi_gcp/compute/outputs.py,sha256=hMZeBjupGyxkeGd75qlzKQ-zu5iNugXUZ-6C5dSzOIY,2962885
|
595
601
|
pulumi_gcp/compute/packet_mirroring.py,sha256=xTuTLNXb0-jUYF8gwWJHKOvgl_PPZvDaA_B0iHvhqns,34961
|
596
602
|
pulumi_gcp/compute/per_instance_config.py,sha256=TnfxazuJ-4nhKk8SVtXMVuUfS_lfKTEH8Vl9bxDzr2A,38371
|
597
603
|
pulumi_gcp/compute/project_cloud_armor_tier.py,sha256=5xCMaewguvnO69J_C9JiT6zI4FHwci5a3fgN-JAQ5DE,13371
|
@@ -601,7 +607,7 @@ pulumi_gcp/compute/project_metadata_item.py,sha256=cFLyn6WL2ZSTdIKC_2WR7mgXkXAzO
|
|
601
607
|
pulumi_gcp/compute/public_advertised_prefix.py,sha256=1xO0JG872nL8jWgef-CfqBsuoBXQFtf9PnF1O-y5__0,28194
|
602
608
|
pulumi_gcp/compute/public_delegated_prefix.py,sha256=_O6lsJDQWf9IHEB43wfTLJGNr2QMQmEHRH5NUak0s5I,35153
|
603
609
|
pulumi_gcp/compute/region_autoscaler.py,sha256=mbHkPjemAoBepKdGax6BqH-c_pP_WPIFxkwDdjqYy5Q,29547
|
604
|
-
pulumi_gcp/compute/region_backend_service.py,sha256=
|
610
|
+
pulumi_gcp/compute/region_backend_service.py,sha256=YNhqlIMv0QKHLqOByMYK4emWJ8OJeqQwvxn6DIhSwRc,157413
|
605
611
|
pulumi_gcp/compute/region_backend_service_iam_binding.py,sha256=yxGlgWz7QOHI4XrYME8m0YUyYKgu9yAun5f7Y4x8bOw,35911
|
606
612
|
pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=hQNtPfO-_cZSR_i6zLjChnWkltrf4FC1mfQWNsPoD4M,35506
|
607
613
|
pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=kmsOKBOV-EQyNTxi4C8hTA6Rp8xTmcXlONtsBUFsAFo,20479
|
@@ -633,7 +639,7 @@ pulumi_gcp/compute/region_url_map.py,sha256=3Ua_P8ixIDYZBZRURHAzRoFQPpziYeNX8G-X
|
|
633
639
|
pulumi_gcp/compute/reservation.py,sha256=9qF0IJ8zDSPP6TRCrlV83RrtNezW7SutBs__QSWzCu4,31997
|
634
640
|
pulumi_gcp/compute/resize_request.py,sha256=rpLgvQ1sMaHfU1Jbs_IA6Px_cUQ7qfsejyWGsGDu2p0,33973
|
635
641
|
pulumi_gcp/compute/resource_policy.py,sha256=7BJWCeM3FaoCx6e1nHZd0IC8TzZPDvRn2JdEuwVRK4o,41891
|
636
|
-
pulumi_gcp/compute/route.py,sha256=
|
642
|
+
pulumi_gcp/compute/route.py,sha256=5tKxxLtdTS_f7m1RJL-nz0BVaFgAJw4Su7mG9cuUZr0,79186
|
637
643
|
pulumi_gcp/compute/router.py,sha256=raEv-8PME9zROCK3gq2NHqy2g0dyzlNkVjYPTLS8_3k,28551
|
638
644
|
pulumi_gcp/compute/router_interface.py,sha256=hHebuvPIDldVbfq7xkxBxHxwXeVDiqPdbjps53mzAIA,40123
|
639
645
|
pulumi_gcp/compute/router_nat.py,sha256=SLmV5VsD8Es6ISKlYLRW-GDkTpG2dZENS9IgxTd7j-U,97862
|
@@ -664,7 +670,7 @@ pulumi_gcp/compute/target_instance.py,sha256=s5rbMGN5n34tM69SI1id1MtuxmmNQ5E5bi3
|
|
664
670
|
pulumi_gcp/compute/target_pool.py,sha256=XmIPzU08LnsPWnOGQTW2KB4yWoXbEd18Z1y86ByaRt4,33721
|
665
671
|
pulumi_gcp/compute/target_ssl_proxy.py,sha256=fh1-dkUwxcmhzFjjh5FRZAiA3MJIphuYOrja-6CVTfc,36602
|
666
672
|
pulumi_gcp/compute/target_tcp_proxy.py,sha256=pvoL9889G37JJo2DYhA9IzVcpLH9R_tH54tQxiKaTz4,28102
|
667
|
-
pulumi_gcp/compute/url_map.py,sha256=
|
673
|
+
pulumi_gcp/compute/url_map.py,sha256=3fJiffxUg5lytKfJIOZX6VW4S_LzMVUsLA3txOgsqAs,113032
|
668
674
|
pulumi_gcp/compute/vpn_gateway.py,sha256=b2wYaaS9upuWhm1wmk4WWwdWoHSHlIvaiOiRfqoXKf4,26198
|
669
675
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=-GIGPHcB2bTFNgJhV_kaJEzoJOcs5oiAw6zaRES7UdY,71020
|
670
676
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
@@ -672,7 +678,7 @@ pulumi_gcp/config/__init__.pyi,sha256=qPPSFrbkWfHVOxlCxqv75pfS5UbMEgoQcjNe67ZcKJ
|
|
672
678
|
pulumi_gcp/config/outputs.py,sha256=Q96GtTVg1WzFmBimxYM36KLhlaG0_jQONtYWi0r7BJk,1234
|
673
679
|
pulumi_gcp/config/vars.py,sha256=_gbP2097PDolkVnEZdksaE2w_pORm3aQw_RSMdeHqMM,26349
|
674
680
|
pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
|
675
|
-
pulumi_gcp/container/_inputs.py,sha256=
|
681
|
+
pulumi_gcp/container/_inputs.py,sha256=ESfQyJPUTAAsP1NUGpdUCmGmCiLgiMYCXJusEvu9kDk,985803
|
676
682
|
pulumi_gcp/container/attached_cluster.py,sha256=pJOdjsFa33QU9k1LTGqKHUpzf8E-8fQBP2-hJzYrBHI,76427
|
677
683
|
pulumi_gcp/container/aws_cluster.py,sha256=RSAGOgIKUgdRqJeh1WRze--I9D2wwfieWA_XkWnlrIA,68784
|
678
684
|
pulumi_gcp/container/aws_node_pool.py,sha256=D7FpQIn5JGmjtLFN5yBb-mqAHLQum0j4Fr-HOcirBX0,80091
|
@@ -689,7 +695,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=7GhIfl5cas2FE_Wf5sQodIR9Pok3u
|
|
689
695
|
pulumi_gcp/container/get_registry_image.py,sha256=kJ0TBdXq2CwuUKcVo6bXKDzTFUv2qFGkuRPnjZxywl4,7966
|
690
696
|
pulumi_gcp/container/get_registry_repository.py,sha256=q2LSm3x2o1qKEkQvnd4LRq8dDqlAjurpgf9ao1KRkDI,6123
|
691
697
|
pulumi_gcp/container/node_pool.py,sha256=iTm8nwizxtNJZKoLLs11PQR144W79SSuEfqx-vm-JhU,73448
|
692
|
-
pulumi_gcp/container/outputs.py,sha256=
|
698
|
+
pulumi_gcp/container/outputs.py,sha256=9_jr8n4xdqAQHKdOERczzHMXyc3aFL7Zx95KSqXxCB8,1015839
|
693
699
|
pulumi_gcp/container/registry.py,sha256=x-w3Tt3GB8aGLAyIP9lnhn3xdTeO76mGPXM7_qZ4eYo,13287
|
694
700
|
pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
|
695
701
|
pulumi_gcp/containeranalysis/_inputs.py,sha256=OfL_EeuOmZBWiVuYz7H1LPg4vRlDvO_x9qIen0GsPAs,16837
|
@@ -708,7 +714,7 @@ pulumi_gcp/databasemigrationservice/outputs.py,sha256=pMFDfG3MO98svl0jmpXgu23x8K
|
|
708
714
|
pulumi_gcp/databasemigrationservice/private_connection.py,sha256=oyHsMl5ds4UwF7on2d4-ww4xUgYfTvdg7VJlnLWnX-4,29926
|
709
715
|
pulumi_gcp/datacatalog/__init__.py,sha256=M4wloqnS9CGbzIsU_zjPk4erIdmSgZFRcrrO9MC5pmI,1075
|
710
716
|
pulumi_gcp/datacatalog/_inputs.py,sha256=Oy5tTadk7WIU_-pUm34TuChyoqctuGcHEuLlo1PGLH0,51419
|
711
|
-
pulumi_gcp/datacatalog/entry.py,sha256=
|
717
|
+
pulumi_gcp/datacatalog/entry.py,sha256=w_Lcs1IDL6kur6AJ2AsU-CN5514SPa4ZEUUEqPkVTrQ,54178
|
712
718
|
pulumi_gcp/datacatalog/entry_group.py,sha256=uS7BAcKcbbmi15n39HCpVLD8-y30XtX_F6bgagb3kfk,20259
|
713
719
|
pulumi_gcp/datacatalog/entry_group_iam_binding.py,sha256=DYNAyKBX9Ja23D2cGLLjYDOuEToXDPeGmDJT18GEFLs,40693
|
714
720
|
pulumi_gcp/datacatalog/entry_group_iam_member.py,sha256=0VyNfbA_acSxX2rm4NV2NkL7FrT97sWN3un30_FC5BU,40294
|
@@ -722,7 +728,7 @@ pulumi_gcp/datacatalog/policy_tag.py,sha256=Gh5hp0E_qoMgmALt3_PNvH21f4bUWjTnur0H
|
|
722
728
|
pulumi_gcp/datacatalog/policy_tag_iam_binding.py,sha256=Jy9pVUZoU-I18pRbEMp03bu5c2FbqKFSaOLaXO6_prk,35616
|
723
729
|
pulumi_gcp/datacatalog/policy_tag_iam_member.py,sha256=lqcJwyLBTSX7DQmMq1b7DS5GZ9wVqD9ltx5XWP4bXZw,35217
|
724
730
|
pulumi_gcp/datacatalog/policy_tag_iam_policy.py,sha256=EsTHHE7LIB4citD8ohXhLBsF3qXB80NrfVbxBS96-3M,21898
|
725
|
-
pulumi_gcp/datacatalog/tag.py,sha256=
|
731
|
+
pulumi_gcp/datacatalog/tag.py,sha256=da6SNpi4nsuuBC32XYlsZTpy4T1HUYgeNLjKVL3cMTA,40264
|
726
732
|
pulumi_gcp/datacatalog/tag_template.py,sha256=BR5broz6a0eOp4Biida5TIX4npt_Su2mQuK5WysVvIQ,25482
|
727
733
|
pulumi_gcp/datacatalog/tag_template_iam_binding.py,sha256=KhlgcPymRh1x-MLakf1JAKWhP7cPxxJL1JqSvZ6rpzs,40910
|
728
734
|
pulumi_gcp/datacatalog/tag_template_iam_member.py,sha256=mS7H89qjDK_TKXItORS8dJE_gtlSoKQTbwD_xKoxX_w,40511
|
@@ -804,7 +810,7 @@ pulumi_gcp/dataplex/zone_iam_binding.py,sha256=rOH9LS-4ZDDfjqcitIywEplQ1ILe_hSON
|
|
804
810
|
pulumi_gcp/dataplex/zone_iam_member.py,sha256=nsMwFqs471O5oEzQyNja44ijKNFPc_SeGg1kQcGuxy4,41846
|
805
811
|
pulumi_gcp/dataplex/zone_iam_policy.py,sha256=QdniXaeEaXIfYPLXgOOIpK6sc248BTyEvqtlYrt85Ug,28648
|
806
812
|
pulumi_gcp/dataproc/__init__.py,sha256=tF2YjxXpqS0N5k1pYu7riDl6cNJF4TV7DcCP7AfRj4A,1491
|
807
|
-
pulumi_gcp/dataproc/_inputs.py,sha256=
|
813
|
+
pulumi_gcp/dataproc/_inputs.py,sha256=OyiY_skbTU74km4tcKbg9UpDLLbeBKhrpnRYrYYRXio,772640
|
808
814
|
pulumi_gcp/dataproc/autoscaling_policy.py,sha256=DMj1jxY4GV8BEZx-0mH62heE7_YjSV5MDPcIwsZK0X8,26425
|
809
815
|
pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py,sha256=To42ZJJqyzVahrPGf7HvM3J0-WOY_rCk5Qo1uRy2P8A,47055
|
810
816
|
pulumi_gcp/dataproc/autoscaling_policy_iam_member.py,sha256=_Mj19o9BEttPVi7SYDkB3UC5D0RFUGOb5TJ6Tp9xtNo,46656
|
@@ -835,7 +841,7 @@ pulumi_gcp/dataproc/metastore_service.py,sha256=_r3AZCYv9_hsb-crOks6iEggG3LQ8qNe
|
|
835
841
|
pulumi_gcp/dataproc/metastore_service_iam_binding.py,sha256=YhDo2_eZeROBMuNvJAHH8yX1tojCF_Xr93_nmk0ZMrQ,44478
|
836
842
|
pulumi_gcp/dataproc/metastore_service_iam_member.py,sha256=IJPyfCa8F7nNqoVDteZk5K66YmoGInhc-tnktokbmFo,44079
|
837
843
|
pulumi_gcp/dataproc/metastore_service_iam_policy.py,sha256=etGtqvLksKbliw5Y5K4EGfnEkRl8nQtT_2MYUnJbe_w,30641
|
838
|
-
pulumi_gcp/dataproc/outputs.py,sha256=
|
844
|
+
pulumi_gcp/dataproc/outputs.py,sha256=yYK3WOJHsFVh4QmQimJBLWCYvzQwZbgXWZd2bPO_xws,599035
|
839
845
|
pulumi_gcp/dataproc/workflow_template.py,sha256=RihV_huOvx0wZwjJu23pr-IFvmM9wQHGKR3ZUpISmxg,51589
|
840
846
|
pulumi_gcp/datastream/__init__.py,sha256=UyhlkfT22kM-Z5iH02El9IUA7W3_-4jqQDMyPs31i-8,434
|
841
847
|
pulumi_gcp/datastream/_inputs.py,sha256=DyOVYDBa3eeplP8_A5bCsl256CuLCxOz3jfA8uJ62Zo,267628
|
@@ -877,7 +883,7 @@ pulumi_gcp/discoveryengine/data_store.py,sha256=UrH9oGYAab_m0GTNJE0YPxcI-pnrOeFm
|
|
877
883
|
pulumi_gcp/discoveryengine/outputs.py,sha256=oayeNxIkmpq6K8SN4ndthuJaVnmA5_nFLWwvn3yZtxI,40306
|
878
884
|
pulumi_gcp/discoveryengine/schema.py,sha256=PZKv0ZuNZMU_Big4ltIO72AKTDqOFrvmOY5_p6R26G8,21154
|
879
885
|
pulumi_gcp/discoveryengine/search_engine.py,sha256=eO-YuG1GnVQMxRqjRm2WnipLZ1hYTg8Bk1mEt7xOK84,35170
|
880
|
-
pulumi_gcp/discoveryengine/target_site.py,sha256=
|
886
|
+
pulumi_gcp/discoveryengine/target_site.py,sha256=nrPdRhdUtgBAytHZ8F92L-FSd50fndMYjzf8sCEMAnw,38328
|
881
887
|
pulumi_gcp/dns/__init__.py,sha256=ab8wmKnXkDvmMb7X3WwoVTvxilHhbzmO8IbqcXVdsjU,749
|
882
888
|
pulumi_gcp/dns/_inputs.py,sha256=qaSLJQHR1YmmiOwgv-0OuTUraGU19z1iXtwWaYFrDPY,103920
|
883
889
|
pulumi_gcp/dns/dns_managed_zone_iam_binding.py,sha256=0mHKcwqBLjHBUAWRsuszVDjUvb4XB2O5wBGnmKPOTiI,39532
|
@@ -924,11 +930,12 @@ pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py,sha256=r4r
|
|
924
930
|
pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py,sha256=x63uP3CGeNA9OjumArWLNDJp8LXbz3OZZGIlqLATDKI,21872
|
925
931
|
pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py,sha256=2JaaeOYHpnX7CvqNKDjX7b20y5vp1BwppzWpiMKFr7s,23860
|
926
932
|
pulumi_gcp/essentialcontacts/outputs.py,sha256=n2WaTFX9u6rm3f0ES-o_ZbTk_DS1C__IrCl5E4e-HT0,39222
|
927
|
-
pulumi_gcp/eventarc/__init__.py,sha256=
|
928
|
-
pulumi_gcp/eventarc/_inputs.py,sha256=
|
933
|
+
pulumi_gcp/eventarc/__init__.py,sha256=3_LbdY5JRKY0v2xR1SGkS85-hPqhbJJlDAQN_uaYt_s,424
|
934
|
+
pulumi_gcp/eventarc/_inputs.py,sha256=AJtT6CEmNyUDXRWwmzPYGE_tKIdagGcFjj1VIuKJ_R0,30191
|
929
935
|
pulumi_gcp/eventarc/channel.py,sha256=2sOC6_3Y35GmVKSZc__FTKZ2qvJDrJfpbQ9cSH_4Rkw,27768
|
930
936
|
pulumi_gcp/eventarc/google_channel_config.py,sha256=9ntNG0sptHgVKdXcSioIAb7qiikkT5Kzijup0xkAub0,18949
|
931
|
-
pulumi_gcp/eventarc/
|
937
|
+
pulumi_gcp/eventarc/message_bus.py,sha256=SQnyf1LdPX4aN2Bh8OBHbn27d-5nmGqNo25_Lk9U410,42942
|
938
|
+
pulumi_gcp/eventarc/outputs.py,sha256=GBsGfIPp0uO32Cs5bfZKdHzkPcPe23AsJ2CBfsReojo,20249
|
932
939
|
pulumi_gcp/eventarc/trigger.py,sha256=TAd54TVnms-amnjp-iN9cHNnigaeq_s1Akg4UCu2-Ps,52464
|
933
940
|
pulumi_gcp/filestore/__init__.py,sha256=XGJIEHPl8E3GlnPYyB9uE9viG5049boXz74d-3eA6sw,412
|
934
941
|
pulumi_gcp/filestore/_inputs.py,sha256=g68dbRNwAOqiZoxkyb6fZOh9znAPjZB0Z3FLY8Q3F5M,32415
|
@@ -991,15 +998,16 @@ pulumi_gcp/folder/iam_member.py,sha256=n9Ovkc9DW9p3hEODczfNyk4L--zGN9UNmoBr0ZveL
|
|
991
998
|
pulumi_gcp/folder/iam_policy.py,sha256=GkJaqbQos5NwUCIZhQoYx8HYvmfjxMfO-M8Vlxa2_50,27864
|
992
999
|
pulumi_gcp/folder/organization_policy.py,sha256=phS4rqourIgAYK6YK8Xn9DVOFpTx9iHdH__JQTCAKKI,33301
|
993
1000
|
pulumi_gcp/folder/outputs.py,sha256=BKhWp2YAYZDwcF2knN9vTS8Qjsa_Dhft5HWRC1ZNBY4,20970
|
994
|
-
pulumi_gcp/gemini/__init__.py,sha256=
|
1001
|
+
pulumi_gcp/gemini/__init__.py,sha256=ac2hhHmUIpM1QKnKe0tOt4YrMB595D8nvWIXOumsqZM,918
|
995
1002
|
pulumi_gcp/gemini/_inputs.py,sha256=3rZGw14v76XTM5g-BWmPSCRf0-M4FtGhRCREvC8p0Wc,5948
|
996
1003
|
pulumi_gcp/gemini/code_repository_index.py,sha256=oYqn6cRzsXinSvjyZNdXLJJILc1ZIFt9uUrRuij2BQs,31763
|
997
1004
|
pulumi_gcp/gemini/data_sharing_with_google_setting.py,sha256=F302wQThLbncxHLv6523t_RwkBrYwgSaoVhru7RTacg,28470
|
998
|
-
pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py,sha256=
|
999
|
-
pulumi_gcp/gemini/gemini_gcp_enablement_setting.py,sha256=
|
1005
|
+
pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py,sha256=8Pcx5Tw8NTZnsJCFFPwIjqiStQuxuEqfj9IVpouhNCg,34268
|
1006
|
+
pulumi_gcp/gemini/gemini_gcp_enablement_setting.py,sha256=CNlOH4I5T2W_miJBMfWdTbX4Gc9cFA7r11HFgvuMP8Q,28276
|
1007
|
+
pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py,sha256=50uU60WunOCQXSaYev5x-ACv9nSBOruVqLZLL0YCZTE,33941
|
1000
1008
|
pulumi_gcp/gemini/get_repository_group_iam_policy.py,sha256=PBhXrrlnOWLjUAMrN9Twz0toCwrEd7ej5wcbGoVwsU4,9123
|
1001
1009
|
pulumi_gcp/gemini/logging_setting.py,sha256=NX5sQNBxPjB3jpusqBcoR0fhRrJrEydE0xYFH-ll1mU,28606
|
1002
|
-
pulumi_gcp/gemini/logging_setting_binding.py,sha256=
|
1010
|
+
pulumi_gcp/gemini/logging_setting_binding.py,sha256=oLw7xBnc13NG35bbPJea3DcDYbFogtse8ZX3B2oAUkI,32543
|
1003
1011
|
pulumi_gcp/gemini/outputs.py,sha256=OFXJLdyTA-hgfQ25W5Bsm6LL7RJ212JDKAFXHAm2zIY,4016
|
1004
1012
|
pulumi_gcp/gemini/release_channel_setting.py,sha256=87ZQvK_O0QoFYQexVfBJN7A25UJyHypoKSfbaflGVbM,27579
|
1005
1013
|
pulumi_gcp/gemini/release_channel_setting_binding.py,sha256=my0hcxKv_tSso9f8-5WIe3iO2DUMyPJh6oQgYe6SzaI,33505
|
@@ -1086,7 +1094,7 @@ pulumi_gcp/healthcare/outputs.py,sha256=vnSBt2A0rNMG-Fj5oD_mleSh2_TMSMpxHBeRKGGD
|
|
1086
1094
|
pulumi_gcp/healthcare/pipeline_job.py,sha256=V8C6FvCaAnvXD9ijzPNLTNjaJYMOveAhc94yWNwGGI0,58190
|
1087
1095
|
pulumi_gcp/healthcare/workspace.py,sha256=puZZ-0wSjS-wBQ4u1kDvYZyP52aX9rDZ5EW49ZjaUMc,22210
|
1088
1096
|
pulumi_gcp/iam/__init__.py,sha256=s4OCVlvp1eqKvZq5LmR2rPNav8F3xUVDDm6thrKANMk,859
|
1089
|
-
pulumi_gcp/iam/_inputs.py,sha256=
|
1097
|
+
pulumi_gcp/iam/_inputs.py,sha256=AdipPA1pGtvi6Jc_rzwgakYZ9NbBG1rkIEi-iofqec4,108726
|
1090
1098
|
pulumi_gcp/iam/access_boundary_policy.py,sha256=n1qKQoJxMYqidRcT4-orx1dKbyouAPbUzThLR2CykV4,19311
|
1091
1099
|
pulumi_gcp/iam/deny_policy.py,sha256=fsIbPyJwjqPal_iygCIOlVN8ugumlJwfERQL3wNjVus,18745
|
1092
1100
|
pulumi_gcp/iam/folders_policy_binding.py,sha256=ImywQL4Kzgngdcw_gL14yojYlh_6ehmPhZEqyP9K-gQ,50308
|
@@ -1095,11 +1103,11 @@ pulumi_gcp/iam/get_testable_permissions.py,sha256=x4WFf68ziUzkWXXPIZAHyw-Ye1VYeR
|
|
1095
1103
|
pulumi_gcp/iam/get_workload_identity_pool.py,sha256=XESjxLEY0-0aYEZDR6iwcqcdIg_z8mRzYId8uc1vy1U,7888
|
1096
1104
|
pulumi_gcp/iam/get_workload_identity_pool_provider.py,sha256=E28L2JiYWLG3jATqutL6r1VKSVGPmPdPdSlkPnrLJ8E,12437
|
1097
1105
|
pulumi_gcp/iam/organizations_policy_binding.py,sha256=SOjKPgsM6zEh3xGE2lJ-25KkGFh4gMcqlCUkhXA88KI,50680
|
1098
|
-
pulumi_gcp/iam/outputs.py,sha256=
|
1106
|
+
pulumi_gcp/iam/outputs.py,sha256=UmtIshFt1nzD3b1Tqu8NLdjtT2pHQWfN1Wdft6NnezA,93041
|
1099
1107
|
pulumi_gcp/iam/principal_access_boundary_policy.py,sha256=mvrsBBIy9Inq831zIVxVsdwLW_6QVwHgiT8FTZ_UvY8,33516
|
1100
1108
|
pulumi_gcp/iam/projects_policy_binding.py,sha256=V-lKH10457E9MdzMj5wyzTvIEHes_jbfdMTU6G9gb84,49962
|
1101
1109
|
pulumi_gcp/iam/workforce_pool.py,sha256=9OGnu4gF7LVhbUKNlzVMQBQHM3YkK6jUC6xJ29LLyS4,38540
|
1102
|
-
pulumi_gcp/iam/workforce_pool_provider.py,sha256=
|
1110
|
+
pulumi_gcp/iam/workforce_pool_provider.py,sha256=XAiIAmbgVGoQyelbrmqV_9JJEGkKynPPLa3UoNUzrqU,94521
|
1103
1111
|
pulumi_gcp/iam/workload_identity_pool.py,sha256=HNr5zqqa9Q5rebSfVGboW4iBZSH8bgGQtkYQrN7y-tg,26511
|
1104
1112
|
pulumi_gcp/iam/workload_identity_pool_provider.py,sha256=TrOalFkTiY_s3AJWqEtgJH1YCBHpH4fr_EAh8emmUmE,94938
|
1105
1113
|
pulumi_gcp/iap/__init__.py,sha256=Q0xRoVND55WGR09cymfMY0IjyRLqCZuauQd5YLxhvyo,2198
|
@@ -1246,10 +1254,11 @@ pulumi_gcp/memcache/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0
|
|
1246
1254
|
pulumi_gcp/memcache/_inputs.py,sha256=RmLaU7WN7jxNrnQWJDIRQS5hbDPwNRR9ZH2UCBdQIro,26940
|
1247
1255
|
pulumi_gcp/memcache/instance.py,sha256=0Bv8wo0GCpssG4jOF99wIK5doBUXzouwdSV19lIegmw,55246
|
1248
1256
|
pulumi_gcp/memcache/outputs.py,sha256=Po7hfUgZz1XzZtmeY5res3sxQUauz2Xj2pKuRTLpOMA,19541
|
1249
|
-
pulumi_gcp/memorystore/__init__.py,sha256=
|
1257
|
+
pulumi_gcp/memorystore/__init__.py,sha256=WwabKWTWCw0wreWrK4F6yCxWjsWGRXQqYFt4VJlurMg,366
|
1250
1258
|
pulumi_gcp/memorystore/_inputs.py,sha256=rYjWOvYZxXQuOin24ur6NN09Be0Kb5lRnCN8ZC25CMA,42704
|
1259
|
+
pulumi_gcp/memorystore/get_instance.py,sha256=Mo7nz8fHzSBSUW9P7wptS7_RRvcMxhn3oLGldhjvTMI,19850
|
1251
1260
|
pulumi_gcp/memorystore/instance.py,sha256=sbp2mRFc83fo5RgHdchrezS_G4wMe3u5DnSyx41Cl70,82549
|
1252
|
-
pulumi_gcp/memorystore/outputs.py,sha256=
|
1261
|
+
pulumi_gcp/memorystore/outputs.py,sha256=uy2gCJsTM952VHWMcZIegIs50SY26Y57sEw8XQEarOA,54544
|
1253
1262
|
pulumi_gcp/migrationcenter/__init__.py,sha256=g4TuRiPN23lqw1gxJ_8DcfUnWfVq35Jv6vCVG9FAYNw,365
|
1254
1263
|
pulumi_gcp/migrationcenter/_inputs.py,sha256=UCOkNuStYN2kRGTscStVXr3N_LdQEt7kYDzovpeZsZo,36366
|
1255
1264
|
pulumi_gcp/migrationcenter/group.py,sha256=F9824NdgSfbCpi2NaC2jpkRpkXaMuqh34-pLz3AKqxI,28722
|
@@ -1295,7 +1304,7 @@ pulumi_gcp/netapp/volume_snapshot.py,sha256=-7fJfPboj_Kan3LwtOwi0QuaQNmPC-rXN9aT
|
|
1295
1304
|
pulumi_gcp/networkconnectivity/__init__.py,sha256=NFiZihYZuK4uHBzuwJ6IrcjardB_nYFb4WZeG86q0nM,513
|
1296
1305
|
pulumi_gcp/networkconnectivity/_inputs.py,sha256=tMTMx5kNwaWmRqpRNYV6MAo_Hn3rvDHywJja2JGGEtM,53678
|
1297
1306
|
pulumi_gcp/networkconnectivity/group.py,sha256=UZ9lNdFhDD18n-x3V_DDDRaL1spyuQTIljYjmXYdZ0A,34087
|
1298
|
-
pulumi_gcp/networkconnectivity/hub.py,sha256=
|
1307
|
+
pulumi_gcp/networkconnectivity/hub.py,sha256=hgRLkPc3spCG5jhK3vHFSSzHeHekpX8LiGzk4ObFl68,43101
|
1299
1308
|
pulumi_gcp/networkconnectivity/internal_range.py,sha256=KDPKtxmvzUVYKzJrzoALVc1adw0m_kngOhdfarOHXfM,53596
|
1300
1309
|
pulumi_gcp/networkconnectivity/outputs.py,sha256=X-vbQg2iQjeY6-J9aCwNmgpUdI88qzDfLd-f5SIXsDA,38254
|
1301
1310
|
pulumi_gcp/networkconnectivity/policy_based_route.py,sha256=-86qwkYRZTLKL9wbL73rkQtagoz7-E0R32-pI2SasgA,47466
|
@@ -1343,7 +1352,7 @@ pulumi_gcp/networkservices/edge_cache_origin.py,sha256=BdbDEH3KjT8g4c_TMxad_gyaB
|
|
1343
1352
|
pulumi_gcp/networkservices/edge_cache_service.py,sha256=RI2MV4DZZSk_qkaOYXdwhjLD0nbc4puyrip-FIFvYJc,84115
|
1344
1353
|
pulumi_gcp/networkservices/endpoint_policy.py,sha256=IKatpr6lqt7F9-A4yX_JVszxK46-y35on1cBrKdnGpA,41682
|
1345
1354
|
pulumi_gcp/networkservices/gateway.py,sha256=I64T-n8EmrxPDlNNjWt4as7086u5D1_GWXVzERD9bzM,77104
|
1346
|
-
pulumi_gcp/networkservices/grpc_route.py,sha256=
|
1355
|
+
pulumi_gcp/networkservices/grpc_route.py,sha256=03ccC8xGMcBBcntb0t5xZwIMFriFqLrk5Iwjic7p514,42467
|
1347
1356
|
pulumi_gcp/networkservices/http_route.py,sha256=2LrQ4eDosQ_YM3hiPU2T4ccCr4-F9tU6vpc0hXDHJuU,50311
|
1348
1357
|
pulumi_gcp/networkservices/lb_route_extension.py,sha256=ln7rHuq4qtw8XK7Pd_irshCB-ydNKmoVG7hAGGeeNbI,36251
|
1349
1358
|
pulumi_gcp/networkservices/lb_traffic_extension.py,sha256=NYepkymfd9WNSHezx2Gi9AbRt99a5DYryKdcOpoauiY,36776
|
@@ -1362,7 +1371,7 @@ pulumi_gcp/notebooks/instance.py,sha256=qPxw0VhehJoDj3G4C93IRpVsCpyrapybcRRZ3MeY
|
|
1362
1371
|
pulumi_gcp/notebooks/instance_iam_binding.py,sha256=dwi509upN_liDB5EirRSnJkKbgrOn4g22EgFT9y6I3Q,44116
|
1363
1372
|
pulumi_gcp/notebooks/instance_iam_member.py,sha256=QmZTqvVMe5uGbaMpmswmVrB_87uicxeRiowdUajgXTw,43717
|
1364
1373
|
pulumi_gcp/notebooks/instance_iam_policy.py,sha256=D3ED5ExCKRVKywyg65R1dAik2nx5JuwKiVduET0tY_o,30432
|
1365
|
-
pulumi_gcp/notebooks/location.py,sha256
|
1374
|
+
pulumi_gcp/notebooks/location.py,sha256=kAQR0bzCycsqLvwIXSxAUTmlTvfanRvw6zyocrmbEMc,10321
|
1366
1375
|
pulumi_gcp/notebooks/outputs.py,sha256=OQcyb5oKQkkfT0Iap2izZZJIdGxJrumkxdV8WSQ5-BE,73999
|
1367
1376
|
pulumi_gcp/notebooks/runtime.py,sha256=sdMDi-6sElceot4zLyjSqTS10DX25ld6mzJE8rNARBI,46299
|
1368
1377
|
pulumi_gcp/notebooks/runtime_iam_binding.py,sha256=4E-KHQYRh8MnXbYudVvsqjJO8zN2o837e4BYE9j0d-I,43875
|
@@ -1675,8 +1684,9 @@ pulumi_gcp/sql/outputs.py,sha256=CUWnAI2LI2d1AQxeXmCXb2qroWsxLGnO6B7kQXHWUcw,246
|
|
1675
1684
|
pulumi_gcp/sql/source_representation_instance.py,sha256=uu_Ga9Bz3dzKk-cfnUeOKIYivB7sHX--mZOII5W-Tg0,39331
|
1676
1685
|
pulumi_gcp/sql/ssl_cert.py,sha256=CkH8XDVoKyiutBTNkQof8fe_-yvrwESCM81qApEZ7mc,21976
|
1677
1686
|
pulumi_gcp/sql/user.py,sha256=IUlRHvbiUz9oRNIinFDA-axLVUN50u2CKa2720rOBB8,37853
|
1678
|
-
pulumi_gcp/storage/__init__.py,sha256=
|
1679
|
-
pulumi_gcp/storage/_inputs.py,sha256=
|
1687
|
+
pulumi_gcp/storage/__init__.py,sha256=rOdxipgJisGHRJ-tAJU-AC15_5ISxv_7cUOW_T4LWRk,1455
|
1688
|
+
pulumi_gcp/storage/_inputs.py,sha256=IjGkYzEUUckFDxWDA9MP-hJT-TlRUUkXJkA-INF_8ys,197963
|
1689
|
+
pulumi_gcp/storage/anywhere_cache.py,sha256=Yrbl0A0GBMY6RSxUvgWFJ2sAPa3GI1-ACuvxy010hs0,22070
|
1680
1690
|
pulumi_gcp/storage/bucket.py,sha256=N8hfz_aBnv-Co423AX9GZn5o9mOP6gGdeYzXKh0mlhI,91245
|
1681
1691
|
pulumi_gcp/storage/bucket_access_control.py,sha256=wQJ2LWiv2KzECXws1vLKL50CMy29PjJJkXJKk1HUYu8,19873
|
1682
1692
|
pulumi_gcp/storage/bucket_acl.py,sha256=X364is_MLJQKOsQMj5YQUneDXVHEvE5VDtzfUlyihZA,17262
|
@@ -1707,9 +1717,9 @@ pulumi_gcp/storage/managed_folder_iam_policy.py,sha256=ATDEAcuWIJk12XM-Pc7VU0Vs1
|
|
1707
1717
|
pulumi_gcp/storage/notification.py,sha256=48DXbEQrIKzvmReH7fQETcenEWM3Goikc4nQNMzDsz0,30144
|
1708
1718
|
pulumi_gcp/storage/object_access_control.py,sha256=wgllzt65_7nm-90gL0r_3OC6QCn9I8MLZVSokg5ygpg,24311
|
1709
1719
|
pulumi_gcp/storage/object_acl.py,sha256=bFcg8_R_tvv6q35xJ7SIsl4z419FHpZk2gXXjxEA2Sc,16868
|
1710
|
-
pulumi_gcp/storage/outputs.py,sha256=
|
1720
|
+
pulumi_gcp/storage/outputs.py,sha256=_4-_kp0-6R2d0SOojnfDHwtHeLbkRtMGM7mlvt3gvoY,180163
|
1711
1721
|
pulumi_gcp/storage/transfer_agent_pool.py,sha256=boe6LefIVXdNvYJsQ33nXLnDfJ21Q7IxCc6K5O3MauU,21829
|
1712
|
-
pulumi_gcp/storage/transfer_job.py,sha256=
|
1722
|
+
pulumi_gcp/storage/transfer_job.py,sha256=GsR63dFhnYcRFWMTTUOxhK30VQc57HAuw7kdijTQQCw,49292
|
1713
1723
|
pulumi_gcp/tags/__init__.py,sha256=73ySnVD68pkwP5R7Mt1eWSGxBu_HYv7XHBbqLaGG3yU,829
|
1714
1724
|
pulumi_gcp/tags/_inputs.py,sha256=MetpS_D4bisR5MjSI7zTmLphVWQxcz_dKd4QW1R5auE,6726
|
1715
1725
|
pulumi_gcp/tags/get_tag_key.py,sha256=2vx9vkCeCrmFdH5Z7uk3xqyT64FObE3VrbQGs_IN3A4,7917
|
@@ -1824,7 +1834,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=6254B7mpV5htw169
|
|
1824
1834
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=yCizez3UUlZWaQX2GNL4n5fuwebLdmEgWorPzEWP5-c,37782
|
1825
1835
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=XTMhHTr0jQp4-3Zz68qhRDO7cQa3Www4Vza8axVinIc,37383
|
1826
1836
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=yOPXKlHDXIsg9lzajYjtkfYgzsiuyyrZjQ7J85I5rcA,24017
|
1827
|
-
pulumi_gcp-8.
|
1828
|
-
pulumi_gcp-8.
|
1829
|
-
pulumi_gcp-8.
|
1830
|
-
pulumi_gcp-8.
|
1837
|
+
pulumi_gcp-8.22.0a1741242890.dist-info/METADATA,sha256=SyLdWu8GoeQqmaDQlqdFhl_bEpmeUO7JPAm3RuBL1EA,2725
|
1838
|
+
pulumi_gcp-8.22.0a1741242890.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
1839
|
+
pulumi_gcp-8.22.0a1741242890.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1840
|
+
pulumi_gcp-8.22.0a1741242890.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/top_level.txt
RENAMED
File without changes
|